Do you have custom MediaInfo example?

Status
Not open for further replies.

ThreeNF

Active Member
199
2011
16
0
GUI_Text_en.png


The default text is like this, but too long for me, anyone has your customer example? Can you share it to me? Thanks.
 
6 comments
What I want is like this:

Length: 1h 20m
Video: 1280x720, 29.970 fps, 2863 kbps, 0.104 bit/pixel
Audio: 44.1 kHz, AAC, 2 ch, 126 kbps
 
use switch
MediaInfo.exe --Inform=c:\template.txt "lala.avi" c:\outputfolder\outputfilename.txt"
General;File Name...........: %FileName%\r\nRuntime.............: %Duration/String%\r\nFile Size...........: %FileSize/String4%\r\nFormat..............: %Format%\r\nVideo Bitrate.......: %OverallBitRate/String%\r\n
Video;Video Codec.........: %Format% %Format_Profile%\r\nAspect Ratio........: %DisplayAspectRatio/String%\r\nResolution..........: %Width%x%Height/String%\r\nFrame Rate..........: %FrameRate/String%\r\n
Audio;Audio Codec.........: %Format% %Format_Profile%\r\nChannels............: %Channel(s)/String%\r\nSampling Rate.......: %SamplingRate/String%\r\n$if(%Language%,Language............: %Language%\r\n)Bitrate.............: %BitRate/String%\r\n

copy this in template.txt and move that into mediainfo.exe folder
play with template however it suits you.

Except when I dont have original nfo, i use it. this is how it looks like

07b69e.png


Without imdb ofc


btw, this is for CLI version of mediainfo, means runs from command line
 
Last edited:
use switch
MediaInfo.exe --Inform=c:\template.txt "lala.avi" c:\outputfolder\outputfilename.txt"


copy this in template.txt and move that into mediainfo.exe folder
play with template however it suits you.

Except when I dont have original nfo, i use it. this is how it looks like

07b69e.png


Without imdb ofc


btw, this is for CLI version of mediainfo, means runs from command line


Many thanks!
 
Here is mine, as backup :)

General:

Code:
General: %FileName%
Format: %Format%$if(%OveralBitRate%, at %OveralBitRate/String%)
FileSize: %FileSize/String1%
Length: %PlayTime/String1%\n

Video:

Code:
Video: %Width%x%Height%, %FrameRate% fps, %BitRate/String%\n

Audio:

Code:
Audio: %SamplingRate/String%, %Codec/String%, %Channel(s)/String%, %BitRate/String%
 
Status
Not open for further replies.
Back
Top