2013-08-31 82 views
0

我有格式測試2#.IFF的文件序列,我想這個序列轉換成視頻,我已經嘗試下面的命令:ffmpeg的.IFF圖像序列視頻

ffmpeg -f IFF -r 25 -start_number 75 -i "test2%d.iff" -vcodec libx264 test2.mp4 
Error: test2%d.iff: No such file or directory 

ffmpeg -f image2 -r 25 -start_number 75 -i "test2%d.iff" -vcodec libx264 test2.mp4 
Error: [image2 @ 00000000002ee220] Could not find codec parameters for stream 0 (Video: none): unspecified size Consider increasing the value for the 'analyzeduration' and 'probesize' options test2%d.iff: could not find codec parameters 

我也試過各種編解碼器,但它給了我同樣的錯誤,請問你們誰可能是錯誤的?

+0

你有樣品文件嗎?您是否曾嘗試使用'-s:v 640x480'或類似方式爲輸入文件指定尺寸?請包括完整的未切割控制檯輸出。 – slhck

+0

嗨,我發現這個問題,ffmpeg不支持.iff格式的序列,我試圖用PNG和JPG它似乎工作正常。不管怎麼說,多謝拉 :)。 – rajat

回答

0

問題是,ffmpeg不支持.iff格式序列,我試圖用PNG和JPG它似乎工作正常。