2013-08-31 76 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它似乎工作正常。