2012-03-24 174 views
1

我想使用ffmpeg編碼我的視頻。我將每幀的輸出作爲單獨的圖像,然後使用ffmpeg將它們加入到視頻中。我從源代碼編譯ffmpeg。 這是我使用的命令和我一直遇到的錯誤!FFMPEG視頻編碼錯誤

---:/media/New Volume/temp$ ffmpeg -f image2 -i image%1d.png -vcodec libx264 \ 
-preset ultrafast -crf 15 output.mp4 
ffmpeg version git-2012-03-24-2571506 Copyright (c) 2000-2012 the FFmpeg developers 
    built on Mar 24 2012 03:47:02 with gcc 4.6.1 
    configuration: --enable-gpl --enable-libfaac --enable-libmp3lame \ 
    --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora \ 
    --enable-libvorbis --enable-libx264 --enable-nonfree --enable-version3 \ 
    --enable-x11grab 
    libavutil  51. 44.100/51. 44.100 
    libavcodec  54. 12.100/54. 12.100 
    libavformat 54. 2.100/54. 2.100 
    libavdevice 53. 4.100/53. 4.100 
    libavfilter  2. 65.102/2. 65.102 
    libswscale  2. 1.100/2. 1.100 
    libswresample 0. 7.100/0. 7.100 
    libpostproc 52. 0.100/52. 0.100 
// ERORRS:: 
[png @ 0xa4d5120] Missing png signature 
[image2 @ 0xa4ceb00] decoding for stream 0 failed 
[image2 @ 0xa4ceb00] Could not find codec parameters (Video: png) 
image%1d.png: could not find codec parameters  
+0

嘗試使用其他圖片,看看發生了什麼 – 2013-11-14 03:37:22

回答

1

它讀取圖像幀時發生錯誤。

它們是否可以正確打開其他軟件?他們是否被命名爲image1.png,image2.png等?