#2110 closed defect (worksforme)
Mov file when used with FFMPEG loses audio all together while track is there
Reported by: | Vlad SD | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | undetermined |
Version: | git-master | Keywords: | mov chan |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
Summary of the bug:
How to reproduce:
Here is a command
C:\Tools\ffmpeg2\ffmpeg.exe -i "C:\Files\ContentRelated\Torgashi1.mov" -t 60 -vcodec copy -acodec copy -y "C:\Files\ContentRelated\Torgashi1short.mov"
With latest top build in windows 64bit
Produced file has audio which cannot be heard but original file has audio working!
Change History (18)
comment:2 by , 12 years ago
Component: | FFmpeg → undetermined |
---|---|
Priority: | critical → normal |
Please read http://ffmpeg.org/bugreports.html or use http://www.datafilehost.com/
To make this a valid ticket, please add your command line together with complete, uncut console output.
comment:3 by , 12 years ago
Component: | undetermined → FFmpeg |
---|
I have uploaded the mov file here:
http://www.datafilehost.com/download-34844139.html
I have uploaded complete console output here:
http://www.datafilehost.com/download-d730ea96.html
After ffmpeg the new file is is uploaded here and it has audio track but its not playing. The file is here:
http://www.datafilehost.com/download-d9843263.html
After running a command which copies video and audio into another mov file audio stops working. The same happens when you try to transcode that file into any other format.
Please help, thank you.
comment:4 by , 12 years ago
Component: | FFmpeg → undetermined |
---|---|
Keywords: | mov added |
Resolution: | → worksforme |
Status: | new → closed |
Your sample contains an unusual channel layout, afaict it contains no information how the audio channels should be interpreted;-(
FFmpeg by default chooses the audio channel with the highest bit-rate, generally this is not a bad idea, but does not work for your sample.
The following commands work fine here:
$ ffmpeg -i TorgashiShort.mov -vcodec copy -acodec copy -map 0 -dn out.mov $ ffmpeg -i TorgashiShort.mov -vcodec copy -acodec copy -map 0:0 -map 0:1 -map 0:2 out.mov
I guess the following is what most people would actually want:
$ ffmpeg -i TorgashiShort.mov -vcodec copy -filter_complex amerge -acodec pcm_s24le out.mov
The following simple command produces an output file with audio, but is probably not what you want (assuming the original sample does not contain two independent mono streams, but a stereo stream encoded as two singe-channel streams):
$ ffmpeg -i TorgashiShort.mov -vcodec copy -acodec copy -map 0:0 -map 0:1 out.mov
If you have any indication that I am wrong and that the file does contain information on how the audio channels should be interpreted, please elaborate!
comment:5 by , 12 years ago
Keywords: | chan added |
---|
comment:6 by , 12 years ago
For future tickets: Please do never use external resources for the necessary information like command line and console output on external resources, always post them on the tracker.
comment:7 by , 12 years ago
Thank you, will do and option " -map 0 -dn " works great when I transcode into mp4 with aac.
What does -dn means? I could not find any documentation?
Thank you.
comment:8 by , 12 years ago
-dn means "do not process data streams" - if you try the command line without -dn, FFmpeg will protest that the data stream cannot be copied.
Allow me to repeat that - depending on your use case - -map 0 -codec copy may not be the best option: It copies large audio tracks that are silent.
comment:9 by , 12 years ago
Thank you for all your help. I am choosing now 3 streams only: -map 0:0 -map 0:1 -map 0:2 and it works. Here is my command:
C:\Dev\Tools\ffmpeg2\ffmpeg.exe -i "C:\Dev\Files\ContentRelated\Torgashi1.mov" -t 5 -vcodec libx264 -acodec aac -strict experimental -b:v 704k -s 640x360 -map 0:a:5 -map 0:0 -map 0:1 -map 0:2 -y "C:\Dev\Files\ContentRelated\Torgashi1.mp4"
follow-up: 12 comment:10 by , 12 years ago
I am back since the issue with MOV file is not resolved. While your suggestion on mapping audio with -map 0:0 -map 0:1 -map 0:2 or -map 0 -dn produce the file with sound and VLC player able to play, none of the web players can play it, it also does not play on devices. Video is not showing!!!
Here is a file which is produced with
C:\Dev\Tools\ffmpeg2\ffmpeg.exe -i "C:\Dev\Files\ContentRelated\Torgashi1.mov" -t 5 -vcodec libx264 -movflags rtphint -acodec aac -strict experimental -map 0:0 -map 0:1 -map 0:2 -b:v 704k -s 640x360 -y "C:\Dev\Files\ContentRelated\Torgashi1.mp4"
http://www.datafilehost.com/download-4bb6b636.html
here is a full output
ffmpeg started on 2013-01-09 at 10:32:19 Report written to "ffmpeg-20130109-103219.log" Command line: "C:\\Dev\\Tools\\ffmpeg2\\ffmpeg.exe" -i "C:\\Dev\\Files\\ContentRelated\\Torgashi1.mov" -report -t 5 -vcodec libx264 -movflags rtphint -acodec aac -strict experimental -map 0:0 -map 0:1 -map 0:2 -b:v 704k -s 640x360 -y "C:\\Dev\\Files\\ContentRelated\\Torgashi1.mp4" ffmpeg version N-47062-g26c531c Copyright (c) 2000-2012 the FFmpeg developers built on Nov 25 2012 12:25:21 with gcc 4.7.2 (GCC) configuration: --enable-gpl --enable-version3 --disable-pthreads --enable-runtime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-libnut --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib libavutil 52. 9.100 / 52. 9.100 libavcodec 54. 77.100 / 54. 77.100 libavformat 54. 37.100 / 54. 37.100 libavdevice 54. 3.100 / 54. 3.100 libavfilter 3. 23.102 / 3. 23.102 libswscale 2. 1.102 / 2. 1.102 libswresample 0. 17.101 / 0. 17.101 libpostproc 52. 2.100 / 52. 2.100 [mov,mp4,m4a,3gp,3g2,mj2 @ 000000000220f4e0] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100 [mov,mp4,m4a,3gp,3g2,mj2 @ 000000000220f4e0] File position before avformat_find_stream_info() is 19713983542 [mov,mp4,m4a,3gp,3g2,mj2 @ 000000000220f4e0] All info found [mov,mp4,m4a,3gp,3g2,mj2 @ 000000000220f4e0] File position after avformat_find_stream_info() is 3010976 Guessed Channel Layout for Input Stream #0.1 : mono Guessed Channel Layout for Input Stream #0.2 : mono Guessed Channel Layout for Input Stream #0.3 : mono Guessed Channel Layout for Input Stream #0.4 : mono Guessed Channel Layout for Input Stream #0.5 : stereo Guessed Channel Layout for Input Stream #0.6 : stereo Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\Dev\Viaway\Files\ContentRelated\Torgashi1.mov': Metadata: creation_time : 2012-02-16 13:10:31 timecode : 00:00:59:19 Duration: 00:53:39.40, start: 0.202000, bitrate: 48987 kb/s Stream #0:0(eng), 21, 1/2500: Video: prores (apcn / 0x6E637061), yuv422p10le, 720x576, 39734 kb/s, 25 fps, 25 tbr, 2500 tbn, 2500 tbc Metadata: creation_time : 2012-02-16 14:04:20 handler_name : Apple Alias Data Handler Stream #0:1(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:2(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:3(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:4(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, mono, s32, 1152 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:5(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:6(eng), 22, 1/48000: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32, 2304 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:7(eng), 0, 1/2500: Data: none (tmcd / 0x64636D74) Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler timecode : 00:00:59:19 [buffer @ 0000000005fa74a0] Setting entry with key 'video_size' to value '720x576' [buffer @ 0000000005fa74a0] Setting entry with key 'pix_fmt' to value '74' [buffer @ 0000000005fa74a0] Setting entry with key 'time_base' to value '1/2500' [buffer @ 0000000005fa74a0] Setting entry with key 'pixel_aspect' to value '0/1' [buffer @ 0000000005fa74a0] Setting entry with key 'sws_param' to value 'flags=2' [buffer @ 0000000005fa74a0] Setting entry with key 'frame_rate' to value '25/1' [graph 0 input from stream 0:0 @ 0000000005db2240] w:720 h:576 pixfmt:yuv422p10le tb:1/2500 fr:25/1 sar:0/1 sws_param:flags=2 [scale @ 0000000005fa88c0] Setting 'w' to value '640' [scale @ 0000000005fa88c0] Setting 'h' to value '360' [scale @ 0000000005fa88c0] Setting 'flags' to value '0x4' [scaler for output stream 0:0 @ 0000000005db2360] w:640 h:360 flags:'0x4' interl:0 [scaler for output stream 0:0 @ 0000000005db2360] picking yuv422p out of 4 ref:yuv422p10le alpha:0 [scaler for output stream 0:0 @ 0000000005db2360] w:720 h:576 fmt:yuv422p10le sar:0/1 -> w:640 h:360 fmt:yuv422p sar:0/1 flags:0x4 [abuffer @ 0000000004428240] Setting entry with key 'time_base' to value '1/48000' [abuffer @ 0000000004428240] Setting entry with key 'sample_rate' to value '48000' [abuffer @ 0000000004428240] Setting entry with key 'sample_fmt' to value 's32' [abuffer @ 0000000004428240] Setting entry with key 'channel_layout' to value '0x4' [graph 1 input from stream 0:1 @ 0000000005db2500] tb:1/48000 samplefmt:s32 samplerate:48000 chlayout:0x4 [aformat @ 000000000444c3a0] Setting entry with key 'sample_fmts' to value 'fltp' [aformat @ 000000000444c3a0] Setting entry with key 'sample_rates' to value '96000,88200,64000,48000,44100,32000,24000,22050,16000,12000,11025,8000,7350' [audio format for output stream 0:1 @ 0000000005db2620] auto-inserting filter 'auto-inserted resampler 0' between the filter 'Parsed_anull_0' and the filter 'audio format for output stream 0:1' [auto-inserted resampler 0 @ 0000000005db26c0] chl:mono fmt:s32 r:48000Hz -> chl:mono fmt:fltp r:48000Hz [abuffer @ 00000000044287e0] Setting entry with key 'time_base' to value '1/48000' [abuffer @ 00000000044287e0] Setting entry with key 'sample_rate' to value '48000' [abuffer @ 00000000044287e0] Setting entry with key 'sample_fmt' to value 's32' [abuffer @ 00000000044287e0] Setting entry with key 'channel_layout' to value '0x4' [graph 2 input from stream 0:2 @ 0000000005db27e0] tb:1/48000 samplefmt:s32 samplerate:48000 chlayout:0x4 [aformat @ 000000000444c7a0] Setting entry with key 'sample_fmts' to value 'fltp' [aformat @ 000000000444c7a0] Setting entry with key 'sample_rates' to value '96000,88200,64000,48000,44100,32000,24000,22050,16000,12000,11025,8000,7350' [audio format for output stream 0:2 @ 0000000005db2900] auto-inserting filter 'auto-inserted resampler 0' between the filter 'Parsed_anull_0' and the filter 'audio format for output stream 0:2' [auto-inserted resampler 0 @ 0000000005db2980] chl:mono fmt:s32 r:48000Hz -> chl:mono fmt:fltp r:48000Hz [libx264 @ 000000000461f6c0] using mv_range_thread = 24 [libx264 @ 000000000461f6c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.2 AVX [libx264 @ 000000000461f6c0] profile High 4:2:2, level 3.0, 4:2:2 8-bit [libx264 @ 000000000461f6c0] 264 - core 128 r2216 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=-2 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=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=abr mbtree=1 bitrate=704 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 [prores @ 000000000030c8c0] detected 4 logical cores Output #0, mp4, to 'C:\Dev\Viaway\Files\ContentRelated\Torgashi1.mp4': Metadata: timecode : 00:00:59:19 encoder : Lavf54.37.100 Stream #0:0(eng), 0, 1/12800: Video: h264 ([33][0][0][0] / 0x0021), yuv422p, 640x360, q=-1--1, 704 kb/s, 12800 tbn, 25 tbc Metadata: creation_time : 2012-02-16 14:04:20 handler_name : Apple Alias Data Handler Stream #0:1(eng), 0, 1/48000: Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, mono, fltp, 128 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream #0:2(eng), 0, 1/48000: Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, mono, fltp, 128 kb/s Metadata: creation_time : 2012-02-16 14:04:21 handler_name : Apple Alias Data Handler Stream mapping: Stream #0:0 -> #0:0 (prores -> libx264) Stream #0:1 -> #0:1 (pcm_s24le -> aac) Stream #0:2 -> #0:2 (pcm_s24le -> aac) Press [q] to stop, [?] for help *** 2 dup! [libx264 @ 000000000461f6c0] frame= 0 QP=17.66 NAL=3 Slice:I Poc:0 I:920 P:0 SKIP:0 size=94 bytes [rtp @ 00000000085cfde0] Sending NAL 6 of len 701 M=0 [rtp @ 00000000085cfde0] Sending NAL 5 of len 90 M=1 [libx264 @ 000000000461f6c0] frame= 1 QP=31.00 NAL=2 Slice:P Poc:8 I:0 P:0 SKIP:920 size=18 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 14 M=1 [libx264 @ 000000000461f6c0] frame= 2 QP=31.00 NAL=2 Slice:B Poc:4 I:0 P:0 SKIP:920 size=17 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 13 M=1 [libx264 @ 000000000461f6c0] frame= 3 QP=31.00 NAL=0 Slice:B Poc:2 I:0 P:0 SKIP:920 size=17 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 13 M=1 [libx264 @ 000000000461f6c0] frame= 4 QP=31.00 NAL=0 Slice:B Poc:6 I:0 P:0 SKIP:920 size=17 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 13 M=1 [libx264 @ 000000000461f6c0] frame= 5 QP=25.94 NAL=2 Slice:P Poc:16 I:200 P:4 SKIP:716 size=1504 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1500 M=1 [rtp @ 00000000085cfde0] NAL size 1500 > 1438 [libx264 @ 000000000461f6c0] frame= 6 QP=26.41 NAL=2 Slice:B Poc:12 I:32 P:121 SKIP:767 size=671 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 667 M=1 [libx264 @ 000000000461f6c0] frame= 7 QP=29.03 NAL=0 Slice:B Poc:10 I:3 P:102 SKIP:813 size=341 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 337 M=1 [libx264 @ 000000000461f6c0] frame= 8 QP=28.73 NAL=0 Slice:B Poc:14 I:16 P:125 SKIP:779 size=611 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 607 M=1 [libx264 @ 000000000461f6c0] frame= 9 QP=21.82 NAL=2 Slice:P Poc:20 I:53 P:222 SKIP:645 size=1537 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1533 M=1 [rtp @ 00000000085cfde0] NAL size 1533 > 1438 [libx264 @ 000000000461f6c0] frame= 10 QP=25.95 NAL=0 Slice:B Poc:18 I:3 P:104 SKIP:812 size=351 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 347 M=1 [libx264 @ 000000000461f6c0] frame= 11 QP=12.76 NAL=2 Slice:P Poc:22 I:659 P:233 SKIP:28 size=6459 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6455 M=1 [rtp @ 00000000085cfde0] NAL size 6455 > 1438 [libx264 @ 000000000461f6c0] frame= 12 QP=10.00 NAL=2 Slice:P Poc:24 I:458 P:308 SKIP:154 size=14290 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 14286 M=1 [rtp @ 00000000085cfde0] NAL size 14286 > 1438 frame= 63 fps=0.0 q=16.0 size= 36kB time=00:00:02.00 bitrate= 146.9kbits/s dup=2 drop=0 frame= 13 QP=10.65 NAL=2 Slice:P Poc:26 I:154 P:393 SKIP:373 size=14751 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 14747 M=1 [rtp @ 00000000085cfde0] NAL size 14747 > 1438 [libx264 @ 000000000461f6c0] frame= 14 QP=10.08 NAL=2 Slice:P Poc:28 I:141 P:480 SKIP:299 size=18724 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 18720 M=1 [rtp @ 00000000085cfde0] NAL size 18720 > 1438 [libx264 @ 000000000461f6c0] frame= 15 QP=11.02 NAL=2 Slice:P Poc:30 I:134 P:515 SKIP:271 size=22398 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 22394 M=1 [rtp @ 00000000085cfde0] NAL size 22394 > 1438 [libx264 @ 000000000461f6c0] frame= 16 QP=10.72 NAL=2 Slice:P Poc:32 I:191 P:729 SKIP:0 size=29385 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 29381 M=1 [rtp @ 00000000085cfde0] NAL size 29381 > 1438 [libx264 @ 000000000461f6c0] frame= 17 QP=12.31 NAL=2 Slice:P Poc:34 I:108 P:569 SKIP:243 size=25340 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 25336 M=1 [rtp @ 00000000085cfde0] NAL size 25336 > 1438 [libx264 @ 000000000461f6c0] frame= 18 QP=14.74 NAL=2 Slice:P Poc:36 I:23 P:897 SKIP:0 size=18802 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 18798 M=1 [rtp @ 00000000085cfde0] NAL size 18798 > 1438 [libx264 @ 000000000461f6c0] frame= 19 QP=16.68 NAL=2 Slice:P Poc:38 I:59 P:695 SKIP:166 size=16704 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 16700 M=1 [rtp @ 00000000085cfde0] NAL size 16700 > 1438 [libx264 @ 000000000461f6c0] frame= 20 QP=18.67 NAL=2 Slice:P Poc:40 I:51 P:717 SKIP:152 size=13578 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 13574 M=1 [rtp @ 00000000085cfde0] NAL size 13574 > 1438 [libx264 @ 000000000461f6c0] frame= 21 QP=20.85 NAL=2 Slice:P Poc:42 I:40 P:743 SKIP:137 size=10763 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 10759 M=1 [rtp @ 00000000085cfde0] NAL size 10759 > 1438 [libx264 @ 000000000461f6c0] frame= 22 QP=23.09 NAL=2 Slice:P Poc:44 I:17 P:901 SKIP:2 size=7700 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 7696 M=1 [rtp @ 00000000085cfde0] NAL size 7696 > 1438 [libx264 @ 000000000461f6c0] frame= 23 QP=24.63 NAL=2 Slice:P Poc:46 I:27 P:888 SKIP:5 size=6433 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6429 M=1 [rtp @ 00000000085cfde0] NAL size 6429 > 1438 [libx264 @ 000000000461f6c0] frame= 24 QP=25.89 NAL=2 Slice:P Poc:50 I:62 P:857 SKIP:1 size=8455 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 8451 M=1 [rtp @ 00000000085cfde0] NAL size 8451 > 1438 [libx264 @ 000000000461f6c0] frame= 25 QP=27.78 NAL=0 Slice:B Poc:48 I:6 P:448 SKIP:436 size=2026 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2022 M=1 [rtp @ 00000000085cfde0] NAL size 2022 > 1438 [libx264 @ 000000000461f6c0] frame= 26 QP=28.12 NAL=2 Slice:P Poc:52 I:21 P:729 SKIP:170 size=4248 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4244 M=1 [rtp @ 00000000085cfde0] NAL size 4244 > 1438 [libx264 @ 000000000461f6c0] frame= 27 QP=28.68 NAL=2 Slice:P Poc:54 I:26 P:724 SKIP:170 size=4374 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4370 M=1 [rtp @ 00000000085cfde0] NAL size 4370 > 1438 [libx264 @ 000000000461f6c0] frame= 28 QP=28.76 NAL=2 Slice:P Poc:58 I:45 P:864 SKIP:11 size=5981 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5977 M=1 [rtp @ 00000000085cfde0] NAL size 5977 > 1438 [libx264 @ 000000000461f6c0] frame= 29 QP=31.64 NAL=0 Slice:B Poc:56 I:9 P:467 SKIP:430 size=1588 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1584 M=1 [rtp @ 00000000085cfde0] NAL size 1584 > 1438 [libx264 @ 000000000461f6c0] frame= 30 QP=30.62 NAL=2 Slice:P Poc:60 I:23 P:669 SKIP:228 size=3319 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3315 M=1 [rtp @ 00000000085cfde0] NAL size 3315 > 1438 [libx264 @ 000000000461f6c0] frame= 31 QP=29.85 NAL=2 Slice:P Poc:62 I:20 P:694 SKIP:206 size=3900 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3896 M=1 [rtp @ 00000000085cfde0] NAL size 3896 > 1438 [libx264 @ 000000000461f6c0] frame= 32 QP=30.14 NAL=2 Slice:P Poc:66 I:36 P:713 SKIP:171 size=4768 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4764 M=1 [rtp @ 00000000085cfde0] NAL size 4764 > 1438 frame= 83 fps= 81 q=33.0 size= 287kB time=00:00:03.00 bitrate= 783.2kbits/s dup=2 drop=0 frame= 33 QP=33.41 NAL=0 Slice:B Poc:64 I:1 P:484 SKIP:422 size=1306 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1302 M=1 [libx264 @ 000000000461f6c0] frame= 34 QP=30.37 NAL=2 Slice:P Poc:70 I:23 P:719 SKIP:178 size=4500 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4496 M=1 [rtp @ 00000000085cfde0] NAL size 4496 > 1438 [libx264 @ 000000000461f6c0] frame= 35 QP=33.53 NAL=0 Slice:B Poc:68 I:0 P:474 SKIP:439 size=1186 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1182 M=1 [libx264 @ 000000000461f6c0] frame= 36 QP=30.80 NAL=2 Slice:P Poc:74 I:31 P:691 SKIP:198 size=4545 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4541 M=1 [rtp @ 00000000085cfde0] NAL size 4541 > 1438 [libx264 @ 000000000461f6c0] frame= 37 QP=34.32 NAL=0 Slice:B Poc:72 I:1 P:440 SKIP:477 size=1084 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1080 M=1 [libx264 @ 000000000461f6c0] frame= 38 QP=31.17 NAL=2 Slice:P Poc:78 I:36 P:674 SKIP:210 size=4302 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4298 M=1 [rtp @ 00000000085cfde0] NAL size 4298 > 1438 [libx264 @ 000000000461f6c0] frame= 39 QP=33.63 NAL=0 Slice:B Poc:76 I:2 P:422 SKIP:485 size=1099 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1095 M=1 [libx264 @ 000000000461f6c0] frame= 40 QP=31.36 NAL=2 Slice:P Poc:82 I:40 P:669 SKIP:211 size=4053 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4049 M=1 [rtp @ 00000000085cfde0] NAL size 4049 > 1438 [libx264 @ 000000000461f6c0] frame= 41 QP=34.74 NAL=0 Slice:B Poc:80 I:0 P:422 SKIP:482 size=991 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 987 M=1 [libx264 @ 000000000461f6c0] frame= 42 QP=31.63 NAL=2 Slice:P Poc:86 I:33 P:656 SKIP:231 size=3627 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3623 M=1 [rtp @ 00000000085cfde0] NAL size 3623 > 1438 [libx264 @ 000000000461f6c0] frame= 43 QP=34.65 NAL=0 Slice:B Poc:84 I:1 P:402 SKIP:508 size=887 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 883 M=1 [libx264 @ 000000000461f6c0] frame= 44 QP=33.00 NAL=2 Slice:P Poc:90 I:27 P:636 SKIP:257 size=2734 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2730 M=1 [rtp @ 00000000085cfde0] NAL size 2730 > 1438 [libx264 @ 000000000461f6c0] frame= 45 QP=34.65 NAL=0 Slice:B Poc:88 I:0 P:438 SKIP:474 size=925 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 921 M=1 [libx264 @ 000000000461f6c0] frame= 46 QP=32.88 NAL=2 Slice:P Poc:92 I:234 P:670 SKIP:16 size=4887 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4883 M=1 [rtp @ 00000000085cfde0] NAL size 4883 > 1438 [libx264 @ 000000000461f6c0] frame= 47 QP=32.45 NAL=2 Slice:P Poc:94 I:339 P:577 SKIP:4 size=6104 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6100 M=1 [rtp @ 00000000085cfde0] NAL size 6100 > 1438 [libx264 @ 000000000461f6c0] frame= 48 QP=32.48 NAL=2 Slice:P Poc:96 I:291 P:601 SKIP:28 size=6343 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6339 M=1 [rtp @ 00000000085cfde0] NAL size 6339 > 1438 [libx264 @ 000000000461f6c0] frame= 49 QP=32.04 NAL=2 Slice:P Poc:98 I:279 P:612 SKIP:29 size=6389 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6385 M=1 [rtp @ 00000000085cfde0] NAL size 6385 > 1438 [libx264 @ 000000000461f6c0] frame= 50 QP=31.68 NAL=2 Slice:P Poc:100 I:267 P:636 SKIP:17 size=6177 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6173 M=1 [rtp @ 00000000085cfde0] NAL size 6173 > 1438 [libx264 @ 000000000461f6c0] frame= 51 QP=31.19 NAL=2 Slice:P Poc:102 I:194 P:713 SKIP:13 size=5748 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5744 M=1 [rtp @ 00000000085cfde0] NAL size 5744 > 1438 [libx264 @ 000000000461f6c0] frame= 52 QP=31.21 NAL=2 Slice:P Poc:104 I:186 P:717 SKIP:17 size=5232 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5228 M=1 [rtp @ 00000000085cfde0] NAL size 5228 > 1438 [libx264 @ 000000000461f6c0] frame= 53 QP=31.59 NAL=2 Slice:P Poc:106 I:182 P:716 SKIP:22 size=4613 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4609 M=1 [rtp @ 00000000085cfde0] NAL size 4609 > 1438 [libx264 @ 000000000461f6c0] frame= 54 QP=31.86 NAL=2 Slice:P Poc:108 I:158 P:747 SKIP:15 size=4308 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4304 M=1 [rtp @ 00000000085cfde0] NAL size 4304 > 1438 [libx264 @ 000000000461f6c0] frame= 55 QP=32.58 NAL=2 Slice:P Poc:112 I:113 P:650 SKIP:157 size=4223 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4219 M=1 [rtp @ 00000000085cfde0] NAL size 4219 > 1438 frame= 106 fps= 69 q=34.0 size= 403kB time=00:00:04.00 bitrate= 823.2kbits/s dup=2 drop=0 frame= 56 QP=34.79 NAL=0 Slice:B Poc:110 I:1 P:484 SKIP:427 size=1500 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1496 M=1 [rtp @ 00000000085cfde0] NAL size 1496 > 1438 [libx264 @ 000000000461f6c0] frame= 57 QP=33.03 NAL=2 Slice:P Poc:116 I:99 P:665 SKIP:156 size=4666 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4662 M=1 [rtp @ 00000000085cfde0] NAL size 4662 > 1438 [libx264 @ 000000000461f6c0] frame= 58 QP=35.21 NAL=0 Slice:B Poc:114 I:3 P:448 SKIP:459 size=1441 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1437 M=1 [libx264 @ 000000000461f6c0] frame= 59 QP=33.51 NAL=2 Slice:P Poc:120 I:104 P:655 SKIP:161 size=4496 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4492 M=1 [rtp @ 00000000085cfde0] NAL size 4492 > 1438 [libx264 @ 000000000461f6c0] frame= 60 QP=35.77 NAL=0 Slice:B Poc:118 I:5 P:461 SKIP:441 size=1518 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1514 M=1 [rtp @ 00000000085cfde0] NAL size 1514 > 1438 [libx264 @ 000000000461f6c0] frame= 61 QP=34.38 NAL=2 Slice:P Poc:124 I:127 P:629 SKIP:164 size=4390 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4386 M=1 [rtp @ 00000000085cfde0] NAL size 4386 > 1438 [libx264 @ 000000000461f6c0] frame= 62 QP=35.74 NAL=0 Slice:B Poc:122 I:9 P:496 SKIP:408 size=1727 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1723 M=1 [rtp @ 00000000085cfde0] NAL size 1723 > 1438 [libx264 @ 000000000461f6c0] frame= 63 QP=34.06 NAL=2 Slice:P Poc:126 I:79 P:634 SKIP:207 size=3220 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3216 M=1 [rtp @ 00000000085cfde0] NAL size 3216 > 1438 [libx264 @ 000000000461f6c0] frame= 64 QP=33.95 NAL=2 Slice:P Poc:128 I:73 P:643 SKIP:204 size=3273 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3269 M=1 [rtp @ 00000000085cfde0] NAL size 3269 > 1438 [libx264 @ 000000000461f6c0] frame= 65 QP=34.48 NAL=2 Slice:P Poc:130 I:87 P:623 SKIP:210 size=3405 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3401 M=1 [rtp @ 00000000085cfde0] NAL size 3401 > 1438 [libx264 @ 000000000461f6c0] frame= 66 QP=34.16 NAL=2 Slice:P Poc:132 I:81 P:640 SKIP:199 size=3541 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3537 M=1 [rtp @ 00000000085cfde0] NAL size 3537 > 1438 [libx264 @ 000000000461f6c0] frame= 67 QP=34.17 NAL=2 Slice:P Poc:134 I:97 P:635 SKIP:188 size=3400 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3396 M=1 [rtp @ 00000000085cfde0] NAL size 3396 > 1438 [libx264 @ 000000000461f6c0] frame= 68 QP=33.88 NAL=2 Slice:P Poc:136 I:64 P:649 SKIP:207 size=3375 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3371 M=1 [rtp @ 00000000085cfde0] NAL size 3371 > 1438 [libx264 @ 000000000461f6c0] frame= 69 QP=33.87 NAL=2 Slice:P Poc:140 I:162 P:652 SKIP:106 size=4550 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4546 M=1 [rtp @ 00000000085cfde0] NAL size 4546 > 1438 [libx264 @ 000000000461f6c0] frame= 70 QP=36.39 NAL=0 Slice:B Poc:138 I:13 P:543 SKIP:355 size=1774 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1770 M=1 [rtp @ 00000000085cfde0] NAL size 1770 > 1438 [libx264 @ 000000000461f6c0] frame= 71 QP=34.09 NAL=2 Slice:P Poc:142 I:75 P:660 SKIP:185 size=3264 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3260 M=1 [rtp @ 00000000085cfde0] NAL size 3260 > 1438 [libx264 @ 000000000461f6c0] frame= 72 QP=33.79 NAL=2 Slice:P Poc:146 I:140 P:679 SKIP:101 size=4444 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4440 M=1 [rtp @ 00000000085cfde0] NAL size 4440 > 1438 [libx264 @ 000000000461f6c0] frame= 73 QP=35.99 NAL=0 Slice:B Poc:144 I:8 P:563 SKIP:340 size=1849 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1845 M=1 [rtp @ 00000000085cfde0] NAL size 1845 > 1438 [libx264 @ 000000000461f6c0] frame= 74 QP=33.82 NAL=2 Slice:P Poc:150 I:131 P:663 SKIP:126 size=4148 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4144 M=1 [rtp @ 00000000085cfde0] NAL size 4144 > 1438 No more output streams to write to, finishing. [libx264 @ 000000000461f6c0] frame= 75 QP=36.58 NAL=0 Slice:B Poc:148 I:5 P:517 SKIP:384 size=1602 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1598 M=1 [rtp @ 00000000085cfde0] NAL size 1598 > 1438 [libx264 @ 000000000461f6c0] frame= 76 QP=34.37 NAL=2 Slice:P Poc:154 I:111 P:674 SKIP:135 size=4111 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4107 M=1 [rtp @ 00000000085cfde0] NAL size 4107 > 1438 [libx264 @ 000000000461f6c0] frame= 77 QP=36.34 NAL=0 Slice:B Poc:152 I:5 P:512 SKIP:383 size=1637 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1633 M=1 [rtp @ 00000000085cfde0] NAL size 1633 > 1438 [libx264 @ 000000000461f6c0] frame= 78 QP=33.91 NAL=2 Slice:P Poc:156 I:42 P:683 SKIP:195 size=3024 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3020 M=1 [rtp @ 00000000085cfde0] NAL size 3020 > 1438 [libx264 @ 000000000461f6c0] frame= 79 QP=34.03 NAL=2 Slice:P Poc:160 I:111 P:673 SKIP:136 size=4273 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4269 M=1 [rtp @ 00000000085cfde0] NAL size 4269 > 1438 [libx264 @ 000000000461f6c0] scene cut at 91 Icost:365026 Pcost:306792 ratio:0.1595 bias:0.1880 gop:91 (imb:505 pmb:293) [libx264 @ 000000000461f6c0] frame= 80 QP=36.77 NAL=0 Slice:B Poc:158 I:8 P:495 SKIP:402 size=1540 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1536 M=1 [rtp @ 00000000085cfde0] NAL size 1536 > 1438 [libx264 @ 000000000461f6c0] frame= 81 QP=34.03 NAL=2 Slice:P Poc:164 I:109 P:629 SKIP:182 size=4204 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4200 M=1 [rtp @ 00000000085cfde0] NAL size 4200 > 1438 [libx264 @ 000000000461f6c0] frame= 82 QP=36.43 NAL=0 Slice:B Poc:162 I:7 P:451 SKIP:443 size=1430 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1426 M=1 [libx264 @ 000000000461f6c0] frame= 83 QP=33.75 NAL=2 Slice:P Poc:168 I:174 P:614 SKIP:132 size=4713 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4709 M=1 [rtp @ 00000000085cfde0] NAL size 4709 > 1438 [libx264 @ 000000000461f6c0] frame= 84 QP=36.16 NAL=0 Slice:B Poc:166 I:9 P:467 SKIP:436 size=1429 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1425 M=1 [libx264 @ 000000000461f6c0] frame= 85 QP=34.48 NAL=2 Slice:P Poc:172 I:152 P:628 SKIP:140 size=4297 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4293 M=1 [rtp @ 00000000085cfde0] NAL size 4293 > 1438 [libx264 @ 000000000461f6c0] frame= 86 QP=36.34 NAL=0 Slice:B Poc:170 I:4 P:412 SKIP:491 size=1276 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1272 M=1 [libx264 @ 000000000461f6c0] frame= 87 QP=35.43 NAL=2 Slice:P Poc:176 I:124 P:626 SKIP:170 size=3543 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3539 M=1 [rtp @ 00000000085cfde0] NAL size 3539 > 1438 [libx264 @ 000000000461f6c0] frame= 88 QP=36.39 NAL=0 Slice:B Poc:174 I:6 P:415 SKIP:489 size=1235 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 1231 M=1 [libx264 @ 000000000461f6c0] frame= 89 QP=34.89 NAL=2 Slice:P Poc:178 I:221 P:662 SKIP:37 size=3927 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3923 M=1 [rtp @ 00000000085cfde0] NAL size 3923 > 1438 [libx264 @ 000000000461f6c0] frame= 90 QP=34.48 NAL=2 Slice:P Poc:180 I:421 P:448 SKIP:51 size=5005 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5001 M=1 [rtp @ 00000000085cfde0] NAL size 5001 > 1438 [libx264 @ 000000000461f6c0] frame= 91 QP=30.74 NAL=3 Slice:I Poc:0 I:920 P:0 SKIP:0 size=9382 bytes [rtp @ 00000000085cfde0] Sending NAL 5 of len 9378 M=1 [rtp @ 00000000085cfde0] NAL size 9378 > 1438 [libx264 @ 000000000461f6c0] frame= 92 QP=34.43 NAL=2 Slice:P Poc:2 I:268 P:550 SKIP:102 size=4233 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4229 M=1 [rtp @ 00000000085cfde0] NAL size 4229 > 1438 [libx264 @ 000000000461f6c0] frame= 93 QP=34.39 NAL=2 Slice:P Poc:4 I:303 P:583 SKIP:34 size=4979 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4975 M=1 [rtp @ 00000000085cfde0] NAL size 4975 > 1438 [libx264 @ 000000000461f6c0] frame= 94 QP=34.25 NAL=2 Slice:P Poc:6 I:307 P:590 SKIP:23 size=5346 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5342 M=1 [rtp @ 00000000085cfde0] NAL size 5342 > 1438 [libx264 @ 000000000461f6c0] frame= 95 QP=34.14 NAL=2 Slice:P Poc:8 I:283 P:627 SKIP:10 size=5314 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 5310 M=1 [rtp @ 00000000085cfde0] NAL size 5310 > 1438 [libx264 @ 000000000461f6c0] frame= 96 QP=34.15 NAL=2 Slice:P Poc:10 I:440 P:426 SKIP:54 size=6247 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 6243 M=1 [rtp @ 00000000085cfde0] NAL size 6243 > 1438 [libx264 @ 000000000461f6c0] frame= 97 QP=34.71 NAL=2 Slice:P Poc:12 I:173 P:569 SKIP:178 size=4931 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4927 M=1 [rtp @ 00000000085cfde0] NAL size 4927 > 1438 [libx264 @ 000000000461f6c0] frame= 98 QP=35.14 NAL=2 Slice:P Poc:14 I:138 P:583 SKIP:199 size=4720 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4716 M=1 [rtp @ 00000000085cfde0] NAL size 4716 > 1438 [libx264 @ 000000000461f6c0] frame= 99 QP=35.03 NAL=2 Slice:P Poc:16 I:109 P:620 SKIP:191 size=4765 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4761 M=1 [rtp @ 00000000085cfde0] NAL size 4761 > 1438 [libx264 @ 000000000461f6c0] frame= 100 QP=35.23 NAL=2 Slice:P Poc:18 I:107 P:605 SKIP:208 size=4736 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4732 M=1 [rtp @ 00000000085cfde0] NAL size 4732 > 1438 [libx264 @ 000000000461f6c0] frame= 101 QP=35.25 NAL=2 Slice:P Poc:20 I:126 P:593 SKIP:201 size=4834 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4830 M=1 [rtp @ 00000000085cfde0] NAL size 4830 > 1438 [libx264 @ 000000000461f6c0] frame= 102 QP=35.61 NAL=2 Slice:P Poc:22 I:130 P:552 SKIP:238 size=4498 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4494 M=1 [rtp @ 00000000085cfde0] NAL size 4494 > 1438 [libx264 @ 000000000461f6c0] frame= 103 QP=35.49 NAL=2 Slice:P Poc:24 I:141 P:597 SKIP:182 size=4523 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4519 M=1 [rtp @ 00000000085cfde0] NAL size 4519 > 1438 [libx264 @ 000000000461f6c0] frame= 104 QP=35.59 NAL=2 Slice:P Poc:26 I:111 P:591 SKIP:218 size=4209 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4205 M=1 [rtp @ 00000000085cfde0] NAL size 4205 > 1438 [libx264 @ 000000000461f6c0] frame= 105 QP=35.55 NAL=2 Slice:P Poc:28 I:88 P:615 SKIP:217 size=4018 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4014 M=1 [rtp @ 00000000085cfde0] NAL size 4014 > 1438 [libx264 @ 000000000461f6c0] frame= 106 QP=35.49 NAL=2 Slice:P Poc:30 I:116 P:585 SKIP:219 size=4048 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4044 M=1 [rtp @ 00000000085cfde0] NAL size 4044 > 1438 [libx264 @ 000000000461f6c0] frame= 107 QP=35.39 NAL=2 Slice:P Poc:32 I:94 P:609 SKIP:217 size=3805 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3801 M=1 [rtp @ 00000000085cfde0] NAL size 3801 > 1438 [libx264 @ 000000000461f6c0] frame= 108 QP=35.48 NAL=2 Slice:P Poc:34 I:99 P:600 SKIP:221 size=3890 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3886 M=1 [rtp @ 00000000085cfde0] NAL size 3886 > 1438 [libx264 @ 000000000461f6c0] frame= 109 QP=35.27 NAL=2 Slice:P Poc:36 I:79 P:643 SKIP:198 size=3950 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3946 M=1 [rtp @ 00000000085cfde0] NAL size 3946 > 1438 [libx264 @ 000000000461f6c0] frame= 110 QP=35.41 NAL=2 Slice:P Poc:38 I:76 P:624 SKIP:220 size=3699 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3695 M=1 [rtp @ 00000000085cfde0] NAL size 3695 > 1438 [libx264 @ 000000000461f6c0] frame= 111 QP=35.02 NAL=2 Slice:P Poc:40 I:68 P:638 SKIP:214 size=3640 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3636 M=1 [rtp @ 00000000085cfde0] NAL size 3636 > 1438 [libx264 @ 000000000461f6c0] frame= 112 QP=35.22 NAL=2 Slice:P Poc:42 I:53 P:613 SKIP:254 size=3415 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3411 M=1 [rtp @ 00000000085cfde0] NAL size 3411 > 1438 [libx264 @ 000000000461f6c0] frame= 113 QP=35.29 NAL=2 Slice:P Poc:44 I:57 P:597 SKIP:266 size=3388 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3384 M=1 [rtp @ 00000000085cfde0] NAL size 3384 > 1438 [libx264 @ 000000000461f6c0] frame= 114 QP=35.63 NAL=2 Slice:P Poc:46 I:56 P:612 SKIP:252 size=3567 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3563 M=1 [rtp @ 00000000085cfde0] NAL size 3563 > 1438 [libx264 @ 000000000461f6c0] frame= 115 QP=35.40 NAL=2 Slice:P Poc:48 I:49 P:618 SKIP:253 size=3500 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3496 M=1 [rtp @ 00000000085cfde0] NAL size 3496 > 1438 [libx264 @ 000000000461f6c0] frame= 116 QP=34.95 NAL=2 Slice:P Poc:50 I:57 P:636 SKIP:227 size=3499 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3495 M=1 [rtp @ 00000000085cfde0] NAL size 3495 > 1438 [libx264 @ 000000000461f6c0] frame= 117 QP=35.04 NAL=2 Slice:P Poc:52 I:40 P:643 SKIP:237 size=3468 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3464 M=1 [rtp @ 00000000085cfde0] NAL size 3464 > 1438 [libx264 @ 000000000461f6c0] frame= 118 QP=34.91 NAL=2 Slice:P Poc:56 I:83 P:651 SKIP:186 size=4404 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 4400 M=1 [rtp @ 00000000085cfde0] NAL size 4400 > 1438 [libx264 @ 000000000461f6c0] frame= 119 QP=36.84 NAL=0 Slice:B Poc:54 I:4 P:528 SKIP:365 size=2209 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2205 M=1 [rtp @ 00000000085cfde0] NAL size 2205 > 1438 [libx264 @ 000000000461f6c0] frame= 120 QP=35.31 NAL=2 Slice:P Poc:58 I:33 P:617 SKIP:270 size=3016 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3012 M=1 [rtp @ 00000000085cfde0] NAL size 3012 > 1438 [libx264 @ 000000000461f6c0] frame= 121 QP=34.93 NAL=2 Slice:P Poc:60 I:35 P:642 SKIP:243 size=3024 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 3020 M=1 [rtp @ 00000000085cfde0] NAL size 3020 > 1438 [libx264 @ 000000000461f6c0] frame= 122 QP=35.07 NAL=2 Slice:P Poc:62 I:24 P:668 SKIP:228 size=2859 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2855 M=1 [rtp @ 00000000085cfde0] NAL size 2855 > 1438 [libx264 @ 000000000461f6c0] frame= 123 QP=35.01 NAL=2 Slice:P Poc:64 I:24 P:620 SKIP:276 size=2661 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2657 M=1 [rtp @ 00000000085cfde0] NAL size 2657 > 1438 [libx264 @ 000000000461f6c0] frame= 124 QP=36.34 NAL=2 Slice:P Poc:66 I:25 P:553 SKIP:342 size=2106 bytes [rtp @ 00000000085cfde0] Sending NAL 1 of len 2102 M=1 [rtp @ 00000000085cfde0] NAL size 2102 > 1438 frame= 125 fps= 49 q=-1.0 Lsize= 757kB time=00:00:05.01 bitrate=1238.2kbits/s dup=2 drop=0 video:570kB audio:145kB subtitle:0 global headers:0kB muxing overhead 5.957080% [libx264 @ 000000000461f6c0] frame I:2 Avg QP:24.20 size: 4738 [libx264 @ 000000000461f6c0] frame P:93 Avg QP:30.75 size: 5783 [libx264 @ 000000000461f6c0] frame B:30 Avg QP:33.57 size: 1176 [libx264 @ 000000000461f6c0] consecutive B-frames: 55.2% 38.4% 0.0% 6.4% [libx264 @ 000000000461f6c0] mb I I16..4: 11.4% 82.2% 6.4% [libx264 @ 000000000461f6c0] mb P I16..4: 4.9% 7.1% 1.5% P16..4: 45.0% 15.7% 6.6% 0.0% 0.0% skip:19.2% [libx264 @ 000000000461f6c0] mb B I16..4: 0.3% 0.3% 0.1% B16..8: 34.7% 4.9% 0.5% direct: 1.8% skip:57.6% L0:31.5% L1:58.6% BI: 9.9% [libx264 @ 000000000461f6c0] final ratefactor: 28.11 [libx264 @ 000000000461f6c0] 8x8 transform intra:56.6% inter:68.4% [libx264 @ 000000000461f6c0] coded y,uvDC,uvAC intra: 41.0% 64.1% 34.3% inter: 18.1% 31.4% 7.0% [libx264 @ 000000000461f6c0] i16 v,h,dc,p: 9% 51% 4% 36% [libx264 @ 000000000461f6c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 7% 23% 43% 3% 4% 3% 7% 3% 7% [libx264 @ 000000000461f6c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 9% 25% 41% 3% 6% 3% 6% 3% 4% [libx264 @ 000000000461f6c0] i8c dc,h,v,p: 48% 30% 10% 12% [libx264 @ 000000000461f6c0] Weighted P-Frames: Y:20.4% UV:12.9% [libx264 @ 000000000461f6c0] ref P L0: 60.4% 10.7% 20.8% 6.8% 1.3% [libx264 @ 000000000461f6c0] ref B L0: 91.0% 9.0% [libx264 @ 000000000461f6c0] ref B L1: 99.9% 0.1% [libx264 @ 000000000461f6c0] kb/s:932.06 [AVIOContext @ 000000000220fb40] Statistics: 27495780 bytes read, 18 seeks
comment:11 by , 12 years ago
Resolution: | worksforme |
---|---|
Status: | closed → reopened |
comment:12 by , 12 years ago
Resolution: | → worksforme |
---|---|
Status: | reopened → closed |
Replying to vkroutik:
I am back since the issue with MOV file is not resolved. While your suggestion on mapping audio with -map 0:0 -map 0:1 -map 0:2 or -map 0 -dn produce the file with sound and VLC player able to play, none of the web players can play it, it also does not play on devices. Video is not showing!!!
But this is not the problem that you reported originally or do I misunderstand?
comment:13 by , 12 years ago
While I have no idea what "web player" may be, I suspect it does not know how to play yuv422:
Stream #0:0(eng), 0, 1/12800: Video: h264 ([33][0][0][0] / 0x0021), yuv422p
Please understand that this bug tracker is not a support forum, it is for reporting bugs.
comment:14 by , 12 years ago
Thank you, I am here to make ffmpeg the best product/tool on the planet, so we run into mov files which are not produced with the world in mind!
I do have a few suggestions, mov files are not supporting baseline profile, not sure if its a bug or a feature, documentation would help. Since Apple and QT seems to be a popular choice for some reason more examples on mov conversion and default processing to make mov file friendly to mp4 world. One hopes mov just dies, but not yet, as iphones seems to be popping up like mushrooms around the world.
At the end of a night you are right, most places on earth do not understand yuv422p - WHY EVEN SUPPORT IT.
Bottom line, I think a default setting for taking care of MOV files into mp4 happy files would be a great feature.
comment:15 by , 12 years ago
Type: | defect → enhancement |
---|
comment:16 by , 12 years ago
Type: | enhancement → defect |
---|
You originally reported that FFmpeg "looses" audio when encoding, this did not sound like an enhancement request.
If you believe that FFmpeg contains a bug regarding writing h264 in mov, please open a new ticket, I don't think there is a bug (apart from the fact that it is not true, do you think the mov specification mentions that only baseline is supported?), but I may absolutely be wrong.
If you need support, please read http://ffmpeg.org/contact.html
comment:17 by , 12 years ago
Yes, default selection of tracks in the file provided looses audio when transcoded. One need to by hand to select specific streams out of the list. I guess the bug is autoselection is not perfect, but who is?
comment:18 by , 12 years ago
As explained above, the autoselection chooses a stream with the highest bit-rate which is probably a good thing to do, in your sample, all audio streams with the highest bit-rate are silent.
I believe that the sample does not contain any information about the actual channel layout or the usefulness of the audio channels, if you have any information that I am wrong, please (share the information and) reopen the ticket!
I can provide first 30 seconds of the file which fails, how do I upload?