-
Encoded video is black
Hey all,
I am trying to wade my way through the expanse of ffmpeg, but am running in to a block. I am working with Podcast Producer where I am encoding the raw footage (.mov) using ffmpeg (libx264). However after encoding the result video is black (no audio either). The input files are of various sizes (10-500MB) and are all .mov. The command I am using is:ffmpeg -y -i INPUT.mov -an -vcodec libx264 -vpre fast_firstpass -b 2000k -bt 2000k -deinterlace -pass 1 -threads 4 OUTPUT.m4v && ffmpeg -y -i INPUT.mov -ab 320k -acodec aac -strict experimental -vcodec libx264 -vpre fast -b 2000k -bt 2000k -deinterlace -pass 2 -threads 4 OUTPUT.m4v
This command seems to work well with smaller files ( ~150 MB or less), however with larger files it results in a black movie. Should any values be changed based on input file size? Anything I should change with my command?
Thanks so much!