
Recherche avancée
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (13547)
-
GStreamer with MPEG-TS Video4Linux ATSC/DVB Recording
21 juin 2013, par Dustin OpreaI'm having an impossible time setting up a filtergraph to read from a recording that I made from my DVB video4linux device. Any help would be vastly appreciated.
How I made the recording :
To tune the channel :
azap -c ~/channels.conf "Florida"
To record the channel :
cat /dev/dvb/adapter0/dvr0 > /tmp/test
This is the way that recordings must be made (I can not use any GST DVB plugins to do this for me).
I used tstools to identify that the recording is a TS stream :
tstools/bin$ ./stream_type ~/recordings/20130129-202049
Reading from /home/dustin/recordings/20130129-202049
It appears to be Transport Stream...but that there are no PAT/PMT frames :
tstools/bin$ ./tsinfo ~/recordings/20130129-202049
Reading from /home/dustin/recordings/20130129-202049
Scanning 10000 TS packets
Found 0 PAT packets and 0 PMT packets in 10000 TS packetsI was able to produce a single ES (elementary stream) stream, by running ts2es :
tstools/bin$ ./ts2es -pid 97 ~/recordings/20130129-202049 ~/recordings/20130129-202049.es
Reading from /home/dustin/recordings/20130129-202049
Writing to /home/dustin/recordings/20130129-202049.es
Extracting packets for PID 0061 (97)
!!! 4 bytes ignored at end of file - not enough to make a TS packet
Extracted 219258 of 248113 TS packetsI am able to play the ES stream (even though the video is frozen on the first frame) :
gst-launch-0.10 filesrc location=~/recordings/20130129-202049.es ! decodebin2 ! autovideosink
gst-launch-0.10 filesrc location=~/recordings/20130129-202049.es ! decodebin2 ! xvimagesink
gst-launch-0.10 playbin2 uri=file:///home/dustin/recordings/20130129-202049.esNo matter what I do, though, I can't get the original TS file to open. However, it opens in Mplayer/FFMPEG, perfectly (but not VLC). This is the output of FFMPEG :
ffmpeg -i 20130129-202049
ffmpeg version 0.8.5-4:0.8.5-0ubuntu0.12.04.1, Copyright (c) 2000-2012 the Libav developers
built on Jan 24 2013 18:03:14 with gcc 4.6.3
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
[mpeg2video @ 0x9be7be0] mpeg_decode_postinit() failure
Last message repeated 4 times
[mpegts @ 0x9be3aa0] max_analyze_duration reached
[mpegts @ 0x9be3aa0] PES packet size mismatch
Input #0, mpegts, from '20130129-202049':
Duration: 00:03:39.99, start: 9204.168844, bitrate: 1696 kb/s
Stream #0.0[0x61]: Video: mpeg2video (Main), yuv420p, 528x480 [PAR 40:33 DAR 4:3], 15000 kb/s, 30.57 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Stream #0.1[0x64]: Audio: ac3, 48000 Hz, stereo, s16, 192 kb/s
At least one output file must be specifiedThis tells us that the video stream has PID 0x61 (97).
I have been trying for a few days, so the following are only examples of a couple of attempts. I'll provide the playbin2 example first, since I know that thousands of people will respond, insisting that I just use that. It doesn't work.
gst-launch-0.10 playbin2 uri=file:///home/dustin/recordings/20130129-202049
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPlayBin2:playbin20/GstURIDecodeBin:uridecodebin0/GstDecodeBin2:decodebin20/GstMpegTSDemux:mpegtsdemux0: Could not determine type of stream.
Additional debug info:
gstmpegtsdemux.c(2931): gst_mpegts_demux_sink_event (): /GstPlayBin2:playbin20/GstURIDecodeBin:uridecodebin0/GstDecodeBin2:decodebin20/GstMpegTSDemux:mpegtsdemux0:
No valid streams found at EOS
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...It fails [probably] because no PID has been specified with which to find the video (the "EOS" error, I think).
Naturally, I tried the following to start by demuxing the TS format. I believe it's the "es-pids" property that receives the PID in the absence of PMT information (which tstools said there weren't any, above), but I tried "program-number", too, just in case. gst-inspect indicates that one is hex and the other is decimal :
gst-launch-0.10 -v filesrc location=20130129-202049 ! mpegtsdemux es-pids=0x61 ! fakesink
gst-launch-0.10 -v filesrc location=20130129-202049 ! mpegtsdemux program-number=97 ! fakesinkOutput :
gst-launch-0.10 filesrc location=20130129-202049 ! mpegtsdemux es-pids=0x61 ! fakesink
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0: Could not determine type of stream.
Additional debug info:
gstmpegtsdemux.c(2931): gst_mpegts_demux_sink_event (): /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0:
No valid streams found at EOS
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...
dustin@dustinmicro:~/recordings$ gst-launch-0.10 -v filesrc location=20130129-202049 ! mpegtsdemux es-pids=0x61 ! fakesink
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0: Could not determine type of stream.
Additional debug info:
gstmpegtsdemux.c(2931): gst_mpegts_demux_sink_event (): /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0:
No valid streams found at EOS
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...
dustin@dustinmicro:~/recordings$ gst-launch-0.10 -v filesrc location=20130129-202049 ! mpegtsdemux es-pids=0x61 ! fakesink
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
ERROR: from element /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0: Could not determine type of stream.
Additional debug info:
gstmpegtsdemux.c(2931): gst_mpegts_demux_sink_event (): /GstPipeline:pipeline0/GstMpegTSDemux:mpegtsdemux0:
No valid streams found at EOS
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...However, when I try mpegpsdemux (for program streams (PS), as opposed to transport streams (TS)), I get further :
gst-launch-0.10 filesrc location=20130129-202049 ! mpegpsdemux ! fakesink
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_event_new_new_segment_full: assertion `position != -1' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_mini_object_ref: assertion `mini_object != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_pad_push_event: assertion `event != NULL' failed
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_event_new_new_segment_full: assertion `position != -1' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_mini_object_ref: assertion `mini_object != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_pad_push_event: assertion `event != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_event_new_new_segment_full: assertion `position != -1' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_mini_object_ref: assertion `mini_object != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_pad_push_event: assertion `event != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_event_new_new_segment_full: assertion `position != -1' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_mini_object_ref: assertion `mini_object != NULL' failed
(gst-launch-0.10:14805): GStreamer-CRITICAL **: gst_pad_push_event: assertion `event != NULL' failed
...
Got EOS from element "pipeline0".
Execution ended after 1654760008 ns.
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...I'll still get the same problem whenever I use the mpegtsdemux, even if it follows mpegpsdemux, above.
I don't understand this, since I haven't even picked a PID yet.
What am I doing wrong ?
Dustin
-
ffmpeg blend to exclude the top videos background
2 février 2016, par user2995705I want to blend two videos, the top video named "top.mp4" was combined with some PNG files,but the combined video’s background was black ? why ?
then i try to overlay the top.mp4 on another video (named bottom.mp4,was capture by android camera with QUALITY_480P)
but when I use Overlay filter i find the top.mp4 was not transparent and have a black background on the result.mp4.
I try to use blend filter to combine top.mp4 and bottom.mp4 to exclude the top.mp4’s black background , but i don’t know how to use the blend filter.
here is my question :
1.is it possible to combine PNG files to a video and the video has transparent background ? and then just use overlay filter,the result.mp4 will not have a black mask under the top.mp4 ?2.if 1 is impossible, how to blend top.mp4 and bottom.mp4 to exclude the black background of top.mp4
my all output log
02-02 19:34:04.300 7979-18573/com.demo D/LLLLLLLLLL: /data/data/com.demo/app_bin/ffmpeg -i /storage/sdcard0/baishiMagic/magic/waterfall/waterfall/waterfall_%04d.png -r 25 -vcodec copy -preset ultrafast -y /storage/sdcard0/baishiMagic/temp/anim1.mov
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: ffmpeg version n2.4.2 Copyright (c) 2000-2014 the FFmpeg developers
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: built on Oct 7 2014 15:05:17 with gcc 4.8 (GCC)
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: configuration: --target-os=linux --cross-prefix=/home/sb/Source-Code/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/sb/Source-Code/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/sb/Source-Code/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/sb/Source-Code/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/sb/Source-Code/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/sb/Source-Code/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libavutil 54. 7.100 / 54. 7.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libavcodec 56. 1.100 / 56. 1.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libavformat 56. 4.101 / 56. 4.101
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libavdevice 56. 0.100 / 56. 0.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libavfilter 5. 1.100 / 5. 1.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libswscale 3. 0.100 / 3. 0.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libswresample 1. 1.100 / 1. 1.100
02-02 19:34:04.345 7979-18576/com.demo D/LLLLLLLLLL: libpostproc 53. 0.100 / 53. 0.100
02-02 19:34:04.460 7979-18576/com.demo D/LLLLLLLLLL: Input #0, image2, from '/storage/sdcard0/baishiMagic/magic/waterfall/waterfall/waterfall_%04d.png':
02-02 19:34:04.460 7979-18576/com.demo D/LLLLLLLLLL: Duration: 00:00:08.00, start: 0.000000, bitrate: N/A
02-02 19:34:04.460 7979-18576/com.demo D/LLLLLLLLLL: Stream #0:0: Video: png, rgba, 480x640 [SAR 3779:3779 DAR 3:4], 25 fps, 25 tbr, 25 tbn, 25 tbc
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Output #0, mov, to '/storage/sdcard0/baishiMagic/temp/anim1.mov':
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: encoder : Lavf56.4.101
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Stream #0:0: Video: png (png / 0x20676E70), rgba, 480x640 [SAR 3779:3779 DAR 3:4], q=2-31, 25 fps, 12800 tbn, 25 tbc
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Stream mapping:
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Stream #0:0 -> #0:0 (copy)
02-02 19:34:04.470 7979-18576/com.demo D/LLLLLLLLLL: Press [q] to stop, [?] for help
02-02 19:34:05.565 7979-18576/com.demo D/LLLLLLLLLL: frame= 46 fps=0.0 q=-1.0 size= 12339kB time=00:00:01.84 bitrate=54936.1kbits/s
02-02 19:34:06.070 7979-18576/com.demo D/LLLLLLLLLL: frame= 59 fps= 56 q=-1.0 size= 22617kB time=00:00:02.36 bitrate=78509.1kbits/s
02-02 19:34:06.580 7979-18576/com.demo D/LLLLLLLLLL: frame= 71 fps= 45 q=-1.0 size= 32451kB time=00:00:02.84 bitrate=93605.9kbits/s
02-02 19:34:07.095 7979-18576/com.demo D/LLLLLLLLLL: frame= 88 fps= 42 q=-1.0 size= 42163kB time=00:00:03.52 bitrate=98124.1kbits/s
02-02 19:34:07.610 7979-18576/com.demo D/LLLLLLLLLL: frame= 109 fps= 42 q=-1.0 size= 52919kB time=00:00:04.36 bitrate=99428.7kbits/s
02-02 19:34:08.095 7979-18576/com.demo D/LLLLLLLLLL: frame= 128 fps= 41 q=-1.0 size= 64222kB time=00:00:05.12 bitrate=102755.2kbits/s
02-02 19:34:08.270 7979-18576/com.demo D/LLLLLLLLLL: frame= 160 fps= 44 q=-1.0 size= 74397kB time=00:00:06.40 bitrate=95227.6kbits/s
02-02 19:34:08.270 7979-18576/com.demo D/LLLLLLLLLL: frame= 200 fps= 53 q=-1.0 Lsize= 77598kB time=00:00:08.00 bitrate=79460.4kbits/s
02-02 19:34:08.270 7979-18576/com.demo D/LLLLLLLLLL: video:77596kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.002606%
02-02 19:34:08.270 7979-18573/com.demo D/LLLLLLLLLL: 图片合成,exitValue=0
02-02 19:34:08.295 7979-18573/com.demo D/LLLLLLLLLL: /data/data/com.demo/app_bin/ffmpeg -i /storage/sdcard0/baishiMagic/magic/waterfall/fish_isolate/fish_%04d.png -r 25 -vcodec copy -preset ultrafast -y /storage/sdcard0/baishiMagic/temp/anim2.mov
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: ffmpeg version n2.4.2 Copyright (c) 2000-2014 the FFmpeg developers
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: built on Oct 7 2014 15:05:17 with gcc 4.8 (GCC)
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: configuration: --target-os=linux --cross-prefix=/home/sb/Source-Code/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/sb/Source-Code/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/sb/Source-Code/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/sb/Source-Code/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/sb/Source-Code/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/sb/Source-Code/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libavutil 54. 7.100 / 54. 7.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libavcodec 56. 1.100 / 56. 1.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libavformat 56. 4.101 / 56. 4.101
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libavdevice 56. 0.100 / 56. 0.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libavfilter 5. 1.100 / 5. 1.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libswscale 3. 0.100 / 3. 0.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libswresample 1. 1.100 / 1. 1.100
02-02 19:34:08.325 7979-18674/com.demo D/LLLLLLLLLL: libpostproc 53. 0.100 / 53. 0.100
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Input #0, image2, from '/storage/sdcard0/baishiMagic/magic/waterfall/fish_isolate/fish_%04d.png':
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Duration: 00:00:08.00, start: 0.000000, bitrate: N/A
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Stream #0:0: Video: png, rgba, 480x640 [SAR 3779:3779 DAR 3:4], 25 fps, 25 tbr, 25 tbn, 25 tbc
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Output #0, mov, to '/storage/sdcard0/baishiMagic/temp/anim2.mov':
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: encoder : Lavf56.4.101
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Stream #0:0: Video: png (png / 0x20676E70), rgba, 480x640 [SAR 3779:3779 DAR 3:4], q=2-31, 25 fps, 12800 tbn, 25 tbc
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Stream mapping:
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Stream #0:0 -> #0:0 (copy)
02-02 19:34:08.410 7979-18674/com.demo D/LLLLLLLLLL: Press [q] to stop, [?] for help
02-02 19:34:08.750 7979-18674/com.demo D/LLLLLLLLLL: frame= 200 fps=0.0 q=-1.0 Lsize= 6606kB time=00:00:08.00 bitrate=6764.2kbits/s
02-02 19:34:08.750 7979-18674/com.demo D/LLLLLLLLLL: video:6604kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.023112%
02-02 19:34:08.750 7979-18573/com.demo D/LLLLLLLLLL: 图片合成,exitValue=0
02-02 19:34:08.780 7979-18573/com.demo D/LLLLLLLLLL: /data/data/com.demo/app_bin/ffmpeg -y -i /storage/sdcard0/baishiMagic/temp/video1454412829452.mp4 -r 25 -i /storage/sdcard0/baishiMagic/temp/anim1.mov -i /storage/sdcard0/baishiMagic/temp/anim2.mov -i /storage/sdcard0/frame.ts -filter_complex transpose=1,crop=480:640:0:40,overlay=0:0:0,overlay=-2:-2:0,overlay=0:0:0 -preset ultrafast -strict -2 /storage/sdcard0/baishiMagic/result.mp4
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: ffmpeg version n2.4.2 Copyright (c) 2000-2014 the FFmpeg developers
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: built on Oct 7 2014 15:05:17 with gcc 4.8 (GCC)
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: configuration: --target-os=linux --cross-prefix=/home/sb/Source-Code/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/sb/Source-Code/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/sb/Source-Code/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/sb/Source-Code/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/sb/Source-Code/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/sb/Source-Code/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libavutil 54. 7.100 / 54. 7.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libavcodec 56. 1.100 / 56. 1.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libavformat 56. 4.101 / 56. 4.101
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libavdevice 56. 0.100 / 56. 0.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libavfilter 5. 1.100 / 5. 1.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libswscale 3. 0.100 / 3. 0.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libswresample 1. 1.100 / 1. 1.100
02-02 19:34:08.810 7979-18716/com.demo D/LLLLLLLLLL: libpostproc 53. 0.100 / 53. 0.100
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/sdcard0/baishiMagic/temp/video1454412829452.mp4':
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: major_brand : isom
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: minor_version : 0
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: compatible_brands: isom3gp4
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: creation_time : 2016-02-02 11:33:58
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Duration: 00:00:07.64, start: 0.000000, bitrate: 3099 kb/s
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:0(eng): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p, 640x480, 3074 kb/s, SAR 1:1 DAR 4:3, 29.82 fps, 30 tbr, 90k tbn, 180k tbc (default)
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: rotate : 180
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: creation_time : 2016-02-02 11:33:58
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: handler_name : VideoHandle
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: encoder :
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Side data:
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: displaymatrix: rotation of 180.00 degrees
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, mono, fltp, 124 kb/s (default)
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: creation_time : 2016-02-02 11:33:58
02-02 19:34:08.870 7979-18716/com.demo D/LLLLLLLLLL: handler_name : SoundHandle
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/sdcard0/baishiMagic/temp/anim1.mov':
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: major_brand : qt
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: minor_version : 512
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: compatible_brands: qt
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: encoder : Lavf56.4.101
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: Duration: 00:00:08.00, start: 0.000000, bitrate: 79460 kb/s
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: Stream #1:0(eng): Video: png (png / 0x20676E70), rgba, 480x640 [SAR 3779:3779 DAR 3:4], 79458 kb/s, 25 fps, 25 tbr, 12800 tbn, 12800 tbc (default)
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.920 7979-18716/com.demo D/LLLLLLLLLL: handler_name : DataHandler
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: Input #2, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/sdcard0/baishiMagic/temp/anim2.mov':
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: major_brand : qt
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: minor_version : 512
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: compatible_brands: qt
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: encoder : Lavf56.4.101
02-02 19:34:08.950 7979-18716/com.demo D/LLLLLLLLLL: Duration: 00:00:08.00, start: 0.000000, bitrate: 6764 kb/s
02-02 19:34:08.955 7979-18716/com.demo D/LLLLLLLLLL: Stream #2:0(eng): Video: png (png / 0x20676E70), rgba, 480x640 [SAR 3779:3779 DAR 3:4], 6762 kb/s, 25 fps, 25 tbr, 12800 tbn, 12800 tbc (default)
02-02 19:34:08.955 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.955 7979-18716/com.demo D/LLLLLLLLLL: handler_name : DataHandler
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: Input #3, mpegts, from '/storage/sdcard0/frame.ts':
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: Duration: 00:00:05.13, start: 1.533333, bitrate: 1006 kb/s
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: Program 1
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: service_name : Service01
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: service_provider: FFmpeg
02-02 19:34:08.985 7979-18716/com.demo D/LLLLLLLLLL: Stream #3:0[0x100]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 480x480 [SAR 1:1 DAR 1:1], 15 fps, 15 tbr, 90k tbn, 30 tbc
02-02 19:34:09.000 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] using SAR=1/1
02-02 19:34:09.020 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] using cpu capabilities: none!
02-02 19:34:09.115 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] profile Constrained Baseline, level 3.0
02-02 19:34:09.115 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] 264 - core 142 - H.264/MPEG-4 AVC codec - Copyleft 2003-2014 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=0:0:0 analyse=0:0 me=dia subme=0 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=250 keyint_min=25 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=0
02-02 19:34:09.170 7979-18716/com.demo D/LLLLLLLLLL: Output #0, mp4, to '/storage/sdcard0/baishiMagic/result.mp4':
02-02 19:34:09.170 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:09.170 7979-18716/com.demo D/LLLLLLLLLL: major_brand : isom
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: minor_version : 0
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: compatible_brands: isom3gp4
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: encoder : Lavf56.4.101
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 480x640 [SAR 1:1 DAR 3:4], q=-1--1, 30 fps, 15360 tbn, 30 tbc (default)
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: encoder : Lavc56.1.100 libx264
02-02 19:34:09.175 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:1(eng): Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, mono, fltp, 128 kb/s (default)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Metadata:
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: creation_time : 2016-02-02 11:33:58
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: handler_name : SoundHandle
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: encoder : Lavc56.1.100 aac
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream mapping:
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:0 (h264) -> transpose (graph 0)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream #1:0 (png) -> overlay:overlay (graph 0)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream #2:0 (png) -> overlay:overlay (graph 0)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream #3:0 (h264) -> overlay:overlay (graph 0)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: overlay (graph 0) -> Stream #0:0 (libx264)
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Stream #0:1 -> #0:1 (aac (native) -> aac (native))
02-02 19:34:09.180 7979-18716/com.demo D/LLLLLLLLLL: Press [q] to stop, [?] for help
02-02 19:34:10.250 7979-18716/com.demo D/LLLLLLLLLL: frame= 1 fps=0.0 q=0.0 size= 0kB time=00:00:01.00 bitrate= 0.4kbits/s
02-02 19:34:10.745 7979-18716/com.demo D/LLLLLLLLLL: frame= 6 fps=5.9 q=0.0 size= 0kB time=00:00:01.00 bitrate= 0.4kbits/s
02-02 19:34:11.295 7979-18716/com.demo D/LLLLLLLLLL: frame= 11 fps=7.1 q=19.0 size= 11kB time=00:00:01.00 bitrate= 92.1kbits/s
02-02 19:34:11.760 7979-18716/com.demo D/LLLLLLLLLL: frame= 16 fps=7.7 q=19.0 size= 24kB time=00:00:01.00 bitrate= 199.3kbits/s
02-02 19:34:12.335 7979-18716/com.demo D/LLLLLLLLLL: frame= 22 fps=8.5 q=20.0 size= 39kB time=00:00:01.00 bitrate= 319.8kbits/s
02-02 19:34:12.870 7979-18716/com.demo D/LLLLLLLLLL: frame= 28 fps=9.0 q=19.0 size= 58kB time=00:00:01.00 bitrate= 475.7kbits/s
02-02 19:34:13.345 7979-18716/com.demo D/LLLLLLLLLL: frame= 30 fps=8.3 q=20.0 size= 63kB time=00:00:02.00 bitrate= 258.6kbits/s
02-02 19:34:13.935 7979-18716/com.demo D/LLLLLLLLLL: frame= 34 fps=8.2 q=20.0 size= 74kB time=00:00:02.00 bitrate= 300.8kbits/s
02-02 19:34:14.480 7979-18716/com.demo D/LLLLLLLLLL: frame= 39 fps=8.2 q=20.0 size= 87kB time=00:00:02.00 bitrate= 354.0kbits/s
02-02 19:34:15.015 7979-18716/com.demo D/LLLLLLLLLL: frame= 43 fps=8.2 q=20.0 size= 98kB time=00:00:02.00 bitrate= 400.4kbits/s
02-02 19:34:15.515 7979-18716/com.demo D/LLLLLLLLLL: frame= 48 fps=8.3 q=21.0 size= 112kB time=00:00:02.00 bitrate= 459.5kbits/s
02-02 19:34:16.015 7979-18716/com.demo D/LLLLLLLLLL: frame= 54 fps=8.5 q=24.0 size= 137kB time=00:00:02.00 bitrate= 557.9kbits/s
02-02 19:34:16.575 7979-18716/com.demo D/LLLLLLLLLL: frame= 58 fps=8.5 q=24.0 size= 169kB time=00:00:02.19 bitrate= 628.2kbits/s
02-02 19:34:17.090 7979-18716/com.demo D/LLLLLLLLLL: frame= 60 fps=8.2 q=24.0 size= 189kB time=00:00:03.00 bitrate= 515.4kbits/s
02-02 19:34:17.605 7979-18716/com.demo D/LLLLLLLLLL: frame= 65 fps=8.3 q=23.0 size= 228kB time=00:00:03.00 bitrate= 621.7kbits/s
02-02 19:34:18.090 7979-18716/com.demo D/LLLLLLLLLL: frame= 70 fps=8.4 q=24.0 size= 269kB time=00:00:03.00 bitrate= 731.7kbits/s
02-02 19:34:18.655 7979-18716/com.demo D/LLLLLLLLLL: frame= 76 fps=8.5 q=25.0 size= 320kB time=00:00:03.00 bitrate= 870.6kbits/s
02-02 19:34:19.115 7979-18716/com.demo D/LLLLLLLLLL: frame= 82 fps=8.7 q=25.0 size= 374kB time=00:00:03.00 bitrate=1019.4kbits/s
02-02 19:34:19.620 7979-18716/com.demo D/LLLLLLLLLL: frame= 87 fps=8.8 q=24.0 size= 419kB time=00:00:03.00 bitrate=1142.2kbits/s
02-02 19:34:20.120 7979-18716/com.demo D/LLLLLLLLLL: frame= 89 fps=8.5 q=22.0 size= 434kB time=00:00:04.01 bitrate= 885.6kbits/s
02-02 19:34:20.685 7979-18716/com.demo D/LLLLLLLLLL: frame= 94 fps=8.6 q=22.0 size= 464kB time=00:00:04.01 bitrate= 947.8kbits/s
02-02 19:34:21.155 7979-18716/com.demo D/LLLLLLLLLL: frame= 100 fps=8.7 q=22.0 size= 495kB time=00:00:04.01 bitrate=1010.7kbits/s
02-02 19:34:21.685 7979-18716/com.demo D/LLLLLLLLLL: frame= 105 fps=8.8 q=22.0 size= 523kB time=00:00:04.01 bitrate=1067.3kbits/s
02-02 19:34:22.180 7979-18716/com.demo D/LLLLLLLLLL: frame= 110 fps=8.8 q=22.0 size= 551kB time=00:00:04.01 bitrate=1125.1kbits/s
02-02 19:34:22.685 7979-18716/com.demo D/LLLLLLLLLL: frame= 115 fps=8.9 q=22.0 size= 576kB time=00:00:04.01 bitrate=1176.9kbits/s
02-02 19:34:23.200 7979-18716/com.demo D/LLLLLLLLLL: frame= 118 fps=8.7 q=21.0 size= 592kB time=00:00:04.92 bitrate= 984.3kbits/s
02-02 19:34:23.715 7979-18716/com.demo D/LLLLLLLLLL: frame= 123 fps=8.8 q=22.0 size= 619kB time=00:00:05.01 bitrate=1011.1kbits/s
02-02 19:34:24.265 7979-18716/com.demo D/LLLLLLLLLL: frame= 127 fps=8.7 q=22.0 size= 638kB time=00:00:05.01 bitrate=1042.8kbits/s
02-02 19:34:24.765 7979-18716/com.demo D/LLLLLLLLLL: frame= 131 fps=8.7 q=23.0 size= 658kB time=00:00:05.01 bitrate=1074.5kbits/s
02-02 19:34:25.310 7979-18716/com.demo D/LLLLLLLLLL: frame= 137 fps=8.8 q=23.0 size= 700kB time=00:00:05.01 bitrate=1143.7kbits/s
02-02 19:34:25.800 7979-18716/com.demo D/LLLLLLLLLL: frame= 142 fps=8.8 q=23.0 size= 736kB time=00:00:05.01 bitrate=1202.2kbits/s
02-02 19:34:26.345 7979-18716/com.demo D/LLLLLLLLLL: frame= 147 fps=8.8 q=24.0 size= 771kB time=00:00:05.14 bitrate=1229.1kbits/s
02-02 19:34:26.895 7979-18716/com.demo D/LLLLLLLLLL: frame= 150 fps=8.7 q=24.0 size= 798kB time=00:00:06.01 bitrate=1086.7kbits/s
02-02 19:34:27.385 7979-18716/com.demo D/LLLLLLLLLL: frame= 156 fps=8.8 q=24.0 size= 847kB time=00:00:06.01 bitrate=1153.9kbits/s
02-02 19:34:27.895 7979-18716/com.demo D/LLLLLLLLLL: frame= 161 fps=8.9 q=23.0 size= 886kB time=00:00:06.01 bitrate=1206.2kbits/s
02-02 19:34:28.455 7979-18716/com.demo D/LLLLLLLLLL: frame= 167 fps=8.9 q=23.0 size= 927kB time=00:00:06.01 bitrate=1261.6kbits/s
02-02 19:34:28.905 7979-18716/com.demo D/LLLLLLLLLL: frame= 173 fps=9.0 q=23.0 size= 964kB time=00:00:06.01 bitrate=1312.4kbits/s
02-02 19:34:29.440 7979-18716/com.demo D/LLLLLLLLLL: frame= 177 fps=9.0 q=23.0 size= 987kB time=00:00:06.20 bitrate=1302.9kbits/s
02-02 19:34:29.995 7979-18716/com.demo D/LLLLLLLLLL: frame= 180 fps=8.9 q=23.0 size= 1008kB time=00:00:07.01 bitrate=1176.9kbits/s
02-02 19:34:30.490 7979-18716/com.demo D/LLLLLLLLLL: frame= 186 fps=9.0 q=21.0 size= 1048kB time=00:00:07.01 bitrate=1223.3kbits/s
02-02 19:34:31.015 7979-18716/com.demo D/LLLLLLLLLL: frame= 191 fps=9.0 q=19.0 size= 1076kB time=00:00:07.01 bitrate=1255.5kbits/s
02-02 19:34:31.495 7979-18716/com.demo D/LLLLLLLLLL: frame= 197 fps=9.0 q=18.0 size= 1103kB time=00:00:07.01 bitrate=1287.1kbits/s
02-02 19:34:32.040 7979-18716/com.demo D/LLLLLLLLLL: frame= 202 fps=9.1 q=19.0 size= 1119kB time=00:00:07.01 bitrate=1306.5kbits/s
02-02 19:34:32.555 7979-18716/com.demo D/LLLLLLLLLL: frame= 207 fps=9.1 q=20.0 size= 1138kB time=00:00:07.01 bitrate=1328.1kbits/s
02-02 19:34:33.140 7979-18716/com.demo D/LLLLLLLLLL: frame= 213 fps=9.1 q=19.0 size= 1161kB time=00:00:07.01 bitrate=1354.7kbits/s
02-02 19:34:33.695 7979-18716/com.demo D/LLLLLLLLLL: frame= 217 fps=9.1 q=19.0 size= 1176kB time=00:00:07.59 bitrate=1268.3kbits/s
02-02 19:34:34.205 7979-18716/com.demo D/LLLLLLLLLL: frame= 222 fps=9.1 q=19.0 size= 1195kB time=00:00:07.59 bitrate=1288.8kbits/s dup=0 drop=4
02-02 19:34:34.720 7979-18716/com.demo D/LLLLLLLLLL: frame= 222 fps=8.9 q=19.0 size= 1195kB time=00:00:07.59 bitrate=1288.8kbits/s dup=0 drop=13
02-02 19:34:35.075 7979-18716/com.demo D/LLLLLLLLLL: frame= 222 fps=8.7 q=19.0 size= 1195kB time=00:00:07.59 bitrate=1288.8kbits/s dup=0 drop=24
02-02 19:34:35.075 7979-18716/com.demo D/LLLLLLLLLL: frame= 222 fps=8.6 q=-1.0 Lsize= 1233kB time=00:00:07.63 bitrate=1322.5kbits/s dup=0 drop=30
02-02 19:34:35.075 7979-18716/com.demo D/LLLLLLLLLL: video:1104kB audio:122kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.615799%
02-02 19:34:35.095 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] frame I:1 Avg QP:20.00 size: 5784
02-02 19:34:35.095 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] frame P:221 Avg QP:21.62 size: 5084
02-02 19:34:35.095 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] mb I I16..4: 100.0% 0.0% 0.0%
02-02 19:34:35.095 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] mb P I16..4: 17.6% 0.0% 0.0% P16..4: 21.8% 0.0% 0.0% 0.0% 0.0% skip:60.5%
02-02 19:34:35.100 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] coded y,uvDC,uvAC intra: 36.9% 18.1% 2.2% inter: 13.0% 7.3% 0.1%
02-02 19:34:35.100 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] i16 v,h,dc,p: 27% 30% 24% 19%
02-02 19:34:35.100 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] i8c dc,h,v,p: 57% 22% 17% 3%
02-02 19:34:35.100 7979-18716/com.demo D/LLLLLLLLLL: [libx264 @ 0x2b447ef0] kb/s:1221.00
02-02 19:34:35.110 7979-18573/com.demo D/LLLLLLLLLL: 视频处理,exitValue=0 -
ffmpeg mp4 to mpeg and back again
5 décembre 2012, par bruxI am concatenating mp4 files, from research I have found out you must first encode to mpeg and contatenate those, then convert the larger mpeg file back to mp4.
For simplicity I am just attempting to convert a.mp4 to mpeg and then back to mp4 (i dont need to worry about the concatenation for now)
Here is how I first convert to my intermediary mpeg from mp4 :
ffmpeg -i a.mp4 -q:v 2 -vcodec mpeg2video -acodec copy b.mpg
The file is encoded with no errors, to convert back to mp4 I do :
ffmpeg -i b.mpg -vcodec libx264 -acodec copy out.mp4
Everything seems to work with no errors but out.mp4 just plays the first few frames and then freezes, and the time is skipping randomly as the duration passes for the file. No sound is heard also.
*****************************************
Here is the output of the first command
*****************************************
$ ffmpeg -i a.mp4 -q:v 2 -vcodec mpeg2video -acodec copy b.mpg
ffmpeg version 0.9, Copyright (c) 2000-2011 the FFmpeg developers
built on Jun 12 2012 20:43:50 with gcc 4.4.3
configuration: --enable-cross-compile --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --prefix=/data/data/org.witness.sscvideoproto --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk/platforms/android-3/arch-arm --enable-version3 --enable-gpl --enable-small --enable-memalign-hack --disable-yasm --disable-doc --enable-decoder=mjpeg --enable-decoder=rawvideo --enable-encoder=libx264 --enable-muxer=mp4 --enable-demuxer=image2 --enable-demuxer=mjpeg --enable-demuxer=mp4 --enable-demuxer=mov --enable-parser=mjpeg --enable-filter=buffer --enable-filter=buffersink --enable-filter=drawbox --enable-filter=overlay --enable-filter=redact --enable-protocol=file --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib --extra-cflags=-I../x264 --extra-ldflags=-L../x264 --disabl libavutil 51. 32. 0 / 51. 32. 0
libavcodec 53. 42. 0 / 53. 42. 0
libavformat 53. 24. 0 / 53. 24. 0
libavfilter 2. 53. 0 / 2. 53. 0
libswscale 2. 1. 0 / 2. 1. 0
libpostproc 51. 2. 0 / 51. 2. 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0xb05a90] multiple edit list entries, a/v desync might occur, patch welcome
Seems stream 1 codec frame rate differs from container frame rate: 180000.00 (180000/1) -> 43.08 (517/12)
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'j.mp4':
Metadata:
major_brand : isom
minor_version : 0
compatible_brands: isom3gp4
creation_time : 1946-12-04 21:52:33
Duration: 00:00:05.31, start: 0.000000, bitrate: 1584 kb/s
Stream #0:0(eng): Audio: aac (mp4a / 0x6134706D), 16000 Hz, mono, s16, 96 kb/s
Metadata:
creation_time : 1946-12-04 21:52:33
handler_name : SoundHandle
Stream #0:1(eng): Video: h264 (avc1 / 0x31637661), yuv420p, 720x480, 1599 kb/s, SAR 65536:65536 DAR 3:2, 13.97 fps, 43.08 tbr, 90k tbn, 180k tbc
Metadata:
creation_time : 1946-12-04 21:52:33
handler_name : VideoHandle
[buffer @ 0xb247f0] w:720 h:480 pixfmt:yuv420p tb:1/1000000 sar:65536/65536 sws_param:
[mpeg @ 0xb23d10] VBV buffer size not set, muxing may fail
Output #0, mpeg, to 'out.mpg':
Metadata:
major_brand : isom
minor_version : 0
compatible_brands: isom3gp4
creation_time : 1946-12-04 21:52:33
encoder : Lavf53.24.0
Stream #0:0(eng): Video: mpeg2video, yuv420p, 720x480 [SAR 65536:65536 DAR 3:2], q=2-31, 200 kb/s, 90k tbn, 50 tbc
Metadata:
creation_time : 1946-12-04 21:52:33
handler_name : VideoHandle
Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 16000 Hz, mono, 96 kb/s
Metadata:
creation_time : 1946-12-04 21:52:33
handler_name : SoundHandle
Stream mapping:
Stream #0:1 -> #0:0 (h264 -> mpeg2video)
Stream #0:0 -> #0:1 (copy)
Press [q] to stop, [?] for help
frame= 20 fps= 0 q=0.0 size= 14kB time=00:00:00.38 bitrate= 301.8kbits/s dup=15 frame= 34 fps= 28 q=0.0 size= 132kB time=00:00:00.66 bitrate=1638.4kbits/s dup=25 frame= 45 fps= 25 q=0.0 size= 230kB time=00:00:00.88 bitrate=2141.1kbits/s dup=33 frame= 55 fps= 22 q=0.0 size= 294kB time=00:00:01.08 bitrate=2230.0kbits/s dup=40 frame= 66 fps= 21 q=0.0 size= 306kB time=00:00:01.21 bitrate=2061.5kbits/s dup=48 frame= 79 fps= 21 q=0.0 size= 436kB time=00:00:01.56 bitrate=2289.6kbits/s dup=57 frame= 88 fps= 20 q=0.0 size= 514kB time=00:00:01.74 bitrate=2419.9kbits/s dup=63 frame= 100 fps= 21 q=0.0 size= 584kB time=00:00:01.98 bitrate=2416.2kbits/s dup=71 frame= 110 fps= 20 q=0.0 size= 618kB time=00:00:02.17 bitrate=2326.6kbits/s dup=78 frame= 116 fps= 19 q=0.0 size= 650kB time=00:00:02.24 bitrate=2377.1kbits/s dup=82 frame= 132 fps= 20 q=0.0 size= 830kB time=00:00:02.62 bitrate=2595.2kbits/s dup=94 frame= 144 fps= 20 q=0.0 size= 904kB time=00:00:02.86 bitrate=2589.4kbits/s dup=103frame= 156 fps= 20 q=0.0 size= 970kB time=00:00:03.10 bitrate=2563.3kbits/s dup=112frame= 168 fps= 20 q=0.0 size= 1006kB time=00:00:03.20 bitrate=2575.4kbits/s dup=121frame= 179 fps= 20 q=0.0 size= 1138kB time=00:00:03.56 bitrate=2618.7kbits/s dup=129frame= 191 fps= 20 q=0.0 size= 1240kB time=00:00:03.80 bitrate=2673.2kbits/s dup=138frame= 203 fps= 20 q=0.0 size= 1342kB time=00:00:04.04 bitrate=2721.2kbits/s dup=147frame= 215 fps= 20 q=0.0 size= 1426kB time=00:00:04.22 bitrate=2765.6kbits/s dup=156frame= 227 fps= 20 q=0.0 size= 1536kB time=00:00:04.52 bitrate=2783.8kbits/s dup=165frame= 239 fps= 20 q=0.0 size= 1646kB time=00:00:04.76 bitrate=2832.8kbits/s dup=174frame= 248 fps= 20 q=0.0 size= 1726kB time=00:00:04.94 bitrate=2862.2kbits/s dup=181frame= 248 fps= 19 q=0.0 Lsize= 1738kB time=00:00:04.94 bitrate=2882.1kbits/s dup=181 drop=0
video:1665kB audio:62kB global headers:0kB muxing overhead 0.639219%
*****************************************
Here is the output of the second command
*****************************************
$ ffmpeg -i out.mpg -vcodec libx264 -acodec copy out1.mp4
ffmpeg version 0.9, Copyright (c) 2000-2011 the FFmpeg developers
built on Jun 12 2012 20:43:50 with gcc 4.4.3
configuration: --enable-cross-compile --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --prefix=/data/data/org.witness.sscvideoproto --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk/platforms/android-3/arch-arm --enable-version3 --enable-gpl --enable-small --enable-memalign-hack --disable-yasm --disable-doc --enable-decoder=mjpeg --enable-decoder=rawvideo --enable-encoder=libx264 --enable-muxer=mp4 --enable-demuxer=image2 --enable-demuxer=mjpeg --enable-demuxer=mp4 --enable-demuxer=mov --enable-parser=mjpeg --enable-filter=buffer --enable-filter=buffersink --enable-filter=drawbox --enable-filter=overlay --enable-filter=redact --enable-protocol=file --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib --extra-cflags=-I../x264 --extra-ldflags=-L../x264 --disabl libavutil 51. 32. 0 / 51. 32. 0
libavcodec 53. 42. 0 / 53. 42. 0
libavformat 53. 24. 0 / 53. 24. 0
libavfilter 2. 53. 0 / 2. 53. 0
libswscale 2. 1. 0 / 2. 1. 0
libpostproc 51. 2. 0 / 51. 2. 0
[mp1 @ 0xb0d420] Header missing
Last message repeated 8 times
[mpeg @ 0xb05a90] Could not find codec parameters (Audio: mp3, 0 channels, s16)
Input #0, mpeg, from 'out.mpg':
Duration: 00:00:05.24, start: 1.000000, bitrate: 2712 kb/s
Stream #0:0[0x1e0]: Video: mpeg2video, yuv420p, 720x480 [SAR 1:1 DAR 3:2], 104857 kb/s, 50 fps, 50 tbr, 90k tbn, 100 tbc
Stream #0:1[0x1c0]: Audio: mp3, 0 channels, s16
[buffer @ 0xb77ca0] w:720 h:480 pixfmt:yuv420p tb:1/1000000 sar:1/1 sws_param:
[libx264 @ 0xb0c6e0] using SAR=1/1
[libx264 @ 0xb0c6e0] using cpu capabilities: ARMv6 NEON
[libx264 @ 0xb0c6e0] profile High, level 3.1
[libx264 @ 0xb0c6e0] 264 - core 119 r2113 cc129ad - H.264/MPEG-4 AVC codec - Copyleft 2003-2011 - 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=-2 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=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to 'out1.mp4':
Metadata:
encoder : Lavf53.24.0
Stream #0:0: Video: h264 (![0][0][0] / 0x0021), yuv420p, 720x480 [SAR 1:1 DAR 3:2], q=-1--1, 50 tbn, 50 tbc
Stream mapping:
Stream #0:0 -> #0:0 (mpeg2video -> libx264)
Press [q] to stop, [?] for help
frame= 248 fps= 3 q=31.0 Lsize= 419kB time=00:00:04.92 bitrate= 697.5kbits/s
video:415kB audio:0kB global headers:0kB muxing overhead 0.863133%
[libx264 @ 0xb0c6e0] frame I:3 Avg QP:16.46 size: 3927
[libx264 @ 0xb0c6e0] frame P:102 Avg QP:22.91 size: 3884
[libx264 @ 0xb0c6e0] frame B:143 Avg QP:27.16 size: 116
[libx264 @ 0xb0c6e0] consecutive B-frames: 18.1% 8.9% 18.1% 54.8%
[libx264 @ 0xb0c6e0] mb I I16..4: 56.3% 42.7% 1.0%
[libx264 @ 0xb0c6e0] mb P I16..4: 6.1% 9.9% 0.6% P16..4: 33.2% 4.9% 2.2% 0.0% 0.0% skip:43.1%
[libx264 @ 0xb0c6e0] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 6.7% 0.0% 0.0% direct: 0.1% skip:93.2% L0:53.5% L1:45.4% BI: 1.2%
[libx264 @ 0xb0c6e0] 8x8 transform intra:57.0% inter:85.5%
[libx264 @ 0xb0c6e0] coded y,uvDC,uvAC intra: 36.0% 71.6% 24.9% inter: 4.4% 11.6% 0.6%
[libx264 @ 0xb0c6e0] i16 v,h,dc,p: 35% 21% 10% 34%
[libx264 @ 0xb0c6e0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 22% 34% 3% 3% 4% 2% 4% 5%
[libx264 @ 0xb0c6e0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 24% 19% 11% 4% 12% 12% 7% 5% 6%
[libx264 @ 0xb0c6e0] i8c dc,h,v,p: 49% 22% 22% 7%
[libx264 @ 0xb0c6e0] Weighted P-Frames: Y:2.9% UV:2.0%
[libx264 @ 0xb0c6e0] ref P L0: 79.5% 8.1% 9.8% 2.5% 0.0%
[libx264 @ 0xb0c6e0] ref B L0: 91.9% 7.5% 0.6%
[libx264 @ 0xb0c6e0] ref B L1: 94.8% 5.2%
[libx264 @ 0xb0c6e0] kb/s:684.84