1 2 3 4 5 6 7 |
Press [q] to stop, [?] for help frame=24 fps=0.0 q=0.0 size=0kB time=00:00:01.77 bitrate=0.0kbits/s speed=3.52x error parsing debug value debug=0 frame=46 fps= 38 q=0.0 size=0kB time=00:00:02.68 bitrate=0.0kbits/s speed= 2.2x Enter command: <target>|all <time>|-1 <command>[ <argument>] |
instead of processing the video file, ffmpeg would stop and wait for user input. The message ‘error parsing debug value’ would also be displayed prior to input being asked.
Turns out this happens because by default ffmpeg is in interactive mode. This means that the output it was producing was being used as input and eventually certain input characters caused ffmpeg to stop and ask for user input.
There are two ways to stop this from happening:
- Add ‘< /dev/null’ to the end of the ffmpeg command so it reads input from the null device instead of standard input
- Add ‘-nostdin’ to the ffmpeg command as per documentation to stop it reading input from standard input by default
I went for the first option, so my command to transcode all AVI files in a directory to H.264 with AAC MKV files looked like this:
1 |
ffmpeg commandfind . -name "*.avi" -print0|sed -e "s/.avi//g"| while read -d $'\0' file; do ffmpeg -y -i "$file.avi" -vcodec h264 -acodec aac -vbr 4 -movflags +faststart "$file.mkv" < /dev/null; done |