SHOW:
|
|
- or go back to the newest paste.
| 1 | - | gajdot@gajdot:~/ffmpeg_test$ ./ffmpeg -i first.MOV -i second.MOV -filter_complex "color=s=1280x400:duration=10:0xFFFFFF[bg];[0:v]scale=640:-1[q];[bg][q]overlay=0:0[e];[1]scale=640:-1[r];[e][r]overlay=640:0[v]; [0:a][1:a]amerge, pan=stereo|c0=0.9*c0+0.1*c2|c1=0.9*c1+0.1*c3[a]" -map "[v]" -map "[a]" -acodec aac -strict experimental -ar 44100 -ac 2 output.mp4 |
| 1 | + | gajdot@gajdot:~/ffmpeg_test$ ./ffmpeg -i first.MOV -i second.MOV -filter_complex "[0:v]scale=640:-1[v]; [0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -acodec aac -strict experimental -ar 44100 -ac 2 output.mp4 |
| 2 | ffmpeg version N-59158-g745c40a Copyright (c) 2000-2013 the FFmpeg developers | |
| 3 | built on Dec 17 2013 05:32:25 with gcc 4.6 (Debian 4.6.3-1) | |
| 4 | configuration: --prefix=/root/ffmpeg-static/64bit --extra-cflags='-I/root/ffmpeg-static/64bit/include -static' --extra-ldflags='-L/root/ffmpeg-static/64bit/lib -static' --extra-libs='-lxml2 -lexpat -lfreetype' --enable-static --disable-shared --disable-ffserver --disable-doc --enable-bzlib --enable-zlib --enable-postproc --enable-runtime-cpudetect --enable-libx264 --enable-gpl --enable-libtheora --enable-libvorbis --enable-libmp3lame --enable-gray --enable-libass --enable-libfreetype --enable-libopenjpeg --enable-libspeex --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-version3 --enable-libvpx | |
| 5 | libavutil 53. 0.100 / 53. 0.100 | |
| 6 | libavcodec 55. 45.101 / 55. 45.101 | |
| 7 | libavformat 55. 22.100 / 55. 22.100 | |
| 8 | libavdevice 55. 5.102 / 55. 5.102 | |
| 9 | libavfilter 4. 0.100 / 4. 0.100 | |
| 10 | libswscale 2. 5.101 / 2. 5.101 | |
| 11 | libswresample 0. 17.104 / 0. 17.104 | |
| 12 | libpostproc 52. 3.100 / 52. 3.100 | |
| 13 | Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'first.MOV': | |
| 14 | Metadata: | |
| 15 | major_brand : qt | |
| 16 | minor_version : 537331968 | |
| 17 | compatible_brands: qt CAEP | |
| 18 | creation_time : 2013-09-07 00:39:52 | |
| 19 | Duration: 00:00:07.97, start: 0.000000, bitrate: 44582 kb/s | |
| 20 | Stream #0:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuvj420p(pc, smpte170m), 1920x1080, 43037 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 48k tbc (default) | |
| 21 | Metadata: | |
| 22 | creation_time : 2013-09-07 00:39:52 | |
| 23 | Stream #0:1(eng): Audio: pcm_s16le (sowt / 0x74776F73), 48000 Hz, stereo, s16, 1536 kb/s (default) | |
| 24 | Metadata: | |
| 25 | creation_time : 2013-09-07 00:39:52 | |
| 26 | Input #1, mov,mp4,m4a,3gp,3g2,mj2, from 'second.MOV': | |
| 27 | Metadata: | |
| 28 | major_brand : qt | |
| 29 | minor_version : 537331968 | |
| 30 | compatible_brands: qt CAEP | |
| 31 | creation_time : 2013-10-27 19:43:21 | |
| 32 | Duration: 00:00:30.52, start: 0.000000, bitrate: 40865 kb/s | |
| 33 | Stream #1:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuvj420p(pc, smpte170m), 1920x1080, 39325 kb/s, 25 fps, 25 tbr, 25k tbn, 50k tbc (default) | |
| 34 | Metadata: | |
| 35 | creation_time : 2013-10-27 19:43:21 | |
| 36 | Stream #1:1(eng): Audio: pcm_s16le (sowt / 0x74776F73), 48000 Hz, stereo, s16, 1536 kb/s (default) | |
| 37 | Metadata: | |
| 38 | creation_time : 2013-10-27 19:43:21 | |
| 39 | File 'output.mp4' already exists. Overwrite ? [y/N] y | |
| 40 | - | [Parsed_amerge_5 @ 0x3198d60] No channel layout for input 1 |
| 40 | + | [Parsed_amerge_1 @ 0x2448ce0] No channel layout for input 1 |
| 41 | - | [Parsed_amerge_5 @ 0x3198d60] Input channel layouts overlap: output layout will be determined by the number of distinct input channels |
| 41 | + | [Parsed_amerge_1 @ 0x2448ce0] Input channel layouts overlap: output layout will be determined by the number of distinct input channels |
| 42 | - | [swscaler @ 0x3120c60] deprecated pixel format used, make sure you did set range correctly |
| 42 | + | [swscaler @ 0x23d2c60] deprecated pixel format used, make sure you did set range correctly |
| 43 | - | [swscaler @ 0x31b20a0] deprecated pixel format used, make sure you did set range correctly |
| 43 | + | No pixel format specified, yuvj420p for H.264 encoding chosen. |
| 44 | - | [libx264 @ 0x31a3ce0] using SAR=1/1 |
| 44 | + | Use -pix_fmt yuv420p for compatibility with outdated media players. |
| 45 | - | [libx264 @ 0x31a3ce0] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 |
| 45 | + | [libx264 @ 0x244b7c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 |
| 46 | - | [libx264 @ 0x31a3ce0] profile High, level 3.1 |
| 46 | + | [libx264 @ 0x244b7c0] profile High, level 3.0 |
| 47 | - | [libx264 @ 0x31a3ce0] 264 - core 129 r2230 1cffe9f - 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=-2 threads=3 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=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 |
| 47 | + | [libx264 @ 0x244b7c0] 264 - core 129 r2230 1cffe9f - 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=-2 threads=3 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=23 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 |
| 48 | Output #0, mp4, to 'output.mp4': | |
| 49 | Metadata: | |
| 50 | major_brand : qt | |
| 51 | minor_version : 537331968 | |
| 52 | compatible_brands: qt CAEP | |
| 53 | encoder : Lavf55.22.100 | |
| 54 | - | Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1280x400 [SAR 1:1 DAR 16:5], q=-1--1, 12800 tbn, 25 tbc (default) |
| 54 | + | Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuvj420p, 640x360, q=-1--1, 24k tbn, 23.98 tbc (default) |
| 55 | Stream #0:1: Audio: aac ([64][0][0][0] / 0x0040), 44100 Hz, stereo, fltp, 128 kb/s (default) | |
| 56 | Stream mapping: | |
| 57 | Stream #0:0 (h264) -> scale | |
| 58 | Stream #0:1 (pcm_s16le) -> amerge:in0 | |
| 59 | - | Stream #1:0 (h264) -> scale |
| 59 | + | |
| 60 | scale -> Stream #0:0 (libx264) | |
| 61 | - | overlay -> Stream #0:0 (libx264) |
| 61 | + | amerge -> Stream #0:1 (aac) |
| 62 | - | pan -> Stream #0:1 (aac) |
| 62 | + | |
| 63 | Error while decoding stream #0:1: Cannot allocate memory | |
| 64 | Last message repeated 27 times | |
| 65 | - | Last message repeated 16 times |
| 65 | + | Error while decoding stream #0:1: Cannot allocate memory66 bitrate= 0.2kbits/s |
| 66 | - | Error while decoding stream #1:1: Cannot allocate memory89 bitrate= 0.2kbits/s |
| 66 | + | Last message repeated 12 times |
| 67 | - | Last message repeated 25 times |
| 67 | + | Error while decoding stream #0:1: Cannot allocate memory.35 bitrate= 447.9kbits/s |
| 68 | - | Error while decoding stream #1:1: Cannot allocate memory.92 bitrate=1627.1kbits/s |
| 68 | + | Last message repeated 12 times |
| 69 | - | Last message repeated 35 times |
| 69 | + | Error while decoding stream #0:1: Cannot allocate memory.56 bitrate= 973.2kbits/s |
| 70 | - | Error while decoding stream #1:1: Cannot allocate memory.92 bitrate=1926.1kbits/s |
| 70 | + | Last message repeated 11 times |
| 71 | - | Last message repeated 89 times |
| 71 | + | Error while decoding stream #0:1: Cannot allocate memory.69 bitrate=1296.4kbits/s |
| 72 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=13 |
| 72 | + | Last message repeated 12 times |
| 73 | - | Last message repeated 89 times |
| 73 | + | Error while decoding stream #0:1: Cannot allocate memory.71 bitrate=1455.7kbits/s |
| 74 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=64 |
| 74 | + | Last message repeated 12 times |
| 75 | - | Last message repeated 89 times |
| 75 | + | Error while decoding stream #0:1: Cannot allocate memory.38 bitrate=1482.3kbits/s |
| 76 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=120 |
| 76 | + | Last message repeated 10 times |
| 77 | - | Last message repeated 89 times |
| 77 | + | frame= 191 fps= 22 q=-1.0 Lsize= 2034kB time=00:00:07.88 bitrate=2113.7kbits/s |
| 78 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=172 |
| 78 | + | video:1938kB audio:91kB subtitle:0 global headers:0kB muxing overhead 0.249276% |
| 79 | - | Last message repeated 134 times |
| 79 | + | [libx264 @ 0x244b7c0] frame I:3 Avg QP:25.82 size: 15169 |
| 80 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=230 |
| 80 | + | [libx264 @ 0x244b7c0] frame P:188 Avg QP:27.74 size: 10310 |
| 81 | - | Last message repeated 89 times |
| 81 | + | [libx264 @ 0x244b7c0] mb I I16..4: 1.4% 77.3% 21.3% |
| 82 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=279 |
| 82 | + | [libx264 @ 0x244b7c0] mb P I16..4: 0.9% 17.5% 3.6% P16..4: 36.5% 31.1% 10.0% 0.0% 0.0% skip: 0.5% |
| 83 | - | Last message repeated 89 times |
| 83 | + | [libx264 @ 0x244b7c0] 8x8 transform intra:79.5% inter:79.9% |
| 84 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=337 |
| 84 | + | [libx264 @ 0x244b7c0] coded y,uvDC,uvAC intra: 88.4% 73.4% 34.2% inter: 78.8% 45.1% 2.1% |
| 85 | - | Last message repeated 89 times |
| 85 | + | [libx264 @ 0x244b7c0] i16 v,h,dc,p: 1% 82% 0% 17% |
| 86 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=393 |
| 86 | + | [libx264 @ 0x244b7c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 8% 55% 8% 3% 3% 2% 8% 2% 11% |
| 87 | - | Last message repeated 89 times |
| 87 | + | [libx264 @ 0x244b7c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 3% 76% 4% 1% 2% 1% 5% 1% 6% |
| 88 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=427 |
| 88 | + | [libx264 @ 0x244b7c0] i8c dc,h,v,p: 50% 37% 8% 5% |
| 89 | - | Last message repeated 89 times |
| 89 | + | [libx264 @ 0x244b7c0] Weighted P-Frames: Y:11.7% UV:0.0% |
| 90 | - | Error while decoding stream #1:1: Cannot allocate memory.08 bitrate=1998.3kbits/s dup=0 drop=479 |
| 90 | + | [libx264 @ 0x244b7c0] ref P L0: 55.0% 24.2% 11.2% 8.6% 0.9% |
| 91 | - | Last message repeated 35 times |
| 91 | + | [libx264 @ 0x244b7c0] kb/s:1992.13 |