ffmpeg hangs when creating a video
- by FearUs
I am trying to insert an audio channel with a video:
first of all I extract the audio from the original video for processing:
ffmpeg -i lotr.mp4 lotr.wav
I then extract all frames for later processing too:
ffmpeg -i lotr.mp4 -f image2 %d.jpg
When done processing audio and video streams, I try to create the video
ffmpeg -f image2 -r 15 -i…