I write this command in commandPrompt but that can not get Duration
ffmpeg -i d:\12.flv 2>&1 | grep \"Duration\"
I have this error
'grep ' is not recognized as an internal or external command, operable programe or batch file
What is problem?
I write this command in commandPrompt but that can not get Duration
ffmpeg -i d:\12.flv 2>&1 | grep \"Duration\"
I have this error
'grep ' is not recognized as an internal or external command, operable programe or batch file
What is problem?
best way I have found is:
ffmpeg -i input.ext 2>&1 | find "Duration"
now, that gives you the duration start and bitrate line. hope this helps.