Batch files, black output
A unified display of relevant technical and tag data for A/V files
Brought to you by:
guillaumeroques,
zenitram
Logged In: YES
user_id=801394
Originator: NO
Note for me:
- batch does NOT like quotes and "
- MediaInfo --Inform=Video;file://Template.txt with Template.txt is a file with " %FrameRate" return the framerate, but with one garbage byte, I don't know why.
Note for ficofico :
I will not be able to work on it before 2 or 3 weeks :(
Logged In: NO
The solution to this is to wrap the parameters in TWO % characters, not just one. I took a wild guess on this. When using cmd batch files, FOR loop variables need to be enclosed by double %'s, and apparantly MediaInfo uses cmd style FOR loops.
E.g. MediaInfo "--Inform=Video;%%FrameRate%%" ; originale.mp4 > framerate.txt
Logged In: YES
user_id=801394
Originator: NO
Excellent news.
I do the parsing myself, and output the result.
Maybe there is a problem with the Command line parser, i don't know, I didn't have time to work on this issue.
Thanks for the work around.
The use of double %-signs is required with windows command scripts.
This is an invalid bug.