FFmpeg如何将单张图片转换为Android视频?

5

我正在尝试使用FFmpeg将单个图像转换为视频。 我已经尝试了以下文件:

"ffmpeg  -analyzeduration 2147483647 -probesize 2147483647 -i " + packat.get(i).path +"-r 25 -t 1000 -y op.mp4"

"ffmpeg -loop 1 -r 23.976 -i input.jpg -t 00:00:02 -vcodec qtrle -an output.mov"

"ffmpeg -i c:\rawvideo\mask.bmp -loop 1 -r 29.97 -s 720x480
        -aspect 4:3 -t 00:04:05 -vcodec mjpeg -vb 11261600 -an
        c:\rawvideo\fullmask.avi"

但是所有的这些都给我带来了一个烦人的错误:
 Can not process SOS before SOF, skipping marker parser used 0 bytes (0 bits) decode frame unused 0 bytes decoding for stream 0 failed 
Could not find codec parameters for stream 0 (Video: mjpeg): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options /storage/sdcard0/cblVE/temp/0.jpg: could not find codec parameters 
exit_program: 1 

请帮忙。我已经搜索了一个星期,但是没有找到解决办法。


添加标志(视频选项和音频选项标志),即更改vcodec选项为mpeg4并需要额外的-r标志。 请检查此链接:(https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images) - dipali
不起作用,同样的错误 - berserk
我会在一段时间后给出答案。好的... - dipali
好的,我会等待它。 - berserk
ffmpeg -y -i /sdcard/img.png -loop 1 -vcodec libx264 -s 320*480 -b 1024k -t 2 -an /sdcard/test.mp4 - dipali
显示剩余2条评论
3个回答

2

--编辑--

  1. 你正在使用"-f mp4",那么在你的ffmpeg配置/构建中,是否要求支持mp4格式?请使用"ffmpeg -formats"进行验证。

  2. 查看你的日志并转到"libavcodec/mux.c"的源代码

    在源代码的第124行搜索函数"avformat_alloc_output_context2",这就是你的日志错误来自的地方,根据你的pastebin #210。

    根据该方法的第146行和你的pastebin,你没有为'filename'设置一个值...

    在你的pastebin #209-210中,这是一个非常奇怪的输出文件名吗?特别是考虑到你的CLI参数例程显示ffmpeg.c已经接受了一个输出文件名。

以下内容在Linux上运行,但取决于你的Android版本的ffmpeg构建......

ffmpeg -y -loop 1 -t 3.03 -i ~/Pictures/yaya_speech_choose2.png   -r 1  -vcodec libx264 -b:v 200k -bt 350k   -f mp4 ~/Videos/dummy.mp4


ffmpeg version N-35901-g27a3415 Copyright (c) 2000-2012 the FFmpeg developers
  built on Oct  7 2012 12:06:43 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
  configuration: --enable-gpl --enable-libfaac --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab --enable-libx264 --enable-nonfree --enable-version3
  libavutil      51. 73.102 / 51. 73.102
  libavcodec     54. 64.100 / 54. 64.100
  libavformat    54. 29.105 / 54. 29.105
  libavdevice    54.  3.100 / 54.  3.100
  libavfilter     3. 19.102 /  3. 19.102
  libswscale      2.  1.101 /  2.  1.101
  libswresample   0. 16.100 /  0. 16.100
  libpostproc    52.  1.100 / 52.  1.100
Input #0, image2, from '/home/rob/Pictures/yaya_speech_choose2.png':
  Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, rgb24, 1080x1920, 25 fps, 25 tbr, 25 tbn, 25 tbc
-t is not an input option, keeping it for the next output; consider fixing your command line.
[libx264 @ 0x1e32500] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 AVX
[libx264 @ 0x1e32500] profile High 4:4:4 Predictive, level 4.0, 4:4:4 8-bit
[libx264 @ 0x1e32500] 264 - core 128 r10 198a7ea - H.264/MPEG-4 AVC codec - Copyleft 2003-2012 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=4 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=1 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=abr mbtree=1 bitrate=200 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to '/home/rob/Videos/dummy.mp4':
  Metadata:
    encoder         : Lavf54.29.105
    Stream #0:0: Video: h264 ([33][0][0][0] / 0x0021), yuv444p, 1080x1920, q=-1--1, 200 kb/s, 16384 tbn, 1 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (png -> libx264)
Press [q] to stop, [?] for help
frame=    4 fps=1.8 q=32766.0 Lsize=     236kB time=00:00:02.00 bitrate= 968.3kbits/s dup=0 drop=59    
video:236kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.350287%
[libx264 @ 0x1e32500] frame I:1     Avg QP: 9.29  size:239979
[libx264 @ 0x1e32500] frame P:1     Avg QP: 9.85  size:   128
[libx264 @ 0x1e32500] frame B:2     Avg QP: 9.92  size:   192
[libx264 @ 0x1e32500] consecutive B-frames: 25.0%  0.0% 75.0%  0.0%
[libx264 @ 0x1e32500] mb I  I16..4: 36.2% 49.0% 14.7%
[libx264 @ 0x1e32500] mb P  I16..4:  0.0%  0.0%  0.0%  P16..4:  0.1%  0.0%  0.0%  0.0%  0.0%    skip:99.8%
[libx264 @ 0x1e32500] mb B  I16..4:  0.0%  0.0%  0.0%  B16..8:  0.3%  0.1%  0.1%  direct: 0.3%  skip:99.2%  L0:68.9% L1:31.1% BI: 0.0%
[libx264 @ 0x1e32500] final ratefactor: 24.49
[libx264 @ 0x1e32500] 8x8 transform intra:49.0% inter:92.3%
[libx264 @ 0x1e32500] coded y,u,v intra: 37.6% 27.9% 30.0% inter: 0.0% 0.0% 0.0%
[libx264 @ 0x1e32500] i16 v,h,dc,p: 84% 10%  3%  3%
[libx264 @ 0x1e32500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu:  9% 67%  5%  2%  3%  2%  4%  4%  3%
[libx264 @ 0x1e32500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 17% 44% 10%  4%  6%  3%  8%  3%  6%
[libx264 @ 0x1e32500] Weighted P-Frames: Y:0.0% UV:0.0%
[libx264 @ 0x1e32500] kb/s:480.98

看一下日志。你的应用程序在路径/storage/sdcard0/cblVE/temp/a0.mp4有写入权限吗? - Robert Rowntree
请查看我的回答中的--EDIT。 - Robert Rowntree
顺便说一句...根据那个错误,我会非常怀疑你的Android ffmpeg构建。你的pastebin显示它接受了输出文件的CLI参数...然而,在mux.c类中,它将你的输出文件的文件名设置为null。就好像你的CLI参数在ffmpeg.c和mux.c之间丢失了一样。如果这是真的,那么你正在使用一个错误的链接或错误的构建。 - Robert Rowntree
还有其他解决方案吗? - berserk
看一下 Github。'Guardianproject' 和 'halfninja' 是获取构建 ffmpeg 的工作 armv7a 二进制文件的两种可靠方式。 - Robert Rowntree
显示剩余2条评论

2
也许你需要编译一个新的ffmpeg版本并使用它。你能告诉我你使用哪个视频工具包吗?

我正在使用这个库:http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html - berserk
这个库可能有问题,尝试使用halfninja或者构建自己的库。 - Mukesh Rana
这个库可能有问题。尝试使用HalfNinja(https://github.com/halfninja/android-ffmpeg-x264)或从FFmpeg构建自己的工具包。 - Mukesh Rana

1

你的ffmpeg构建可能存在问题,请重新构建一个新的。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接