[FFmpeg-user] Multithreaded multioutput problem
Deron
deron at pagestream.org
Mon Apr 20 17:43:19 CEST 2015
Another user has contacted me with the exact same problem hoping that I
stumbled on a solution for the below problem. I did not, so I am adding
some more extensive log output in hopes that someone might recongize the
source of the problem.
Thanks,
Deron
On 1/25/15 8:41 AM, Deron wrote:
> On 1/23/15 2:30 PM, Deron wrote:
>> On 1/23/15 9:28 AM, Deron wrote:
>>> I would like to generate 4 different HLS (sub)streams from a single
>>> DVB capture, but ffmpeg fails to keep up with more than 2. Yes, I
>>> have the CPU power and I'm writing to a ram disk (or SSD, doesn't
>>> matter). I have a dual tuner capture card and can generate two
>>> different HLS substreams per tuner (total of 4) with plenty of CPU
>>> left to burn.
>>>
>>> I would guess it is some kind of thread limit but I can't seem to
>>> get past it. Any suggestions? Below is an example command and
>>> output. If I cut out one of the outputs, it works fine.
>>>
>>> Thanks for your suggestions!
>>>
>>> Deron
>>>
>>
>> Reading this, I obviously did not make the problem very clear.
>>
>> I am trying to do this (simplified):
>>
>> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -b:v 1200k
>> "med.m3u8" -b:v 600k "low.m3u8" -vn "audio.m3u8"
>>
>> And it fails with: /dev/dvb/adapter0/dvr0: Value too large for
>> defined data type
>>
>> But if I remove any 2 outputs like:
>>
>> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -vn "audio.m3u8"
>>
>> It works. I can see fps is very close (not sure if it is a because of
>> HLS working in "real time" or some thread limitation), but cpu usage
>> is very light.
>>
>> Since I have 2 adapters, I can actually run
>>
>> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -b:v 1200k
>> "med.m3u8"
>> ffmpeg -i "/dev/dvb/adapter1/dvr0" -b:v 600k "low.m3u8" -vn "audio.m3u8"
>>
>> And that runs fine (again with light cpu usage). Obviously a
>> threading issue. What can I do to fix this?
>
> To further complicate maters, I tried copying 10 minutes of data to a
> file using:
>
> cp /dev/dvb/adapter0/dvr0 data.ts
>
> and then
>
> ffmpeg -i data.ts -b:v 2400k "hi.m3u8" -b:v 1200k "med.m3u8" -b:v 600k
> "low.m3u8" -vn "audio.m3u8"
>
> Which works. In fact, I can run 8 copies of this at the same time and
> it still runs faster than real time on this computer.
>
> where
>
> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -b:v 1200k
> "med.m3u8" -b:v 600k "low.m3u8" -vn "audio.m3u8"
>
> and
>
> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -b:v 1200k
> "med.m3u8"
>
> Fails as above (and below) with: /dev/dvb/adapter0/dvr0: Value too
> large for defined data type
>
> and
>
> ffmpeg -i "/dev/dvb/adapter0/dvr0" -b:v 2400k "hi.m3u8" -vn "audio.m3u8"
>
> Works.
>
> Does anyone have an idea on what could be causing this grief? What is
> kicking out this message? Could it be simply that ffmpeg can't get
> going fast enough and the dvb device is loosing initial data?? Ie, the
> first frame takes too long?
>
> Thanks,
>
> Deron
The below fails with (in about 15 seconds):
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]: Value
too large for defined data type
The data around the error is:
libx264 @ 0x25d77a0] frame= 123 QP=14.82 NAL=2 Slice:P Poc:6 I:20
P:1028 SKIP:2552 size=5107 bytes
*** 1 dup!
[libx264 @ 0x25d77a0] scene cut at 174 Icost:2049115 Pcost:2006553
ratio:0.0208 bias:0.1387 gop:54 (imb:3186 pmb:168)
[libx264 @ 0x246aca0] frame= 122 QP=21.41 NAL=2 Slice:P Poc:4 I:233
P:2646 SKIP:721 size=20496 bytes
[libx264 @ 0x246aca0] frame= 123 QP=22.14 NAL=2 Slice:P Poc:6 I:26
P:541 SKIP:3033 size=2346 bytes
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]: Value
too large for defined data type
[libx264 @ 0x246aca0] scene cut at 174 Icost:2049115 Pcost:2006553
ratio:0.0208 bias:0.1387 gop:54 (imb:3186 pmb:168)
[AVIOContext @ 0x27d36e0] Statistics: 0 seeks, 2 writeouts
Any suggestions?
Deron
ffmpeg -loglevel 30 -f lavfi -i
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]
-force_key_frames expr:gte\(t,n_forced*2\) -c:v libx264 -vf
scale=1280:720 -s 1280x720 -aspect 1280:720 -pix_fmt yuv420p -r 59.94
-preset veryfast -b:v 1200k -c:a libfaac -ar 48000 -ac 2 -af
volume=volume=11dB -flags:a -global_header -f hls -hls_time 2
-hls_allow_cache 0 -hls_list_size 10 -hls_wrap 20000 -hls_flags
delete_segments -hls_segment_filename
/var/www/html/stream/test/v.mid.%d.ts -y
/var/www/html/stream/test/v.mid.m3u8 -force_key_frames
expr:gte\(t,n_forced*2\) -sn -c:v libx264 -vf scale=1280:720 -s 1280x720
-aspect 1280:720 -pix_fmt yuv420p -r 59.94 -preset veryfast -b:v 600k
-c:a libfaac -ar 48000 -ac 2 -af volume=volume=11dB -flags:a
-global_header -f hls -hls_time 2 -hls_allow_cache 0 -hls_list_size 10
-hls_wrap 20000 -hls_flags delete_segments -hls_segment_filename
/var/www/html/stream/test/v.low.%d.ts -y
/var/www/html/stream/test/v.low.m3u8 -sn -vn -c:a libfaac -ar 32000 -ac
1 -af volume=volume=11dB -flags:a -global_header -f hls -hls_time 2
-hls_allow_cache 0 -hls_list_size 10 -hls_^Cap 20000 -hls_flags
delete_segments -hls_segment_filename
/var/www/html/stream/test/a.low.%d.ts -y
/var/www/html/stream/test/a.low.m3u8 -vf scale=426:240 -s 426x240
-aspect 426:240 -f image2 -vf fps=1 -strftime 1 -y
/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg
root at lisn-itn2:/home/deron/ffmpeg# ffmpeg -loglevel 100 -f lavfi -i
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]
-force_key_frames expr:gte\(t,n_forced*2\) -c:v libx264 -vf
scale=1280:720 -s 1280x720 -aspect 1280:720 -pix_fmt yuv420p -r 59.94
-preset veryfast -b:v 1200k -c:a libfaac -ar 48000 -ac 2 -af
volume=volume=11dB -flags:a -global_header -f hls -hls_time 2
-hls_allow_cache 0 -hls_list_size 10 -hls_wrap 20000 -hls_flags
delete_segments -hls_segment_filename
/var/www/html/stream/test/v.mid.%d.ts -y
/var/www/html/stream/test/v.mid.m3u8 -force_key_frames
expr:gte\(t,n_forced*2\) -sn -c:v libx264 -vf scale=1280:720 -s 1280x720
-aspect 1280:720 -pix_fmt yuv420p -r 59.94 -preset veryfast -b:v 600k
-c:a libfaac -ar 48000 -ac 2 -af volume=volume=11dB -flags:a
-global_header -f hls -hls_time 2 -hls_allow_cache 0 -hls_list_size 10
-hls_wrap 20000 -hls_flags delete_segments -hls_segment_filename
/var/www/html/stream/test/v.low.%d.ts -y
/var/www/html/stream/test/v.low.m3u8 -sn -vn -c:a libfaac -ar 32000 -ac
1 -af volume=volume=11dB -flags:a -global_header -f hls -hls_time 2
-hls_allow_cache 0 -hls_list_size 10 -hls_wrap 20000 -hls_flags
delete_segments -hls_segment_filename
/var/www/html/stream/test/a.low.%d.ts -y
/var/www/html/stream/test/a.low.m3u8 -vf scale=426:240 -s 426x240
-aspect 426:240 -f image2 -vf fps=1 -strftime 1 -y
/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg
ffmpeg version N-71425-gf4f3065 Copyright (c) 2000-2015 the FFmpeg
developers
built with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
configuration: --enable-shared --enable-gpl --enable-nonfree
--enable-libxvid --enable-libx264 --enable-libmp3lame --enable-libvorbis
--enable-libfaac --enable-libopenjpeg
libavutil 54. 22.101 / 54. 22.101
libavcodec 56. 34.100 / 56. 34.100
libavformat 56. 30.100 / 56. 30.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 14.100 / 5. 14.100
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 3.100 / 53. 3.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging
level) with argument '100'.
Reading option '-f' ... matched as option 'f' (force format) with
argument 'lavfi'.
Reading option '-i' ... matched as input file with argument
'movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]'.
Reading option '-force_key_frames' ... matched as option
'force_key_frames' (force key frames at specified timestamps) with
argument 'expr:gte(t,n_forced*2)'.
Reading option '-c:v' ... matched as option 'c' (codec name) with
argument 'libx264'.
Reading option '-vf' ... matched as option 'vf' (set video filters) with
argument 'scale=1280:720'.
Reading option '-s' ... matched as option 's' (set frame size (WxH or
abbreviation)) with argument '1280x720'.
Reading option '-aspect' ... matched as option 'aspect' (set aspect
ratio (4:3, 16:9 or 1.3333, 1.7777)) with argument '1280:720'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel
format) with argument 'yuv420p'.
Reading option '-r' ... matched as option 'r' (set frame rate (Hz value,
fraction or abbreviation)) with argument '59.94'.
Reading option '-preset' ... matched as AVOption 'preset' with argument
'veryfast'.
Reading option '-b:v' ... matched as option 'b' (video bitrate (please
use -b:v)) with argument '1200k'.
Reading option '-c:a' ... matched as option 'c' (codec name) with
argument 'libfaac'.
Reading option '-ar' ... matched as option 'ar' (set audio sampling rate
(in Hz)) with argument '48000'.
Reading option '-ac' ... matched as option 'ac' (set number of audio
channels) with argument '2'.
Reading option '-af' ... matched as option 'af' (set audio filters) with
argument 'volume=volume=11dB'.
Reading option '-flags:a' ... matched as AVOption 'flags:a' with
argument '-global_header'.
Reading option '-f' ... matched as option 'f' (force format) with
argument 'hls'.
Reading option '-hls_time' ... matched as AVOption 'hls_time' with
argument '2'.
Reading option '-hls_allow_cache' ... matched as AVOption
'hls_allow_cache' with argument '0'.
Reading option '-hls_list_size' ... matched as AVOption 'hls_list_size'
with argument '10'.
Reading option '-hls_wrap' ... matched as AVOption 'hls_wrap' with
argument '20000'.
Reading option '-hls_flags' ... matched as AVOption 'hls_flags' with
argument 'delete_segments'.
Reading option '-hls_segment_filename' ... matched as AVOption
'hls_segment_filename' with argument
'/var/www/html/stream/test/v.mid.%d.ts'.
Reading option '-y' ... matched as option 'y' (overwrite output files)
with argument '1'.
Reading option '/var/www/html/stream/test/v.mid.m3u8' ... matched as
output file.
Reading option '-force_key_frames' ... matched as option
'force_key_frames' (force key frames at specified timestamps) with
argument 'expr:gte(t,n_forced*2)'.
Reading option '-sn' ... matched as option 'sn' (disable subtitle) with
argument '1'.
Reading option '-c:v' ... matched as option 'c' (codec name) with
argument 'libx264'.
Reading option '-vf' ... matched as option 'vf' (set video filters) with
argument 'scale=1280:720'.
Reading option '-s' ... matched as option 's' (set frame size (WxH or
abbreviation)) with argument '1280x720'.
Reading option '-aspect' ... matched as option 'aspect' (set aspect
ratio (4:3, 16:9 or 1.3333, 1.7777)) with argument '1280:720'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel
format) with argument 'yuv420p'.
Reading option '-r' ... matched as option 'r' (set frame rate (Hz value,
fraction or abbreviation)) with argument '59.94'.
Reading option '-preset' ... matched as AVOption 'preset' with argument
'veryfast'.
Reading option '-b:v' ... matched as option 'b' (video bitrate (please
use -b:v)) with argument '600k'.
Reading option '-c:a' ... matched as option 'c' (codec name) with
argument 'libfaac'.
Reading option '-ar' ... matched as option 'ar' (set audio sampling rate
(in Hz)) with argument '48000'.
Reading option '-ac' ... matched as option 'ac' (set number of audio
channels) with argument '2'.
Reading option '-af' ... matched as option 'af' (set audio filters) with
argument 'volume=volume=11dB'.
Reading option '-flags:a' ... matched as AVOption 'flags:a' with
argument '-global_header'.
Reading option '-f' ... matched as option 'f' (force format) with
argument 'hls'.
Reading option '-hls_time' ... matched as AVOption 'hls_time' with
argument '2'.
Reading option '-hls_allow_cache' ... matched as AVOption
'hls_allow_cache' with argument '0'.
Reading option '-hls_list_size' ... matched as AVOption 'hls_list_size'
with argument '10'.
Reading option '-hls_wrap' ... matched as AVOption 'hls_wrap' with
argument '20000'.
Reading option '-hls_flags' ... matched as AVOption 'hls_flags' with
argument 'delete_segments'.
Reading option '-hls_segment_filename' ... matched as AVOption
'hls_segment_filename' with argument
'/var/www/html/stream/test/v.low.%d.ts'.
Reading option '-y' ... matched as option 'y' (overwrite output files)
with argument '1'.
Reading option '/var/www/html/stream/test/v.low.m3u8' ... matched as
output file.
Reading option '-sn' ... matched as option 'sn' (disable subtitle) with
argument '1'.
Reading option '-vn' ... matched as option 'vn' (disable video) with
argument '1'.
Reading option '-c:a' ... matched as option 'c' (codec name) with
argument 'libfaac'.
Reading option '-ar' ... matched as option 'ar' (set audio sampling rate
(in Hz)) with argument '32000'.
Reading option '-ac' ... matched as option 'ac' (set number of audio
channels) with argument '1'.
Reading option '-af' ... matched as option 'af' (set audio filters) with
argument 'volume=volume=11dB'.
Reading option '-flags:a' ... matched as AVOption 'flags:a' with
argument '-global_header'.
Reading option '-f' ... matched as option 'f' (force format) with
argument 'hls'.
Reading option '-hls_time' ... matched as AVOption 'hls_time' with
argument '2'.
Reading option '-hls_allow_cache' ... matched as AVOption
'hls_allow_cache' with argument '0'.
Reading option '-hls_list_size' ... matched as AVOption 'hls_list_size'
with argument '10'.
Reading option '-hls_wrap' ... matched as AVOption 'hls_wrap' with
argument '20000'.
Reading option '-hls_flags' ... matched as AVOption 'hls_flags' with
argument 'delete_segments'.
Reading option '-hls_segment_filename' ... matched as AVOption
'hls_segment_filename' with argument
'/var/www/html/stream/test/a.low.%d.ts'.
Reading option '-y' ... matched as option 'y' (overwrite output files)
with argument '1'.
Reading option '/var/www/html/stream/test/a.low.m3u8' ... matched as
output file.
Reading option '-vf' ... matched as option 'vf' (set video filters) with
argument 'scale=426:240'.
Reading option '-s' ... matched as option 's' (set frame size (WxH or
abbreviation)) with argument '426x240'.
Reading option '-aspect' ... matched as option 'aspect' (set aspect
ratio (4:3, 16:9 or 1.3333, 1.7777)) with argument '426:240'.
Reading option '-f' ... matched as option 'f' (force format) with
argument 'image2'.
Reading option '-vf' ... matched as option 'vf' (set video filters) with
argument 'fps=1'.
Reading option '-strftime' ... matched as AVOption 'strftime' with
argument '1'.
Reading option '-y' ... matched as option 'y' (overwrite output files)
with argument '1'.
Reading option '/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg' ...
matched as output file.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument 100.
Applying option y (overwrite output files) with argument 1.
Last message repeated 3 times
Successfully parsed a group of options.
Parsing a group of options: input file
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1].
Applying option f (force format) with argument lavfi.
Successfully parsed a group of options.
Opening an input file:
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1].
detected 32 logical cores
[Parsed_movie_0 @ 0x2440cc0] Setting 'filename' to value
'/dev/dvb/adapter6/dvr0'
[Parsed_movie_0 @ 0x2440cc0] Setting 'f' to value 'mpegts'
[Parsed_movie_0 @ 0x2440cc0] Setting 's' to value 'dv+da'
[mpegts @ 0x2440fc0] Before avformat_find_stream_info() pos: 0 bytes
read:5013504 seeks:1
[mpegts @ 0x2440fc0] stream=0 stream_type=0 pid=31 prog_reg_desc=
[mpegts @ 0x2440fc0] stream=1 stream_type=0 pid=34 prog_reg_desc=
[mpegts @ 0x2440fc0] probing stream 0 pp:2500
[mpegts @ 0x2440fc0] Probe with size=33766, packets=1 detected ico with
score=25
[mpegts @ 0x2440fc0] probing stream 0 pp:2499
[mpegts @ 0x2440fc0] Probe with size=71513, packets=2 detected ico with
score=25
[mpegts @ 0x2440fc0] probing stream 0 pp:2498
[mpegts @ 0x2440fc0] probing stream 0 pp:2497
[mpegts @ 0x2440fc0] Probe with size=153418, packets=4 detected ico with
score=25
[mpegts @ 0x2440fc0] probing stream 0 pp:2496
[mpegts @ 0x2440fc0] probing stream 0 pp:2495
[mpegts @ 0x2440fc0] probing stream 1 pp:2500
[mpegts @ 0x2440fc0] Probe with size=7680, packets=1 detected ac3 with
score=51
[mpegts @ 0x2440fc0] probed stream 1
[mpegts @ 0x2440fc0] probing stream 0 pp:2494
[mpegts @ 0x2440fc0] Probe with size=265729, packets=7 detected ico with
score=25
[mpegts @ 0x2440fc0] probing stream 0 pp:2493
[mpegts @ 0x2440fc0] probing stream 0 pp:2492
[mpegts @ 0x2440fc0] probing stream 0 pp:2491
[mpegts @ 0x2440fc0] probing stream 0 pp:2490
[mpegts @ 0x2440fc0] probing stream 0 pp:2489
[mpegts @ 0x2440fc0] probing stream 0 pp:2488
[mpegts @ 0x2440fc0] Probe with size=552613, packets=13 detected ico
with score=25
[mpegts @ 0x2440fc0] probing stream 0 pp:2487
[mpegts @ 0x2440fc0] probing stream 0 pp:2486
[mpegts @ 0x2440fc0] probing stream 0 pp:2485
[mpegts @ 0x2440fc0] probing stream 0 pp:2484
[mpegts @ 0x2440fc0] probing stream 0 pp:2483
[mpegts @ 0x2440fc0] probing stream 0 pp:2482
[mpegts @ 0x2440fc0] probing stream 0 pp:2481
[mpegts @ 0x2440fc0] probing stream 0 pp:2480
[mpegts @ 0x2440fc0] probing stream 0 pp:2479
[mpegts @ 0x2440fc0] Probe with size=1053667, packets=22 detected
mpegvideo with score=51
[mpegts @ 0x2440fc0] probed stream 0
[mpeg2video @ 0x245e140] Invalid frame dimensions 0x0.
Last message repeated 13 times
[mpegts @ 0x2440fc0] Probe buffer size limit of 5000000 bytes reached
[mpegts @ 0x2440fc0] After avformat_find_stream_info() pos: 5316908
bytes read:10354688 seeks:1 frames:192
[Parsed_movie_0 @ 0x2440cc0] seek_point:0 format_name:mpegts
file_name:/dev/dvb/adapter6/dvr0 stream_index:-1
[out1 @ 0x2461160] auto-inserting filter 'auto-inserted resampler 0'
between the filter 'Parsed_movie_0' and the filter 'out1'
[AVFilterGraph @ 0x2433060] query_formats: 3 queried, 1 merged, 3
already done, 0 delayed
[auto-inserted resampler 0 @ 0x2472b80] ch:6 chl:5.1(side) fmt:fltp
r:48000Hz -> ch:6 chl:5.1(side) fmt:flt r:48000Hz
[lavfi @ 0x243db20] All info found
[lavfi @ 0x243db20] Setting avg frame rate based on r frame rate
Input #0, lavfi, from
'movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]':
Duration: N/A, start: 4501.259417, bitrate: N/A
Stream #0:0, 21, 1/90000: Video: rawvideo, 1 reference frame (I420
/ 0x30323449), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 1/90000, 29.97
fps, 29.97 tbr, 90k tbn, 90k tbc
Stream #0:1, 52, 1/48000: Audio: pcm_f32le, 48000 Hz, 5.1(side),
flt, 9216 kb/s
Stream #0:2, 20, 1/90000: Subtitle: eia_608
Successfully opened the file.
Parsing a group of options: output file
/var/www/html/stream/test/v.mid.m3u8.
Applying option force_key_frames (force key frames at specified
timestamps) with argument expr:gte(t,n_forced*2).
Applying option c:v (codec name) with argument libx264.
Applying option vf (set video filters) with argument scale=1280:720.
Applying option s (set frame size (WxH or abbreviation)) with argument
1280x720.
Applying option aspect (set aspect ratio (4:3, 16:9 or 1.3333, 1.7777))
with argument 1280:720.
Applying option pix_fmt (set pixel format) with argument yuv420p.
Applying option r (set frame rate (Hz value, fraction or abbreviation))
with argument 59.94.
Applying option b:v (video bitrate (please use -b:v)) with argument 1200k.
Applying option c:a (codec name) with argument libfaac.
Applying option ar (set audio sampling rate (in Hz)) with argument 48000.
Applying option ac (set number of audio channels) with argument 2.
Applying option af (set audio filters) with argument volume=volume=11dB.
Applying option f (force format) with argument hls.
Successfully parsed a group of options.
Opening an output file: /var/www/html/stream/test/v.mid.m3u8.
Successfully opened the file.
Parsing a group of options: output file
/var/www/html/stream/test/v.low.m3u8.
Applying option force_key_frames (force key frames at specified
timestamps) with argument expr:gte(t,n_forced*2).
Applying option sn (disable subtitle) with argument 1.
Applying option c:v (codec name) with argument libx264.
Applying option vf (set video filters) with argument scale=1280:720.
Applying option s (set frame size (WxH or abbreviation)) with argument
1280x720.
Applying option aspect (set aspect ratio (4:3, 16:9 or 1.3333, 1.7777))
with argument 1280:720.
Applying option pix_fmt (set pixel format) with argument yuv420p.
Applying option r (set frame rate (Hz value, fraction or abbreviation))
with argument 59.94.
Applying option b:v (video bitrate (please use -b:v)) with argument 600k.
Applying option c:a (codec name) with argument libfaac.
Applying option ar (set audio sampling rate (in Hz)) with argument 48000.
Applying option ac (set number of audio channels) with argument 2.
Applying option af (set audio filters) with argument volume=volume=11dB.
Applying option f (force format) with argument hls.
Successfully parsed a group of options.
Opening an output file: /var/www/html/stream/test/v.low.m3u8.
Successfully opened the file.
Parsing a group of options: output file
/var/www/html/stream/test/a.low.m3u8.
Applying option sn (disable subtitle) with argument 1.
Applying option vn (disable video) with argument 1.
Applying option c:a (codec name) with argument libfaac.
Applying option ar (set audio sampling rate (in Hz)) with argument 32000.
Applying option ac (set number of audio channels) with argument 1.
Applying option af (set audio filters) with argument volume=volume=11dB.
Applying option f (force format) with argument hls.
Successfully parsed a group of options.
Opening an output file: /var/www/html/stream/test/a.low.m3u8.
Successfully opened the file.
Parsing a group of options: output file
/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg.
Applying option vf (set video filters) with argument scale=426:240.
Applying option s (set frame size (WxH or abbreviation)) with argument
426x240.
Applying option aspect (set aspect ratio (4:3, 16:9 or 1.3333, 1.7777))
with argument 426:240.
Applying option f (force format) with argument image2.
Applying option vf (set video filters) with argument fps=1.
Successfully parsed a group of options.
Opening an output file: /var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg.
Successfully opened the file.
[Parsed_scale_0 @ 0x24f6de0] Setting 'w' to value '1280'
[Parsed_scale_0 @ 0x24f6de0] Setting 'h' to value '720'
[Parsed_scale_0 @ 0x24f6de0] Setting 'flags' to value '0x4'
[Parsed_scale_0 @ 0x24f6de0] w:1280 h:720 flags:'0x4' interl:0
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'video_size' to
value '1920x1080'
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'pix_fmt' to value '0'
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'time_base' to value
'1/90000'
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'pixel_aspect' to
value '1/1'
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'sws_param' to value
'flags=2'
[graph 0 input from stream 0:0 @ 0x28f7da0] Setting 'frame_rate' to
value '30000/1001'
[graph 0 input from stream 0:0 @ 0x28f7da0] w:1920 h:1080 pixfmt:yuv420p
tb:1/90000 fr:30000/1001 sar:1/1 sws_param:flags=2
[scaler for output stream 0:0 @ 0x2879620] Setting 'w' to value '1280'
[scaler for output stream 0:0 @ 0x2879620] Setting 'h' to value '720'
[scaler for output stream 0:0 @ 0x2879620] Setting 'flags' to value '0x4'
[scaler for output stream 0:0 @ 0x2879620] w:1280 h:720 flags:'0x4' interl:0
[format @ 0x28613e0] compat: called with args=[yuv420p]
[format @ 0x28613e0] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 0x24148c0] query_formats: 5 queried, 4 merged, 0
already done, 0 delayed
[Parsed_scale_0 @ 0x24f6de0] w:1920 h:1080 fmt:yuv420p sar:1/1 -> w:1280
h:720 fmt:yuv420p sar:1/1 flags:0x4
[scaler for output stream 0:0 @ 0x2879620] w:1280 h:720 fmt:yuv420p
sar:1/1 -> w:1280 h:720 fmt:yuv420p sar:1/1 flags:0x4
[Parsed_volume_0 @ 0x276ef00] Setting 'volume' to value '11dB'
[graph 1 input from stream 0:1 @ 0x241f2c0] Setting 'time_base' to value
'1/48000'
[graph 1 input from stream 0:1 @ 0x241f2c0] Setting 'sample_rate' to
value '48000'
[graph 1 input from stream 0:1 @ 0x241f2c0] Setting 'sample_fmt' to
value 'flt'
[graph 1 input from stream 0:1 @ 0x241f2c0] Setting 'channel_layout' to
value '0x60f'
[graph 1 input from stream 0:1 @ 0x241f2c0] tb:1/48000 samplefmt:flt
samplerate:48000 chlayout:0x60f
[audio format for output stream 0:1 @ 0x240a8c0] Setting 'sample_fmts'
to value 's16'
[audio format for output stream 0:1 @ 0x240a8c0] Setting 'sample_rates'
to value '48000'
[audio format for output stream 0:1 @ 0x240a8c0] Setting
'channel_layouts' to value '0x3'
[audio format for output stream 0:1 @ 0x240a8c0] auto-inserting filter
'auto-inserted resampler 0' between the filter 'Parsed_volume_0' and the
filter 'audio format for output stream 0:1'
[AVFilterGraph @ 0x2432ea0] query_formats: 4 queried, 6 merged, 3
already done, 0 delayed
[graph 1 input from stream 0:1 @ 0x241f2c0] tb:0.000021
sample_rate:48000.000000 nb_channels:6.000000
[Parsed_volume_0 @ 0x276ef00] n:nan t:nan pts:nan precision:float
volume:3.548134 volume_dB:11.000000
0.414214 0.000000 0.292893 0.000000 0.292893 0.000000
0.000000 0.414214 0.292893 0.000000 0.000000 0.292893
[auto-inserted resampler 0 @ 0x27a32e0] ch:6 chl:5.1(side) fmt:flt
r:48000Hz -> ch:2 chl:stereo fmt:s16 r:48000Hz
[Parsed_scale_0 @ 0x27a96a0] Setting 'w' to value '1280'
[Parsed_scale_0 @ 0x27a96a0] Setting 'h' to value '720'
[Parsed_scale_0 @ 0x27a96a0] Setting 'flags' to value '0x4'
[Parsed_scale_0 @ 0x27a96a0] w:1280 h:720 flags:'0x4' interl:0
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'video_size' to
value '1920x1080'
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'pix_fmt' to value '0'
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'time_base' to value
'1/90000'
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'pixel_aspect' to
value '1/1'
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'sws_param' to value
'flags=2'
[graph 2 input from stream 0:0 @ 0x28f70e0] Setting 'frame_rate' to
value '30000/1001'
[graph 2 input from stream 0:0 @ 0x28f70e0] w:1920 h:1080 pixfmt:yuv420p
tb:1/90000 fr:30000/1001 sar:1/1 sws_param:flags=2
[scaler for output stream 1:0 @ 0x27a9ca0] Setting 'w' to value '1280'
[scaler for output stream 1:0 @ 0x27a9ca0] Setting 'h' to value '720'
[scaler for output stream 1:0 @ 0x27a9ca0] Setting 'flags' to value '0x4'
[scaler for output stream 1:0 @ 0x27a9ca0] w:1280 h:720 flags:'0x4' interl:0
[format @ 0x27aa780] compat: called with args=[yuv420p]
[format @ 0x27aa780] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 0x27750e0] query_formats: 5 queried, 4 merged, 0
already done, 0 delayed
[Parsed_scale_0 @ 0x27a96a0] w:1920 h:1080 fmt:yuv420p sar:1/1 -> w:1280
h:720 fmt:yuv420p sar:1/1 flags:0x4
[scaler for output stream 1:0 @ 0x27a9ca0] w:1280 h:720 fmt:yuv420p
sar:1/1 -> w:1280 h:720 fmt:yuv420p sar:1/1 flags:0x4
[Parsed_volume_0 @ 0x2403480] Setting 'volume' to value '11dB'
[graph 3 input from stream 0:1 @ 0x27f96a0] Setting 'time_base' to value
'1/48000'
[graph 3 input from stream 0:1 @ 0x27f96a0] Setting 'sample_rate' to
value '48000'
[graph 3 input from stream 0:1 @ 0x27f96a0] Setting 'sample_fmt' to
value 'flt'
[graph 3 input from stream 0:1 @ 0x27f96a0] Setting 'channel_layout' to
value '0x60f'
[graph 3 input from stream 0:1 @ 0x27f96a0] tb:1/48000 samplefmt:flt
samplerate:48000 chlayout:0x60f
[audio format for output stream 1:1 @ 0x2404160] Setting 'sample_fmts'
to value 's16'
[audio format for output stream 1:1 @ 0x2404160] Setting 'sample_rates'
to value '48000'
[audio format for output stream 1:1 @ 0x2404160] Setting
'channel_layouts' to value '0x3'
[audio format for output stream 1:1 @ 0x2404160] auto-inserting filter
'auto-inserted resampler 0' between the filter 'Parsed_volume_0' and the
filter 'audio format for output stream 1:1'
[AVFilterGraph @ 0x27f95e0] query_formats: 4 queried, 6 merged, 3
already done, 0 delayed
[graph 3 input from stream 0:1 @ 0x27f96a0] tb:0.000021
sample_rate:48000.000000 nb_channels:6.000000
[Parsed_volume_0 @ 0x2403480] n:nan t:nan pts:nan precision:float
volume:3.548134 volume_dB:11.000000
0.414214 0.000000 0.292893 0.000000 0.292893 0.000000
0.000000 0.414214 0.292893 0.000000 0.000000 0.292893
[auto-inserted resampler 0 @ 0x2406360] ch:6 chl:5.1(side) fmt:flt
r:48000Hz -> ch:2 chl:stereo fmt:s16 r:48000Hz
[Parsed_volume_0 @ 0x2408260] Setting 'volume' to value '11dB'
[graph 4 input from stream 0:1 @ 0x24089e0] Setting 'time_base' to value
'1/48000'
[graph 4 input from stream 0:1 @ 0x24089e0] Setting 'sample_rate' to
value '48000'
[graph 4 input from stream 0:1 @ 0x24089e0] Setting 'sample_fmt' to
value 'flt'
[graph 4 input from stream 0:1 @ 0x24089e0] Setting 'channel_layout' to
value '0x60f'
[graph 4 input from stream 0:1 @ 0x24089e0] tb:1/48000 samplefmt:flt
samplerate:48000 chlayout:0x60f
[audio format for output stream 2:0 @ 0x2408e40] Setting 'sample_fmts'
to value 's16'
[audio format for output stream 2:0 @ 0x2408e40] Setting 'sample_rates'
to value '32000'
[audio format for output stream 2:0 @ 0x2408e40] Setting
'channel_layouts' to value '0x4'
[audio format for output stream 2:0 @ 0x2408e40] auto-inserting filter
'auto-inserted resampler 0' between the filter 'Parsed_volume_0' and the
filter 'audio format for output stream 2:0'
[AVFilterGraph @ 0x2404f20] query_formats: 4 queried, 6 merged, 3
already done, 0 delayed
[graph 4 input from stream 0:1 @ 0x24089e0] tb:0.000021
sample_rate:48000.000000 nb_channels:6.000000
[Parsed_volume_0 @ 0x2408260] n:nan t:nan pts:nan precision:float
volume:3.548134 volume_dB:11.000000
0.207107 0.207107 0.292893 0.000000 0.146447 0.146447
[auto-inserted resampler 0 @ 0x240fbc0] ch:6 chl:5.1(side) fmt:flt
r:48000Hz -> ch:1 chl:mono fmt:s16 r:32000Hz
[Parsed_fps_0 @ 0x2411420] Setting 'fps' to value '1'
[Parsed_fps_0 @ 0x2411420] fps=1/1
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'video_size' to
value '1920x1080'
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'pix_fmt' to value '0'
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'time_base' to value
'1/90000'
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'pixel_aspect' to
value '1/1'
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'sws_param' to value
'flags=2'
[graph 5 input from stream 0:0 @ 0x240fac0] Setting 'frame_rate' to
value '30000/1001'
[graph 5 input from stream 0:0 @ 0x240fac0] w:1920 h:1080 pixfmt:yuv420p
tb:1/90000 fr:30000/1001 sar:1/1 sws_param:flags=2
[scaler for output stream 3:0 @ 0x2411ac0] Setting 'w' to value '426'
[scaler for output stream 3:0 @ 0x2411ac0] Setting 'h' to value '240'
[scaler for output stream 3:0 @ 0x2411ac0] Setting 'flags' to value '0x4'
[scaler for output stream 3:0 @ 0x2411ac0] w:426 h:240 flags:'0x4' interl:0
[format @ 0x24124a0] compat: called with args=[yuvj420p|yuvj422p|yuvj444p]
[format @ 0x24124a0] Setting 'pix_fmts' to value
'yuvj420p|yuvj422p|yuvj444p'
[AVFilterGraph @ 0x2409340] query_formats: 5 queried, 4 merged, 0
already done, 0 delayed
[scaler for output stream 3:0 @ 0x2411ac0] picking yuvj420p out of 3
ref:yuv420p alpha:0
[swscaler @ 0x2901760] deprecated pixel format used, make sure you did
set range correctly
[scaler for output stream 3:0 @ 0x2411ac0] w:1920 h:1080 fmt:yuv420p
sar:1/1 -> w:426 h:240 fmt:yuvj420p sar:640/639 flags:0x4
[libx264 @ 0x25d77a0] using mv_range_thread = 24
[libx264 @ 0x25d77a0] using SAR=1/1
[libx264 @ 0x25d77a0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
[libx264 @ 0x25d77a0] profile High, level 3.2
[libx264 @ 0x246aca0] using mv_range_thread = 24
[libx264 @ 0x246aca0] using SAR=1/1
[libx264 @ 0x246aca0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
[libx264 @ 0x246aca0] profile High, level 3.2
[mjpeg @ 0x24622e0] Forcing thread count to 1 for MJPEG encoding, use
-thread_type slice or a constant quantizer if you want to use multiple
cpu cores
[mjpeg @ 0x24622e0] intra_quant_bias = 96 inter_quant_bias = 0
[mpegts @ 0x10d047c0] muxrate VBR, pcr every 5 pkts, sdt every 200,
pat/pmt every 40 pkts
[mpegts @ 0x10d18f60] muxrate VBR, pcr every 5 pkts, sdt every 200,
pat/pmt every 40 pkts
[mpegts @ 0x10d242c0] muxrate VBR, pcr every 3 pkts, sdt every 200,
pat/pmt every 40 pkts
Output #0, hls, to '/var/www/html/stream/test/v.mid.m3u8':
Metadata:
encoder : Lavf56.30.100
Stream #0:0, 0, 1/90000: Video: h264 (libx264), -1 reference frame,
yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 50/2997, q=-1--1, 1200 kb/s, 59.94
fps, 90k tbn, 59.94 tbc
Metadata:
encoder : Lavc56.34.100 libx264
Stream #0:1, 0, 1/90000: Audio: aac (libfaac), 48000 Hz, stereo,
s16, 128 kb/s
Metadata:
encoder : Lavc56.34.100 libfaac
Stream #0:2, 0, 1/1000: Subtitle: webvtt, 1280x720
Metadata:
encoder : Lavc56.34.100 webvtt
Output #1, hls, to '/var/www/html/stream/test/v.low.m3u8':
Metadata:
encoder : Lavf56.30.100
Stream #1:0, 0, 1/90000: Video: h264 (libx264), -1 reference frame,
yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 50/2997, q=-1--1, 600 kb/s, 59.94
fps, 90k tbn, 59.94 tbc
Metadata:
encoder : Lavc56.34.100 libx264
Stream #1:1, 0, 1/90000: Audio: aac (libfaac), 48000 Hz, stereo,
s16, 128 kb/s
Metadata:
encoder : Lavc56.34.100 libfaac
Output #2, hls, to '/var/www/html/stream/test/a.low.m3u8':
Metadata:
encoder : Lavf56.30.100
Stream #2:0, 0, 1/90000: Audio: aac (libfaac), 32000 Hz, mono, s16,
128 kb/s
Metadata:
encoder : Lavc56.34.100 libfaac
Output #3, image2, to '/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg':
Metadata:
encoder : Lavf56.30.100
Stream #3:0, 0, 1/1: Video: mjpeg, 1 reference frame, yuvj420p(pc),
426x240 [SAR 1:1 DAR 71:40], 1/1, q=2-31, 200 kb/s, 1 fps, 1 tbn, 1 tbc
Metadata:
encoder : Lavc56.34.100 mjpeg
Stream mapping:
Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (pcm_f32le (native) -> aac (libfaac))
Stream #0:2 -> #0:2 (eia_608 (cc_dec) -> webvtt (native))
Stream #0:0 -> #1:0 (rawvideo (native) -> h264 (libx264))
Stream #0:1 -> #1:1 (pcm_f32le (native) -> aac (libfaac))
Stream #0:1 -> #2:0 (pcm_f32le (native) -> aac (libfaac))
Stream #0:0 -> #3:0 (rawvideo (native) -> mjpeg (native))
Press [q] to stop, [?] for help
*** 59 dup!
Forced keyframe at time 0.000000
*** 59 dup!
Forced keyframe at time 0.000000
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
Last message repeated 1 times
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 0 QP=34.88 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=14486 bytes
[libx264 @ 0x25d77a0] frame= 1 QP=38.36 NAL=2 Slice:P Poc:8 I:2
P:20 SKIP:3578 size=88 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 0 QP=40.72 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=9316 bytes
[libx264 @ 0x246aca0] frame= 1 QP=44.48 NAL=2 Slice:P Poc:8 I:5
P:12 SKIP:3583 size=68 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 2 QP=38.00 NAL=2 Slice:B Poc:4 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 3 QP=40.00 NAL=0 Slice:B Poc:2 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 2 QP=44.00 NAL=2 Slice:B Poc:4 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 3 QP=46.00 NAL=0 Slice:B Poc:2 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 4 QP=40.00 NAL=0 Slice:B Poc:6 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 5 QP=36.94 NAL=2 Slice:P Poc:16 I:0
P:2 SKIP:3598 size=41 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 4 QP=46.00 NAL=0 Slice:B Poc:6 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 5 QP=42.14 NAL=2 Slice:P Poc:16 I:1
P:4 SKIP:3595 size=49 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 6 QP=38.00 NAL=2 Slice:B Poc:12 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 7 QP=40.00 NAL=0 Slice:B Poc:10 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 6 QP=44.00 NAL=2 Slice:B Poc:12 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 7 QP=46.00 NAL=0 Slice:B Poc:10 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 8 QP=40.00 NAL=0 Slice:B Poc:14 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 9 QP=34.00 NAL=2 Slice:P Poc:24 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 8 QP=46.00 NAL=0 Slice:B Poc:14 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 9 QP=40.00 NAL=2 Slice:P Poc:24 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 10 QP=38.00 NAL=2 Slice:B Poc:20 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 11 QP=40.00 NAL=0 Slice:B Poc:18 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 10 QP=44.00 NAL=2 Slice:B Poc:20 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 11 QP=46.00 NAL=0 Slice:B Poc:18 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 12 QP=40.00 NAL=0 Slice:B Poc:22 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 13 QP=34.00 NAL=2 Slice:P Poc:32 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 12 QP=46.00 NAL=0 Slice:B Poc:22 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 13 QP=40.00 NAL=2 Slice:P Poc:32 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 14 QP=38.00 NAL=2 Slice:B Poc:28 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 15 QP=40.00 NAL=0 Slice:B Poc:26 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 14 QP=44.00 NAL=2 Slice:B Poc:28 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 15 QP=46.00 NAL=0 Slice:B Poc:26 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 16 QP=40.00 NAL=0 Slice:B Poc:30 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 17 QP=34.00 NAL=2 Slice:P Poc:40 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 16 QP=46.00 NAL=0 Slice:B Poc:30 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 17 QP=40.00 NAL=2 Slice:P Poc:40 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 18 QP=38.00 NAL=2 Slice:B Poc:36 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 19 QP=40.00 NAL=0 Slice:B Poc:34 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 18 QP=44.00 NAL=2 Slice:B Poc:36 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 19 QP=46.00 NAL=0 Slice:B Poc:34 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 20 QP=40.00 NAL=0 Slice:B Poc:38 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 21 QP=34.00 NAL=2 Slice:P Poc:48 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 20 QP=46.00 NAL=0 Slice:B Poc:38 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 21 QP=40.00 NAL=2 Slice:P Poc:48 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 22 QP=38.00 NAL=2 Slice:B Poc:44 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 23 QP=40.00 NAL=0 Slice:B Poc:42 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 22 QP=44.00 NAL=2 Slice:B Poc:44 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 23 QP=46.00 NAL=0 Slice:B Poc:42 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 24 QP=40.00 NAL=0 Slice:B Poc:46 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 25 QP=34.00 NAL=2 Slice:P Poc:56 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 24 QP=46.00 NAL=0 Slice:B Poc:46 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 25 QP=40.00 NAL=2 Slice:P Poc:56 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] scene cut at 76 Icost:2628046 Pcost:2592287
ratio:0.0136 bias:0.1680 gop:76 (imb:3169 pmb:185)
[libx264 @ 0x25d77a0] scene cut at 76 Icost:2628046 Pcost:2592287
ratio:0.0136 bias:0.1680 gop:76 (imb:3169 pmb:185)
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 26 QP=38.00 NAL=2 Slice:B Poc:52 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 27 QP=40.00 NAL=0 Slice:B Poc:50 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 26 QP=44.00 NAL=2 Slice:B Poc:52 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 27 QP=46.00 NAL=0 Slice:B Poc:50 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[AVIOContext @ 0x27a2d80] Statistics: 0 seeks, 1 writeouts
[AVIOContext @ 0x24fbd80] Statistics: 0 seeks, 1 writeouts
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 28 QP=40.00 NAL=0 Slice:B Poc:54 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 29 QP=34.00 NAL=2 Slice:P Poc:64 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 28 QP=46.00 NAL=0 Slice:B Poc:54 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 29 QP=40.00 NAL=2 Slice:P Poc:64 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 30 QP=38.00 NAL=2 Slice:B Poc:60 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 31 QP=40.00 NAL=0 Slice:B Poc:58 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 30 QP=44.00 NAL=2 Slice:B Poc:60 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 31 QP=46.00 NAL=0 Slice:B Poc:58 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 32 QP=40.00 NAL=0 Slice:B Poc:62 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 33 QP=34.00 NAL=2 Slice:P Poc:72 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 32 QP=46.00 NAL=0 Slice:B Poc:62 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 33 QP=40.00 NAL=2 Slice:P Poc:72 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 34 QP=38.00 NAL=2 Slice:B Poc:68 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 35 QP=40.00 NAL=0 Slice:B Poc:66 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 34 QP=44.00 NAL=2 Slice:B Poc:68 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 35 QP=46.00 NAL=0 Slice:B Poc:66 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 36 QP=40.00 NAL=0 Slice:B Poc:70 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 37 QP=34.00 NAL=2 Slice:P Poc:80 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 36 QP=46.00 NAL=0 Slice:B Poc:70 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 37 QP=40.00 NAL=2 Slice:P Poc:80 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 38 QP=38.00 NAL=2 Slice:B Poc:76 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 39 QP=40.00 NAL=0 Slice:B Poc:74 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 38 QP=44.00 NAL=2 Slice:B Poc:76 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 39 QP=46.00 NAL=0 Slice:B Poc:74 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 40 QP=40.00 NAL=0 Slice:B Poc:78 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 41 QP=34.00 NAL=2 Slice:P Poc:88 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 40 QP=46.00 NAL=0 Slice:B Poc:78 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 41 QP=40.00 NAL=2 Slice:P Poc:88 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 42 QP=38.00 NAL=2 Slice:B Poc:84 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 43 QP=40.00 NAL=0 Slice:B Poc:82 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 42 QP=44.00 NAL=2 Slice:B Poc:84 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 43 QP=46.00 NAL=0 Slice:B Poc:82 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 44 QP=40.00 NAL=0 Slice:B Poc:86 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 45 QP=34.00 NAL=2 Slice:P Poc:96 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 44 QP=46.00 NAL=0 Slice:B Poc:86 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 45 QP=40.00 NAL=2 Slice:P Poc:96 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 46 QP=38.00 NAL=2 Slice:B Poc:92 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 47 QP=40.00 NAL=0 Slice:B Poc:90 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 46 QP=44.00 NAL=2 Slice:B Poc:92 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 47 QP=46.00 NAL=0 Slice:B Poc:90 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 48 QP=40.00 NAL=0 Slice:B Poc:94 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 49 QP=38.00 NAL=2 Slice:P Poc:104 I:0
P:0 SKIP:3600 size=38 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 48 QP=46.00 NAL=0 Slice:B Poc:94 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 49 QP=45.00 NAL=2 Slice:P Poc:104 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 50 QP=40.00 NAL=2 Slice:B Poc:100 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 51 QP=41.00 NAL=0 Slice:B Poc:98 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 50 QP=46.00 NAL=2 Slice:B Poc:100 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 51 QP=47.00 NAL=0 Slice:B Poc:98 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 52 QP=43.00 NAL=0 Slice:B Poc:102 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 53 QP=35.00 NAL=2 Slice:P Poc:112 I:0
P:3 SKIP:3597 size=43 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 52 QP=49.00 NAL=0 Slice:B Poc:102 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 53 QP=43.00 NAL=2 Slice:P Poc:112 I:0
P:0 SKIP:3600 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 54 QP=40.00 NAL=2 Slice:B Poc:108 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 55 QP=43.00 NAL=0 Slice:B Poc:106 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 54 QP=47.00 NAL=2 Slice:B Poc:108 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 55 QP=49.00 NAL=0 Slice:B Poc:106 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 56 QP=41.00 NAL=0 Slice:B Poc:110 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 57 QP=33.61 NAL=2 Slice:P Poc:120 I:29
P:389 SKIP:3182 size=1104 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 56 QP=48.00 NAL=0 Slice:B Poc:110 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 57 QP=41.60 NAL=2 Slice:P Poc:120 I:7
P:37 SKIP:3556 size=161 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
Forced keyframe at time 2.002002
[libx264 @ 0x25d77a0] frame= 58 QP=35.00 NAL=2 Slice:B Poc:116 I:0
P:7 SKIP:3593 size=41 bytes
[libx264 @ 0x25d77a0] frame= 59 QP=39.00 NAL=0 Slice:B Poc:114 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
Forced keyframe at time 2.002002
[libx264 @ 0x246aca0] frame= 58 QP=43.00 NAL=2 Slice:B Poc:116 I:0
P:2 SKIP:3598 size=39 bytes
[libx264 @ 0x246aca0] frame= 59 QP=46.00 NAL=0 Slice:B Poc:114 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 60 QP=37.00 NAL=0 Slice:B Poc:118 I:0
P:9 SKIP:3591 size=45 bytes
[libx264 @ 0x25d77a0] frame= 61 QP=29.94 NAL=2 Slice:P Poc:128 I:129
P:1588 SKIP:1883 size=5710 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 60 QP=44.00 NAL=0 Slice:B Poc:118 I:3
P:1 SKIP:3596 size=42 bytes
[libx264 @ 0x246aca0] frame= 61 QP=39.26 NAL=2 Slice:P Poc:128 I:35
P:271 SKIP:3294 size=906 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 62 QP=34.64 NAL=2 Slice:B Poc:124 I:0
P:22 SKIP:3578 size=97 bytes
[libx264 @ 0x25d77a0] frame= 63 QP=35.00 NAL=0 Slice:B Poc:122 I:0
P:7 SKIP:3593 size=40 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 62 QP=40.00 NAL=2 Slice:B Poc:124 I:0
P:1 SKIP:3599 size=40 bytes
[libx264 @ 0x246aca0] frame= 63 QP=43.00 NAL=0 Slice:B Poc:122 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 64 QP=33.00 NAL=0 Slice:B Poc:126 I:0
P:6 SKIP:3594 size=37 bytes
[libx264 @ 0x25d77a0] frame= 65 QP=27.29 NAL=2 Slice:P Poc:136 I:205
P:2219 SKIP:1176 size=8418 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 64 QP=46.25 NAL=0 Slice:B Poc:126 I:0
P:1 SKIP:3599 size=39 bytes
[libx264 @ 0x246aca0] frame= 65 QP=35.80 NAL=2 Slice:P Poc:136 I:146
P:632 SKIP:2822 size=2095 bytes
[AVIOContext @ 0x10d2d1c0] Statistics: 0 seeks, 6 writeouts
[hls @ 0x281e940] EXT-X-MEDIA-SEQUENCE:0
[AVIOContext @ 0x2979bc0] Statistics: 0 seeks, 1 writeouts
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 66 QP=28.32 NAL=2 Slice:B Poc:132 I:0
P:68 SKIP:3532 size=170 bytes
[libx264 @ 0x25d77a0] frame= 67 QP=32.00 NAL=0 Slice:B Poc:130 I:0
P:0 SKIP:3600 size=35 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 66 QP=42.88 NAL=2 Slice:B Poc:132 I:0
P:2 SKIP:3598 size=44 bytes
[libx264 @ 0x246aca0] frame= 67 QP=40.00 NAL=0 Slice:B Poc:130 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 68 QP=37.99 NAL=0 Slice:B Poc:134 I:0
P:23 SKIP:3577 size=67 bytes
[libx264 @ 0x25d77a0] frame= 69 QP=26.76 NAL=2 Slice:P Poc:144 I:82
P:1304 SKIP:2214 size=4529 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 68 QP=39.00 NAL=0 Slice:B Poc:134 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 69 QP=35.66 NAL=2 Slice:P Poc:144 I:62
P:374 SKIP:3164 size=1193 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 70 QP=26.86 NAL=2 Slice:B Poc:140 I:0
P:146 SKIP:3453 size=350 bytes
[libx264 @ 0x25d77a0] frame= 71 QP=30.65 NAL=0 Slice:B Poc:138 I:0
P:23 SKIP:3577 size=66 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 70 QP=40.85 NAL=2 Slice:B Poc:140 I:0
P:5 SKIP:3595 size=47 bytes
[libx264 @ 0x246aca0] frame= 71 QP=38.00 NAL=0 Slice:B Poc:138 I:0
P:0 SKIP:3600 size=35 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 72 QP=26.79 NAL=0 Slice:B Poc:142 I:0
P:95 SKIP:3505 size=142 bytes
[libx264 @ 0x25d77a0] frame= 73 QP=26.79 NAL=2 Slice:P Poc:150 I:62
P:605 SKIP:2933 size=1868 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 72 QP=37.00 NAL=0 Slice:B Poc:142 I:0
P:15 SKIP:3585 size=58 bytes
[libx264 @ 0x246aca0] frame= 73 QP=34.74 NAL=2 Slice:P Poc:150 I:43
P:187 SKIP:3370 size=609 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 74 QP=29.08 NAL=2 Slice:B Poc:148 I:1
P:136 SKIP:3462 size=248 bytes
[libx264 @ 0x25d77a0] frame= 75 QP=30.11 NAL=0 Slice:B Poc:146 I:0
P:112 SKIP:3487 size=145 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 74 QP=38.33 NAL=2 Slice:B Poc:148 I:0
P:14 SKIP:3586 size=56 bytes
[libx264 @ 0x246aca0] frame= 75 QP=40.87 NAL=0 Slice:B Poc:146 I:0
P:7 SKIP:3593 size=47 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 76 QP=27.68 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=41437 bytes
[libx264 @ 0x25d77a0] frame= 77 QP=22.44 NAL=2 Slice:P Poc:8 I:294
P:2775 SKIP:531 size=23254 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 76 QP=34.98 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=20300 bytes
[libx264 @ 0x246aca0] frame= 77 QP=31.50 NAL=2 Slice:P Poc:8 I:226
P:1598 SKIP:1776 size=7103 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 78 QP=23.47 NAL=2 Slice:B Poc:4 I:18
P:1123 SKIP:2456 size=2799 bytes
[libx264 @ 0x25d77a0] frame= 79 QP=21.76 NAL=0 Slice:B Poc:2 I:3
P:167 SKIP:3430 size=334 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 78 QP=29.85 NAL=2 Slice:B Poc:4 I:3
P:219 SKIP:3377 size=506 bytes
[libx264 @ 0x246aca0] frame= 79 QP=30.55 NAL=0 Slice:B Poc:2 I:3
P:19 SKIP:3578 size=84 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 80 QP=24.42 NAL=0 Slice:B Poc:6 I:0
P:470 SKIP:3129 size=540 bytes
[libx264 @ 0x25d77a0] frame= 81 QP=21.73 NAL=2 Slice:P Poc:10 I:80
P:1907 SKIP:1613 size=12822 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 80 QP=38.93 NAL=0 Slice:B Poc:6 I:0
P:116 SKIP:3484 size=186 bytes
[libx264 @ 0x246aca0] frame= 81 QP=31.27 NAL=2 Slice:P Poc:10 I:53
P:1218 SKIP:2329 size=5370 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).A time=00:00:02.30
bitrate=N/A dup=203 drop=0
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 82 QP=20.84 NAL=2 Slice:P Poc:12 I:182
P:2598 SKIP:820 size=22109 bytes
[libx264 @ 0x25d77a0] frame= 83 QP=20.84 NAL=2 Slice:P Poc:14 I:30
P:601 SKIP:2969 size=3075 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 82 QP=30.04 NAL=2 Slice:P Poc:12 I:120
P:1582 SKIP:1898 size=6972 bytes
[libx264 @ 0x246aca0] frame= 83 QP=31.37 NAL=2 Slice:P Poc:14 I:5
P:332 SKIP:3263 size=1413 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 84 QP=19.77 NAL=2 Slice:P Poc:16 I:407
P:2687 SKIP:506 size=21537 bytes
[libx264 @ 0x25d77a0] frame= 85 QP=19.54 NAL=2 Slice:P Poc:18 I:56
P:681 SKIP:2863 size=2885 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 84 QP=28.79 NAL=2 Slice:P Poc:16 I:172
P:1461 SKIP:1967 size=6200 bytes
[libx264 @ 0x246aca0] frame= 85 QP=31.21 NAL=2 Slice:P Poc:18 I:7
P:255 SKIP:3338 size=1034 bytes
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 86 QP=19.36 NAL=2 Slice:P Poc:20 I:299
P:2673 SKIP:628 size=25632 bytes
[libx264 @ 0x25d77a0] frame= 87 QP=19.22 NAL=2 Slice:P Poc:28 I:586
P:2822 SKIP:192 size=34164 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 86 QP=28.41 NAL=2 Slice:P Poc:20 I:135
P:1589 SKIP:1876 size=7108 bytes
[libx264 @ 0x246aca0] frame= 87 QP=28.08 NAL=2 Slice:P Poc:28 I:223
P:1673 SKIP:1704 size=6850 bytes
[AVIOContext @ 0x24b0000] Statistics: 0 seeks, 2 writeouts
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 88 QP=19.58 NAL=2 Slice:B Poc:24 I:23
P:1378 SKIP:2161 size=3286 bytes
[libx264 @ 0x25d77a0] frame= 89 QP=17.96 NAL=0 Slice:B Poc:22 I:3
P:308 SKIP:3289 size=522 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 88 QP=26.44 NAL=2 Slice:B Poc:24 I:5
P:237 SKIP:3357 size=370 bytes
[libx264 @ 0x246aca0] frame= 89 QP=37.00 NAL=0 Slice:B Poc:22 I:0
P:1 SKIP:3599 size=37 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 90 QP=17.85 NAL=0 Slice:B Poc:26 I:3
P:647 SKIP:2950 size=727 bytes
[libx264 @ 0x25d77a0] frame= 91 QP=18.59 NAL=2 Slice:P Poc:30 I:134
P:1936 SKIP:1530 size=12617 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 90 QP=34.51 NAL=0 Slice:B Poc:26 I:0
P:214 SKIP:3386 size=298 bytes
[libx264 @ 0x246aca0] frame= 91 QP=28.23 NAL=2 Slice:P Poc:30 I:36
P:1055 SKIP:2509 size=4639 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 92 QP=17.21 NAL=2 Slice:P Poc:32 I:412
P:2987 SKIP:201 size=38715 bytes
[libx264 @ 0x25d77a0] frame= 93 QP=17.58 NAL=2 Slice:P Poc:34 I:85
P:899 SKIP:2616 size=4526 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 92 QP=26.12 NAL=2 Slice:P Poc:32 I:196
P:1910 SKIP:1494 size=9480 bytes
[libx264 @ 0x246aca0] frame= 93 QP=27.76 NAL=2 Slice:P Poc:34 I:8
P:320 SKIP:3272 size=1278 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 94 QP=16.72 NAL=2 Slice:P Poc:36 I:311
P:3008 SKIP:281 size=38245 bytes
[libx264 @ 0x25d77a0] frame= 95 QP=17.01 NAL=2 Slice:P Poc:38 I:69
P:912 SKIP:2619 size=4902 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 94 QP=25.82 NAL=2 Slice:P Poc:36 I:185
P:2025 SKIP:1390 size=10120 bytes
[libx264 @ 0x246aca0] frame= 95 QP=27.48 NAL=2 Slice:P Poc:38 I:6
P:359 SKIP:3235 size=1580 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 96 QP=15.97 NAL=2 Slice:P Poc:40 I:313
P:3078 SKIP:209 size=43824 bytes
[libx264 @ 0x25d77a0] frame= 97 QP=16.37 NAL=2 Slice:P Poc:48 I:359
P:3030 SKIP:211 size=38078 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 96 QP=24.93 NAL=2 Slice:P Poc:40 I:160
P:2028 SKIP:1412 size=11032 bytes
[libx264 @ 0x246aca0] frame= 97 QP=25.57 NAL=2 Slice:P Poc:48 I:108
P:1733 SKIP:1759 size=7696 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 98 QP=18.11 NAL=2 Slice:B Poc:44 I:35
P:2581 SKIP:909 size=10305 bytes
[libx264 @ 0x25d77a0] frame= 99 QP=16.81 NAL=0 Slice:B Poc:42 I:1
P:308 SKIP:3291 size=594 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 98 QP=23.24 NAL=2 Slice:B Poc:44 I:20
P:623 SKIP:2956 size=1047 bytes
[libx264 @ 0x246aca0] frame= 99 QP=26.74 NAL=0 Slice:B Poc:42 I:0
P:5 SKIP:3595 size=46 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 100 QP=16.49 NAL=0 Slice:B Poc:46 I:4
P:666 SKIP:2930 size=835 bytes
[libx264 @ 0x25d77a0] frame= 101 QP=15.91 NAL=2 Slice:P Poc:50 I:65
P:1925 SKIP:1610 size=13585 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 100 QP=23.57 NAL=0 Slice:B Poc:46 I:1
P:373 SKIP:3226 size=510 bytes
[libx264 @ 0x246aca0] frame= 101 QP=25.70 NAL=2 Slice:P Poc:50 I:23
P:1111 SKIP:2466 size=5211 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 102 QP=14.75 NAL=2 Slice:P Poc:52 I:305
P:3155 SKIP:140 size=51629 bytes
[libx264 @ 0x25d77a0] frame= 103 QP=14.90 NAL=2 Slice:P Poc:54 I:41
P:1030 SKIP:2529 size=5062 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 102 QP=23.79 NAL=2 Slice:P Poc:52 I:172
P:2188 SKIP:1240 size=12369 bytes
[libx264 @ 0x246aca0] frame= 103 QP=24.58 NAL=2 Slice:P Poc:54 I:20
P:417 SKIP:3163 size=1809 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 104 QP=14.31 NAL=2 Slice:P Poc:56 I:280
P:3162 SKIP:158 size=50670 bytes
[libx264 @ 0x25d77a0] frame= 105 QP=14.64 NAL=2 Slice:P Poc:58 I:25
P:914 SKIP:2661 size=4253 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 104 QP=23.40 NAL=2 Slice:P Poc:56 I:167
P:2097 SKIP:1336 size=11434 bytes
[libx264 @ 0x246aca0] frame= 105 QP=23.53 NAL=2 Slice:P Poc:58 I:20
P:294 SKIP:3286 size=1301 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 106 QP=14.15 NAL=2 Slice:P Poc:60 I:358
P:3141 SKIP:101 size=59200 bytes
[libx264 @ 0x25d77a0] frame= 107 QP=14.35 NAL=2 Slice:P Poc:62 I:21
P:1144 SKIP:2435 size=6092 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 106 QP=22.97 NAL=2 Slice:P Poc:60 I:261
P:2395 SKIP:944 size=15911 bytes
[libx264 @ 0x246aca0] frame= 107 QP=23.35 NAL=2 Slice:P Poc:62 I:20
P:403 SKIP:3177 size=1901 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 108 QP=13.63 NAL=2 Slice:P Poc:64 I:390
P:3028 SKIP:182 size=39767 bytes
[libx264 @ 0x25d77a0] frame= 109 QP=14.19 NAL=2 Slice:P Poc:66 I:15
P:511 SKIP:3074 size=1631 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 108 QP=21.70 NAL=2 Slice:P Poc:64 I:242
P:1749 SKIP:1609 size=7411 bytes
[libx264 @ 0x246aca0] frame= 109 QP=20.55 NAL=2 Slice:P Poc:66 I:25
P:135 SKIP:3440 size=684 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 110 QP=14.62 NAL=2 Slice:P Poc:68 I:446
P:3048 SKIP:106 size=50861 bytes
[libx264 @ 0x25d77a0] frame= 111 QP=14.60 NAL=2 Slice:P Poc:70 I:40
P:848 SKIP:2712 size=3935 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 110 QP=22.42 NAL=2 Slice:P Poc:68 I:307
P:2237 SKIP:1056 size=13623 bytes
[libx264 @ 0x246aca0] frame= 111 QP=21.80 NAL=2 Slice:P Poc:70 I:28
P:274 SKIP:3298 size=1301 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 112 QP=14.49 NAL=2 Slice:P Poc:72 I:386
P:3065 SKIP:149 size=50691 bytes
[libx264 @ 0x25d77a0] frame= 113 QP=15.04 NAL=2 Slice:P Poc:74 I:10
P:400 SKIP:3190 size=1138 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 112 QP=22.46 NAL=2 Slice:P Poc:72 I:257
P:2262 SKIP:1081 size=13951 bytes
[libx264 @ 0x246aca0] frame= 113 QP=21.15 NAL=2 Slice:P Poc:74 I:22
P:92 SKIP:3486 size=412 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 114 QP=15.97 NAL=2 Slice:P Poc:76 I:402
P:3028 SKIP:170 size=40461 bytes
[libx264 @ 0x25d77a0] frame= 115 QP=16.57 NAL=2 Slice:P Poc:78 I:37
P:610 SKIP:2953 size=2642 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 114 QP=23.30 NAL=2 Slice:P Poc:76 I:196
P:2106 SKIP:1298 size=10893 bytes
[libx264 @ 0x246aca0] frame= 115 QP=23.25 NAL=2 Slice:P Poc:78 I:14
P:169 SKIP:3417 size=729 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 116 QP=15.91 NAL=2 Slice:P Poc:80 I:489
P:2982 SKIP:129 size=38437 bytes
[libx264 @ 0x25d77a0] frame= 117 QP=18.17 NAL=2 Slice:P Poc:86 I:230
P:1420 SKIP:1950 size=5784 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 116 QP=22.89 NAL=2 Slice:P Poc:80 I:252
P:1919 SKIP:1429 size=9610 bytes
[libx264 @ 0x246aca0] frame= 117 QP=20.47 NAL=2 Slice:P Poc:86 I:67
P:210 SKIP:3323 size=625 bytes
[mpegts @ 0x2440fc0] PES packet size mismatch
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 118 QP=18.36 NAL=2 Slice:B Poc:84 I:2
P:436 SKIP:3159 size=1310 bytes
[libx264 @ 0x25d77a0] frame= 119 QP=14.86 NAL=0 Slice:B Poc:82 I:0
P:407 SKIP:3191 size=815 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 118 QP=19.99 NAL=2 Slice:B Poc:84 I:2
P:29 SKIP:3569 size=103 bytes
[libx264 @ 0x246aca0] frame= 119 QP=19.33 NAL=0 Slice:B Poc:82 I:1
P:38 SKIP:3561 size=108 bytes
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 120 QP=14.45 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=144200 bytes
[libx264 @ 0x25d77a0] frame= 121 QP=14.31 NAL=2 Slice:P Poc:2 I:31
P:434 SKIP:3135 size=1477 bytes
*** 1 dup!
[libx264 @ 0x246aca0] frame= 120 QP=22.24 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=70386 bytes
[AVIOContext @ 0x10d225e0] Statistics: 0 seeks, 132 writeouts
[hls @ 0x246a1e0] EXT-X-MEDIA-SEQUENCE:0
[AVIOContext @ 0x10d225e0] Statistics: 0 seeks, 1 writeouts
[libx264 @ 0x246aca0] frame= 121 QP=21.23 NAL=2 Slice:P Poc:2 I:36
P:412 SKIP:3152 size=1432 bytes
[mpeg2video @ 0x245e140] ac-tex damaged at 90 31
[mpeg2video @ 0x245e140] Warning MVs not available
[mpeg2video @ 0x245e140] concealing 4402 DC, 4402 AC, 4402 MV errors in
P frame
[ac3 @ 0x245ecc0] incomplete frame
[Parsed_fps_0 @ 0x2411420] Dropping 1 frame(s).
*** 1 dup!
[libx264 @ 0x25d77a0] frame= 122 QP=14.59 NAL=2 Slice:P Poc:4 I:328
P:3137 SKIP:135 size=57869 bytes
[libx264 @ 0x25d77a0] frame= 123 QP=14.82 NAL=2 Slice:P Poc:6 I:20
P:1028 SKIP:2552 size=5107 bytes
*** 1 dup!
[libx264 @ 0x25d77a0] scene cut at 174 Icost:2049115 Pcost:2006553
ratio:0.0208 bias:0.1387 gop:54 (imb:3186 pmb:168)
[libx264 @ 0x246aca0] frame= 122 QP=21.41 NAL=2 Slice:P Poc:4 I:233
P:2646 SKIP:721 size=20496 bytes
[libx264 @ 0x246aca0] frame= 123 QP=22.14 NAL=2 Slice:P Poc:6 I:26
P:541 SKIP:3033 size=2346 bytes
movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]: Value
too large for defined data type
[libx264 @ 0x246aca0] scene cut at 174 Icost:2049115 Pcost:2006553
ratio:0.0208 bias:0.1387 gop:54 (imb:3186 pmb:168)
[AVIOContext @ 0x27d36e0] Statistics: 0 seeks, 2 writeouts
[output stream 0:0 @ 0x2465ac0] EOF on sink link output stream 0:0:default.
[output stream 1:0 @ 0x25a3f20] EOF on sink link output stream 1:0:default.
[output stream 2:0 @ 0x2408740] EOF on sink link output stream 2:0:default.
[output stream 3:0 @ 0x240a4e0] EOF on sink link output stream 3:0:default.
[output stream 0:1 @ 0x2428ec0] EOF on sink link output stream 0:1:default.
[output stream 1:1 @ 0x2403a60] EOF on sink link output stream 1:1:default.
No more output streams to write to, finishing.
[libx264 @ 0x25d77a0] frame= 124 QP=18.15 NAL=2 Slice:P Poc:8 I:226
P:2594 SKIP:780 size=20098 bytes
[libx264 @ 0x25d77a0] frame= 125 QP=17.27 NAL=2 Slice:P Poc:10 I:7
P:76 SKIP:3517 size=219 bytes
[libx264 @ 0x25d77a0] frame= 126 QP=21.51 NAL=2 Slice:P Poc:12 I:86
P:1886 SKIP:1628 size=10125 bytes
[libx264 @ 0x25d77a0] frame= 127 QP=22.38 NAL=2 Slice:P Poc:20 I:118
P:1861 SKIP:1621 size=8817 bytes
[libx264 @ 0x25d77a0] frame= 128 QP=19.77 NAL=2 Slice:B Poc:16 I:6
P:593 SKIP:2995 size=1017 bytes
[libx264 @ 0x25d77a0] frame= 129 QP=19.83 NAL=0 Slice:B Poc:14 I:1
P:51 SKIP:3548 size=127 bytes
[libx264 @ 0x25d77a0] frame= 130 QP=19.36 NAL=0 Slice:B Poc:18 I:0
P:372 SKIP:3228 size=458 bytes
[libx264 @ 0x25d77a0] frame= 131 QP=18.00 NAL=2 Slice:P Poc:22 I:6
P:63 SKIP:3531 size=198 bytes
[libx264 @ 0x25d77a0] frame= 132 QP=24.53 NAL=2 Slice:P Poc:24 I:45
P:1059 SKIP:2496 size=4180 bytes
[libx264 @ 0x25d77a0] frame= 133 QP=23.71 NAL=2 Slice:P Poc:26 I:8
P:80 SKIP:3512 size=358 bytes
[libx264 @ 0x25d77a0] frame= 134 QP=25.14 NAL=2 Slice:P Poc:28 I:69
P:1172 SKIP:2359 size=4476 bytes
[libx264 @ 0x25d77a0] frame= 135 QP=25.69 NAL=2 Slice:P Poc:30 I:2
P:11 SKIP:3587 size=77 bytes
[libx264 @ 0x25d77a0] frame= 136 QP=26.13 NAL=2 Slice:P Poc:32 I:114
P:1306 SKIP:2180 size=4954 bytes
[libx264 @ 0x25d77a0] frame= 137 QP=26.76 NAL=2 Slice:P Poc:40 I:71
P:989 SKIP:2540 size=3290 bytes
[libx264 @ 0x25d77a0] frame= 138 QP=22.22 NAL=2 Slice:B Poc:36 I:8
P:404 SKIP:3188 size=443 bytes
[libx264 @ 0x25d77a0] frame= 139 QP=27.30 NAL=0 Slice:B Poc:34 I:0
P:2 SKIP:3598 size=42 bytes
[libx264 @ 0x25d77a0] frame= 140 QP=23.05 NAL=0 Slice:B Poc:38 I:1
P:275 SKIP:3324 size=319 bytes
[libx264 @ 0x25d77a0] frame= 141 QP=27.95 NAL=2 Slice:P Poc:42 I:1
P:9 SKIP:3590 size=66 bytes
[libx264 @ 0x25d77a0] frame= 142 QP=30.64 NAL=2 Slice:P Poc:44 I:21
P:699 SKIP:2880 size=1752 bytes
[libx264 @ 0x25d77a0] frame= 143 QP=31.29 NAL=2 Slice:P Poc:46 I:1
P:61 SKIP:3538 size=228 bytes
[libx264 @ 0x25d77a0] frame= 144 QP=31.22 NAL=2 Slice:P Poc:48 I:21
P:682 SKIP:2897 size=1584 bytes
[libx264 @ 0x25d77a0] frame= 145 QP=33.00 NAL=2 Slice:P Poc:50 I:0
P:6 SKIP:3594 size=45 bytes
[libx264 @ 0x25d77a0] frame= 146 QP=32.64 NAL=2 Slice:P Poc:52 I:15
P:597 SKIP:2988 size=1533 bytes
[libx264 @ 0x25d77a0] frame= 147 QP=31.30 NAL=2 Slice:P Poc:54 I:0
P:39 SKIP:3561 size=133 bytes
[libx264 @ 0x25d77a0] frame= 148 QP=31.80 NAL=2 Slice:P Poc:56 I:4
P:118 SKIP:3478 size=344 bytes
[libx264 @ 0x25d77a0] frame= 149 QP=26.25 NAL=2 Slice:P Poc:58 I:2
P:5 SKIP:3593 size=51 bytes
[libx264 @ 0x25d77a0] frame= 150 QP=29.56 NAL=2 Slice:P Poc:60 I:28
P:546 SKIP:3026 size=1237 bytes
[libx264 @ 0x25d77a0] frame= 151 QP=29.19 NAL=2 Slice:P Poc:62 I:3
P:16 SKIP:3581 size=92 bytes
[libx264 @ 0x25d77a0] frame= 152 QP=33.20 NAL=2 Slice:P Poc:64 I:12
P:596 SKIP:2992 size=1203 bytes
[libx264 @ 0x25d77a0] frame= 153 QP=38.10 NAL=2 Slice:P Poc:66 I:0
P:19 SKIP:3581 size=70 bytes
[libx264 @ 0x25d77a0] frame= 154 QP=34.94 NAL=2 Slice:P Poc:68 I:29
P:653 SKIP:2918 size=1431 bytes
[libx264 @ 0x25d77a0] frame= 155 QP=31.47 NAL=2 Slice:P Poc:70 I:1
P:20 SKIP:3579 size=82 bytes
[libx264 @ 0x25d77a0] frame= 156 QP=35.85 NAL=2 Slice:P Poc:72 I:21
P:677 SKIP:2902 size=1414 bytes
[libx264 @ 0x25d77a0] frame= 157 QP=36.05 NAL=2 Slice:P Poc:80 I:19
P:626 SKIP:2955 size=1287 bytes
[libx264 @ 0x25d77a0] frame= 158 QP=41.00 NAL=2 Slice:B Poc:76 I:0
P:210 SKIP:3390 size=217 bytes
[libx264 @ 0x25d77a0] frame= 159 QP=43.00 NAL=0 Slice:B Poc:74 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 160 QP=36.26 NAL=0 Slice:B Poc:78 I:1
P:162 SKIP:3436 size=192 bytes
[libx264 @ 0x25d77a0] frame= 161 QP=31.35 NAL=2 Slice:P Poc:82 I:2
P:20 SKIP:3578 size=83 bytes
[libx264 @ 0x25d77a0] frame= 162 QP=36.14 NAL=2 Slice:P Poc:84 I:22
P:549 SKIP:3029 size=1169 bytes
[libx264 @ 0x25d77a0] frame= 163 QP=38.30 NAL=2 Slice:P Poc:86 I:0
P:23 SKIP:3577 size=95 bytes
[libx264 @ 0x25d77a0] frame= 164 QP=36.23 NAL=2 Slice:P Poc:88 I:27
P:599 SKIP:2974 size=1280 bytes
[libx264 @ 0x25d77a0] frame= 165 QP=38.00 NAL=2 Slice:P Poc:90 I:0
P:11 SKIP:3589 size=62 bytes
[libx264 @ 0x25d77a0] frame= 166 QP=36.58 NAL=2 Slice:P Poc:92 I:38
P:645 SKIP:2917 size=1448 bytes
[libx264 @ 0x25d77a0] frame= 167 QP=37.63 NAL=2 Slice:P Poc:100 I:25
P:527 SKIP:3048 size=1058 bytes
[libx264 @ 0x25d77a0] frame= 168 QP=40.06 NAL=2 Slice:B Poc:96 I:0
P:98 SKIP:3502 size=141 bytes
[libx264 @ 0x25d77a0] frame= 169 QP=44.00 NAL=0 Slice:B Poc:94 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x25d77a0] frame= 170 QP=43.72 NAL=0 Slice:B Poc:98 I:1
P:107 SKIP:3492 size=188 bytes
[libx264 @ 0x25d77a0] frame= 171 QP=42.00 NAL=2 Slice:P Poc:102 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x25d77a0] frame= 172 QP=41.61 NAL=2 Slice:P Poc:104 I:13
P:323 SKIP:3264 size=647 bytes
[libx264 @ 0x25d77a0] frame= 173 QP=45.00 NAL=2 Slice:P Poc:106 I:0
P:1 SKIP:3599 size=38 bytes
[libx264 @ 0x25d77a0] frame= 174 QP=29.01 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=36187 bytes
[libx264 @ 0x25d77a0] frame= 175 QP=41.00 NAL=2 Slice:P Poc:2 I:0
P:0 SKIP:3600 size=36 bytes
[libx264 @ 0x25d77a0] frame= 176 QP=39.01 NAL=2 Slice:P Poc:4 I:16
P:416 SKIP:3168 size=644 bytes
[libx264 @ 0x25d77a0] frame= 177 QP=41.00 NAL=2 Slice:P Poc:6 I:0
P:8 SKIP:3592 size=45 bytes
[libx264 @ 0x25d77a0] frame= 178 QP=38.51 NAL=2 Slice:P Poc:8 I:32
P:388 SKIP:3180 size=827 bytes
[libx264 @ 0x25d77a0] frame= 179 QP=38.11 NAL=2 Slice:P Poc:10 I:2
P:11 SKIP:3587 size=70 bytes
[libx264 @ 0x25d77a0] frame= 180 QP=38.26 NAL=2 Slice:P Poc:12 I:9
P:34 SKIP:3557 size=137 bytes
[libx264 @ 0x25d77a0] frame= 181 QP=41.00 NAL=2 Slice:P Poc:14 I:0
P:0 SKIP:3600 size=36 bytes
[libx264 @ 0x25d77a0] frame= 182 QP=39.62 NAL=2 Slice:P Poc:16 I:39
P:460 SKIP:3101 size=1002 bytes
[libx264 @ 0x25d77a0] frame= 183 QP=42.00 NAL=2 Slice:P Poc:18 I:0
P:3 SKIP:3597 size=39 bytes
[libx264 @ 0x25d77a0] frame= 184 QP=41.00 NAL=2 Slice:P Poc:20 I:37
P:427 SKIP:3136 size=906 bytes
[libx264 @ 0x25d77a0] frame= 185 QP=42.00 NAL=2 Slice:P Poc:22 I:0
P:0 SKIP:3600 size=36 bytes
[libx264 @ 0x246aca0] frame= 124 QP=24.90 NAL=2 Slice:P Poc:8 I:57
P:1071 SKIP:2472 size=4010 bytes
[libx264 @ 0x246aca0] frame= 125 QP=23.94 NAL=2 Slice:P Poc:10 I:0
P:3 SKIP:3597 size=43 bytes
[libx264 @ 0x246aca0] frame= 126 QP=28.76 NAL=2 Slice:P Poc:12 I:24
P:763 SKIP:2813 size=2171 bytes
[libx264 @ 0x246aca0] frame= 127 QP=29.78 NAL=2 Slice:P Poc:20 I:32
P:811 SKIP:2757 size=2020 bytes
[libx264 @ 0x246aca0] frame= 128 QP=24.79 NAL=2 Slice:B Poc:16 I:0
P:79 SKIP:3521 size=131 bytes
[libx264 @ 0x246aca0] frame= 129 QP=37.00 NAL=0 Slice:B Poc:14 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 130 QP=30.16 NAL=0 Slice:B Poc:18 I:0
P:71 SKIP:3529 size=130 bytes
[libx264 @ 0x246aca0] frame= 131 QP=31.68 NAL=2 Slice:P Poc:22 I:1
P:16 SKIP:3583 size=94 bytes
[libx264 @ 0x246aca0] frame= 132 QP=32.63 NAL=2 Slice:P Poc:24 I:5
P:530 SKIP:3065 size=1202 bytes
[libx264 @ 0x246aca0] frame= 133 QP=26.12 NAL=2 Slice:P Poc:26 I:4
P:37 SKIP:3559 size=158 bytes
[libx264 @ 0x246aca0] frame= 134 QP=31.85 NAL=2 Slice:P Poc:28 I:18
P:645 SKIP:2937 size=1457 bytes
[libx264 @ 0x246aca0] frame= 135 QP=31.54 NAL=2 Slice:P Poc:30 I:1
P:9 SKIP:3590 size=60 bytes
[libx264 @ 0x246aca0] frame= 136 QP=30.69 NAL=2 Slice:P Poc:32 I:51
P:761 SKIP:2788 size=2002 bytes
[libx264 @ 0x246aca0] frame= 137 QP=31.87 NAL=2 Slice:P Poc:40 I:29
P:644 SKIP:2927 size=1458 bytes
[libx264 @ 0x246aca0] frame= 138 QP=28.94 NAL=2 Slice:B Poc:36 I:0
P:162 SKIP:3438 size=196 bytes
[libx264 @ 0x246aca0] frame= 139 QP=29.42 NAL=0 Slice:B Poc:34 I:0
P:1 SKIP:3599 size=40 bytes
[libx264 @ 0x246aca0] frame= 140 QP=28.42 NAL=0 Slice:B Poc:38 I:0
P:122 SKIP:3478 size=195 bytes
[libx264 @ 0x246aca0] frame= 141 QP=33.62 NAL=2 Slice:P Poc:42 I:0
P:22 SKIP:3578 size=91 bytes
[libx264 @ 0x246aca0] frame= 142 QP=34.06 NAL=2 Slice:P Poc:44 I:13
P:591 SKIP:2996 size=1193 bytes
[libx264 @ 0x246aca0] frame= 143 QP=35.00 NAL=2 Slice:P Poc:46 I:0
P:27 SKIP:3573 size=99 bytes
[libx264 @ 0x246aca0] frame= 144 QP=34.23 NAL=2 Slice:P Poc:48 I:13
P:511 SKIP:3076 size=1032 bytes
[libx264 @ 0x246aca0] frame= 145 QP=37.24 NAL=2 Slice:P Poc:50 I:0
P:12 SKIP:3588 size=59 bytes
[libx264 @ 0x246aca0] frame= 146 QP=34.19 NAL=2 Slice:P Poc:52 I:14
P:531 SKIP:3055 size=1219 bytes
[libx264 @ 0x246aca0] frame= 147 QP=35.39 NAL=2 Slice:P Poc:54 I:0
P:45 SKIP:3555 size=150 bytes
[libx264 @ 0x246aca0] frame= 148 QP=34.62 NAL=2 Slice:P Poc:56 I:5
P:90 SKIP:3505 size=269 bytes
[libx264 @ 0x246aca0] frame= 149 QP=29.95 NAL=2 Slice:P Poc:58 I:1
P:12 SKIP:3587 size=63 bytes
[libx264 @ 0x246aca0] frame= 150 QP=35.25 NAL=2 Slice:P Poc:60 I:17
P:456 SKIP:3127 size=982 bytes
[libx264 @ 0x246aca0] frame= 151 QP=36.32 NAL=2 Slice:P Poc:62 I:0
P:26 SKIP:3574 size=92 bytes
[libx264 @ 0x246aca0] frame= 152 QP=35.60 NAL=2 Slice:P Poc:64 I:9
P:560 SKIP:3031 size=1057 bytes
[libx264 @ 0x246aca0] frame= 153 QP=37.21 NAL=2 Slice:P Poc:66 I:0
P:38 SKIP:3562 size=137 bytes
[libx264 @ 0x246aca0] frame= 154 QP=36.74 NAL=2 Slice:P Poc:68 I:21
P:629 SKIP:2950 size=1303 bytes
[libx264 @ 0x246aca0] frame= 155 QP=35.50 NAL=2 Slice:P Poc:70 I:2
P:18 SKIP:3580 size=89 bytes
[libx264 @ 0x246aca0] frame= 156 QP=36.61 NAL=2 Slice:P Poc:72 I:21
P:663 SKIP:2916 size=1393 bytes
[libx264 @ 0x246aca0] frame= 157 QP=37.25 NAL=2 Slice:P Poc:80 I:23
P:573 SKIP:3004 size=1141 bytes
[libx264 @ 0x246aca0] frame= 158 QP=40.78 NAL=2 Slice:B Poc:76 I:0
P:170 SKIP:3430 size=179 bytes
[libx264 @ 0x246aca0] frame= 159 QP=44.00 NAL=0 Slice:B Poc:74 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 160 QP=44.00 NAL=0 Slice:B Poc:78 I:0
P:160 SKIP:3440 size=219 bytes
[libx264 @ 0x246aca0] frame= 161 QP=37.68 NAL=2 Slice:P Poc:82 I:1
P:10 SKIP:3589 size=66 bytes
[libx264 @ 0x246aca0] frame= 162 QP=37.32 NAL=2 Slice:P Poc:84 I:17
P:508 SKIP:3075 size=925 bytes
[libx264 @ 0x246aca0] frame= 163 QP=40.48 NAL=2 Slice:P Poc:86 I:1
P:18 SKIP:3581 size=88 bytes
[libx264 @ 0x246aca0] frame= 164 QP=38.70 NAL=2 Slice:P Poc:88 I:24
P:512 SKIP:3064 size=1117 bytes
[libx264 @ 0x246aca0] frame= 165 QP=40.00 NAL=2 Slice:P Poc:90 I:0
P:23 SKIP:3577 size=84 bytes
[libx264 @ 0x246aca0] frame= 166 QP=39.05 NAL=2 Slice:P Poc:92 I:26
P:548 SKIP:3026 size=1087 bytes
[libx264 @ 0x246aca0] frame= 167 QP=39.77 NAL=2 Slice:P Poc:100 I:15
P:447 SKIP:3138 size=900 bytes
[libx264 @ 0x246aca0] frame= 168 QP=42.68 NAL=2 Slice:B Poc:96 I:0
P:36 SKIP:3564 size=86 bytes
[libx264 @ 0x246aca0] frame= 169 QP=45.00 NAL=0 Slice:B Poc:94 I:0
P:0 SKIP:3600 size=35 bytes
[libx264 @ 0x246aca0] frame= 170 QP=45.00 NAL=0 Slice:B Poc:98 I:0
P:43 SKIP:3557 size=104 bytes
[libx264 @ 0x246aca0] frame= 171 QP=46.00 NAL=2 Slice:P Poc:102 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 172 QP=46.65 NAL=2 Slice:P Poc:104 I:4
P:148 SKIP:3448 size=274 bytes
[libx264 @ 0x246aca0] frame= 173 QP=49.00 NAL=2 Slice:P Poc:106 I:0
P:0 SKIP:3600 size=37 bytes
[libx264 @ 0x246aca0] frame= 174 QP=31.82 NAL=3 Slice:I Poc:0 I:3600
P:0 SKIP:0 size=27813 bytes
[libx264 @ 0x246aca0] frame= 175 QP=45.00 NAL=2 Slice:P Poc:2 I:0
P:0 SKIP:3600 size=36 bytes
[libx264 @ 0x246aca0] frame= 176 QP=42.66 NAL=2 Slice:P Poc:4 I:17
P:286 SKIP:3297 size=416 bytes
[libx264 @ 0x246aca0] frame= 177 QP=45.00 NAL=2 Slice:P Poc:6 I:0
P:13 SKIP:3587 size=59 bytes
[libx264 @ 0x246aca0] frame= 178 QP=41.84 NAL=2 Slice:P Poc:8 I:45
P:382 SKIP:3173 size=756 bytes
[libx264 @ 0x246aca0] frame= 179 QP=44.00 NAL=2 Slice:P Poc:10 I:1
P:13 SKIP:3586 size=64 bytes
[libx264 @ 0x246aca0] frame= 180 QP=41.91 NAL=2 Slice:P Poc:12 I:9
P:20 SKIP:3571 size=107 bytes
[libx264 @ 0x246aca0] frame= 181 QP=45.00 NAL=2 Slice:P Poc:14 I:0
P:0 SKIP:3600 size=36 bytes
[libx264 @ 0x246aca0] frame= 182 QP=42.56 NAL=2 Slice:P Poc:16 I:46
P:376 SKIP:3178 size=762 bytes
[libx264 @ 0x246aca0] frame= 183 QP=46.00 NAL=2 Slice:P Poc:18 I:0
P:2 SKIP:3598 size=41 bytes
[libx264 @ 0x246aca0] frame= 184 QP=43.49 NAL=2 Slice:P Poc:20 I:63
P:464 SKIP:3073 size=964 bytes
[libx264 @ 0x246aca0] frame= 185 QP=46.00 NAL=2 Slice:P Poc:22 I:0
P:0 SKIP:3600 size=36 bytes
[AVIOContext @ 0x10d0ef80] Statistics: 0 seeks, 146 writeouts
[AVIOContext @ 0x10d17180] Statistics: 0 seeks, 2 writeouts
[hls @ 0x28663c0] EXT-X-MEDIA-SEQUENCE:0
Last message repeated 1 times
[AVIOContext @ 0x2471100] Statistics: 0 seeks, 1 writeouts
[AVIOContext @ 0x2467b20] Statistics: 0 seeks, 1 writeouts
[AVIOContext @ 0x28dd040] Statistics: 0 seeks, 79 writeouts
[AVIOContext @ 0x2461980] Statistics: 0 seeks, 1 writeouts
[hls @ 0x28663c0] EXT-X-MEDIA-SEQUENCE:0
[AVIOContext @ 0x243e400] Statistics: 0 seeks, 1 writeouts
[AVIOContext @ 0x27c0000] Statistics: 0 seeks, 75 writeouts
[hls @ 0x246a1e0] EXT-X-MEDIA-SEQUENCE:0
[AVIOContext @ 0x27c0a80] Statistics: 0 seeks, 1 writeouts
[AVIOContext @ 0x10d2d120] Statistics: 0 seeks, 3 writeouts
[hls @ 0x281e940] EXT-X-MEDIA-SEQUENCE:0
[AVIOContext @ 0x2471100] Statistics: 0 seeks, 1 writeouts
frame= 186 fps=122 q=-1.0 Lq=-1.0 q=1.6 size=N/A time=00:00:04.00
bitrate=N/A dup=245 drop=0
video:1652kB audio:119kB subtitle:0kB other streams:0kB global
headers:0kB muxing overhead: unknown
Input file #0
(movie=/dev/dvb/adapter6/dvr0:f=mpegts:s=dv+da[out0+subcc][out1]):
Input stream #0:0 (video): 64 packets read (199065600 bytes); 64
frames decoded;
Input stream #0:1 (audio): 98 packets read (3612672 bytes); 98 frames
decoded (150528 samples);
Input stream #0:2 (subtitle): 64 packets read (3840 bytes); 1 frames
decoded;
Total: 226 packets (202682112 bytes) demuxed
Output file #0 (/var/www/html/stream/test/v.mid.m3u8):
Output stream #0:0 (video): 186 frames encoded; 186 packets muxed
(1182539 bytes);
Output stream #0:1 (audio): 147 frames encoded (150528 samples); 148
packets muxed (49979 bytes);
Output stream #0:2 (subtitle): 1 frames encoded; 1 packets muxed (25
bytes);
Total: 335 packets (1232543 bytes) muxed
Output file #1 (/var/www/html/stream/test/v.low.m3u8):
Output stream #1:0 (video): 186 frames encoded; 186 packets muxed
(394363 bytes);
Output stream #1:1 (audio): 147 frames encoded (150528 samples); 148
packets muxed (49979 bytes);
Total: 334 packets (444342 bytes) muxed
Output file #2 (/var/www/html/stream/test/a.low.m3u8):
Output stream #2:0 (audio): 98 frames encoded (100352 samples); 99
packets muxed (21911 bytes);
Total: 99 packets (21911 bytes) muxed
Output file #3 (/var/www/html/stream/test/t.%Y-%m-%d_%H:%M:%S.jpg):
Output stream #3:0 (video): 4 frames encoded; 4 packets muxed (114365
bytes);
Total: 4 packets (114365 bytes) muxed
226 frames successfully decoded, 0 decoding errors
[Parsed_fps_0 @ 0x2411420] 64 frames in, 3 frames out; 61 frames
dropped, 0 frames duplicated.
[libx264 @ 0x25d77a0] frame I:4 Avg QP:26.51 size: 59078
[libx264 @ 0x25d77a0] frame P:103 Avg QP:27.51 size: 8912
[libx264 @ 0x25d77a0] frame B:79 Avg QP:34.29 size: 358
[libx264 @ 0x25d77a0] consecutive B-frames: 43.0% 0.0% 3.2% 53.8%
[libx264 @ 0x25d77a0] mb I I16..4: 26.6% 40.5% 32.9%
[libx264 @ 0x25d77a0] mb P I16..4: 2.2% 0.3% 0.1% P16..4: 17.6%
5.5% 3.2% 0.0% 0.0% skip:71.2%
[libx264 @ 0x25d77a0] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 2.5%
0.4% 0.0% direct: 1.1% skip:95.9% L0:67.3% L1:22.2% BI:10.5%
[libx264 @ 0x25d77a0] final ratefactor: 25.94
[libx264 @ 0x25d77a0] 8x8 transform intra:28.7% inter:22.7%
[libx264 @ 0x25d77a0] coded y,uvDC,uvAC intra: 43.2% 67.3% 43.7% inter:
5.7% 7.0% 1.2%
[libx264 @ 0x25d77a0] i16 v,h,dc,p: 59% 20% 16% 5%
[libx264 @ 0x25d77a0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 30% 22% 20% 4% 4%
5% 4% 4% 5%
[libx264 @ 0x25d77a0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 28% 19% 12% 5% 7%
9% 8% 6% 6%
[libx264 @ 0x25d77a0] i8c dc,h,v,p: 50% 21% 24% 5%
[libx264 @ 0x25d77a0] Weighted P-Frames: Y:0.0% UV:0.0%
[libx264 @ 0x25d77a0] kb/s:3048.66
[libx264 @ 0x246aca0] frame I:4 Avg QP:32.44 size: 31954
[libx264 @ 0x246aca0] frame P:103 Avg QP:33.60 size: 2522
[libx264 @ 0x246aca0] frame B:79 Avg QP:41.11 size: 86
[libx264 @ 0x246aca0] consecutive B-frames: 43.0% 0.0% 3.2% 53.8%
[libx264 @ 0x246aca0] mb I I16..4: 33.9% 46.0% 20.1%
[libx264 @ 0x246aca0] mb P I16..4: 1.1% 0.2% 0.0% P16..4: 11.3%
3.1% 1.2% 0.0% 0.0% skip:83.0%
[libx264 @ 0x246aca0] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 0.8%
0.1% 0.0% direct: 0.1% skip:99.0% L0:79.0% L1:13.6% BI: 7.3%
[libx264 @ 0x246aca0] final ratefactor: 30.91
[libx264 @ 0x246aca0] 8x8 transform intra:37.8% inter:25.8%
[libx264 @ 0x246aca0] coded y,uvDC,uvAC intra: 33.0% 49.4% 18.2% inter:
1.8% 2.3% 0.1%
[libx264 @ 0x246aca0] i16 v,h,dc,p: 52% 23% 17% 7%
[libx264 @ 0x246aca0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 29% 20% 26% 4% 4%
5% 4% 4% 5%
[libx264 @ 0x246aca0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 27% 19% 13% 5% 7%
9% 8% 5% 6%
[libx264 @ 0x246aca0] i8c dc,h,v,p: 57% 19% 21% 4%
[libx264 @ 0x246aca0] Weighted P-Frames: Y:0.0% UV:0.0%
[libx264 @ 0x246aca0] kb/s:1016.69
[AVIOContext @ 0x24496c0] Statistics: 10354688 bytes read, 1 seeks
More information about the ffmpeg-user
mailing list