#8444 closed defect (invalid)
Tee muxer bug with HLS slaves when var_stream_map is in use.
Reported by: | Dennis E. Mungai | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | undetermined |
Version: | git-master | Keywords: | hls, tee |
Cc: | lq@onvideo.cn | Blocked By: | |
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
Summary of the bug:
When the underlying HLS muxer slaves are called up with tee wherein the
var_stream_map
option is specified, the muxers fail with the message:
[hls @ 0x560054bdbe00] Invalid keyval "v:0 [hls @ 0x560054bdbe00] Variant stream info update failed with status ffffffea
Whereas calling up the tee muxer directly succeeds, with no issues.
How to reproduce:
See the scripts below.
The broken one using the tee muxer is as shown:
#! /bin/bash fileio=$1 video=$2 audio=$3 fn=$4 MS='master_pl_name=mainmanifest.m3u8:var_stream_map="v\\:0,agroup\\:audio v\\:1,agroup\\:audio v\\:2,agroup\\:audio v\\:3,agroup\\:audio v\\:4,agroup\\:audio v\\:5,agroup\\:audio v\\:6,agroup\\:audio v\\:7,agroup\\:audio v\\:8,agroup\\:audio a\\:0,agroup\\:audio"' HLSOPTS='use_fifo=1:fifo_options=queue_size=90000\\:recovery_wait_time=1\\:attempt_recovery=1\\:drop_pkts_on_overflow=1\\:recover_any_error=1:f=hls:hls_time=6:hls_segment_type=fmp4' if [ -d /home/brainiarc7/Documents/ffmpeg-ticket/$fileio/broken ] then rm -r /home/brainiarc7/Documents/ffmpeg-ticket/$fileio/broken/* fi ffmpeg -nostdin -y \ -fflags -autobsf+genpts \ -threads 1 -reinit_filter 1 -vsync 1 -async 1 \ -i $fn -filter_complex \ "[$video]yadif=0:-1:0,split=6[s0][s1][s2][s3][s4][s5]; \ [s0]scale=w=1920:h=1080,split=2[v0][v1]; \ [s1]scale=w=1280:h=720,split=2[v2][v3]; \ [s2]scale=w=960:h=540[v4]; \ [s3]scale=w=768:h=432,split=2[v5][v6]; \ [s4]scale=w=640:h=360[v7]; \ [s5]scale=w=416:h=234[v8]" \ -map "[v0]" -b:v:0 7800k -minrate:v:0 7800k -maxrate:v:0 7800k -bufsize:v:0 7800k -c:v:0 libx264 -r:v:0 ntsc \ -profile:v:0 high -preset:v:0 fast -tune:v:0 zerolatency -g:v:0 60 -bf:v:0 0 \ -map "[v1]" -b:v:1 6000k -minrate:v:1 6000k -maxrate:v:1 6000k -bufsize:v:1 6000k -c:v:1 libx264 -r:v:1 ntsc \ -profile:v:1 high -preset:v:1 fast -tune:v:1 zerolatency -g:v:1 60 -bf:v:1 0 \ -map "[v2]" -b:v:2 4500k -minrate:v:2 4500k -maxrate:v:2 4500k -bufsize:v:2 4500k -c:v:2 libx264 -r:v:2 ntsc \ -profile:v:2 high -preset:v:2 fast -tune:v:2 zerolatency -g:v:2 60 -bf:v:2 0 \ -map "[v3]" -b:v:3 3000k -minrate:v:3 3000k -maxrate:v:3 3000k -bufsize:v:3 3000k -c:v:3 libx264 -r:v:3 ntsc \ -profile:v:3 main -preset:v:3 fast -tune:v:3 zerolatency -g:v:3 60 -bf:v:3 0 \ -map "[v4]" -b:v:4 2000k -minrate:v:4 2000k -maxrate:v:4 2000k -bufsize:v:4 2000k -c:v:4 libx264 -r:v:4 ntsc \ -profile:v:4 main -preset:v:4 fast -tune:v:4 zerolatency -g:v:4 60 -bf:v:4 0 \ -map "[v5]" -b:v:5 1100k -minrate:v:5 1100k -maxrate:v:5 1100k -bufsize:v:5 1100k -c:v:5 libx264 -r:v:5 ntsc \ -profile:v:5 main -preset:v:5 fast -tune:v:5 zerolatency -g:v:5 60 -bf:v:5 0 \ -map "[v6]" -b:v:6 730k -minrate:v:6 730k -maxrate:v:6 730k -bufsize:v:6 730k -c:v:6 libx264 -r:v:6 ntsc \ -profile:v:6 main -preset:v:6 fast -tune:v:6 zerolatency -g:v:6 60 -bf:v:6 0 \ -map "[v7]" -b:v:7 365k -minrate:v:7 365k -maxrate:v:7 365k -bufsize:v:7 365k -c:v:7 libx264 -r:v:7 ntsc \ -profile:v:7 baseline -preset:v:7 fast -tune:v:7 zerolatency -g:v:7 60 -bf:v:7 0 \ -map "[v8]" -b:v:8 145k -minrate:v:8 145k -maxrate:v:8 145k -bufsize:v:8 145k -c:v:8 libx264 -r:v:8 ntsc \ -profile:v:8 baseline -preset:v:8 fast -tune:v:8 zerolatency -g:v:8 60 -bf:v:8 0 \ -map $audio -c:a libfdk_aac -ac 2 -ar 48000 -b:a 128k \ -flags +global_header+cgop \ -max_muxing_queue_size 9000000 -threads 2 -f tee \ "[$HLSOPTS:$MS]'/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/broken/Step-%v/manifest.m3u8'"
The one which works, using the HLS muxer, is as shown:
#! /bin/bash fileio=$1 video=$2 audio=$3 fn=$4 if [ -d /home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working ] then rm -r /home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/* fi ffmpeg -nostdin -y \ -fflags -autobsf+genpts \ -threads 1 -reinit_filter 1 -vsync 1 -async 1 \ -i $fn -filter_complex \ "[$video]yadif=0:-1:0,split=6[s0][s1][s2][s3][s4][s5]; \ [s0]scale=w=1920:h=1080,split=2[v0][v1]; \ [s1]scale=w=1280:h=720,split=2[v2][v3]; \ [s2]scale=w=960:h=540[v4]; \ [s3]scale=w=768:h=432,split=2[v5][v6]; \ [s4]scale=w=640:h=360[v7]; \ [s5]scale=w=416:h=234[v8]" \ -map "[v0]" -b:v:0 7800k -minrate:v:0 7800k -maxrate:v:0 7800k -bufsize:v:0 7800k -c:v:0 libx264 -r:v:0 ntsc \ -profile:v:0 high -preset:v:0 fast -tune:v:0 zerolatency -g:v:0 60 -bf:v:0 0 \ -map "[v1]" -b:v:1 6000k -minrate:v:1 6000k -maxrate:v:1 6000k -bufsize:v:1 6000k -c:v:1 libx264 -r:v:1 ntsc \ -profile:v:1 high -preset:v:1 fast -tune:v:1 zerolatency -g:v:1 60 -bf:v:1 0 \ -map "[v2]" -b:v:2 4500k -minrate:v:2 4500k -maxrate:v:2 4500k -bufsize:v:2 4500k -c:v:2 libx264 -r:v:2 ntsc \ -profile:v:2 high -preset:v:2 fast -tune:v:2 zerolatency -g:v:2 60 -bf:v:2 0 \ -map "[v3]" -b:v:3 3000k -minrate:v:3 3000k -maxrate:v:3 3000k -bufsize:v:3 3000k -c:v:3 libx264 -r:v:3 ntsc \ -profile:v:3 main -preset:v:3 fast -tune:v:3 zerolatency -g:v:3 60 -bf:v:3 0 \ -map "[v4]" -b:v:4 2000k -minrate:v:4 2000k -maxrate:v:4 2000k -bufsize:v:4 2000k -c:v:4 libx264 -r:v:4 ntsc \ -profile:v:4 main -preset:v:4 fast -tune:v:4 zerolatency -g:v:4 60 -bf:v:4 0 \ -map "[v5]" -b:v:5 1100k -minrate:v:5 1100k -maxrate:v:5 1100k -bufsize:v:5 1100k -c:v:5 libx264 -r:v:5 ntsc \ -profile:v:5 main -preset:v:5 fast -tune:v:5 zerolatency -g:v:5 60 -bf:v:5 0 \ -map "[v6]" -b:v:6 730k -minrate:v:6 730k -maxrate:v:6 730k -bufsize:v:6 730k -c:v:6 libx264 -r:v:6 ntsc \ -profile:v:6 main -preset:v:6 fast -tune:v:6 zerolatency -g:v:6 60 -bf:v:6 0 \ -map "[v7]" -b:v:7 365k -minrate:v:7 365k -maxrate:v:7 365k -bufsize:v:7 365k -c:v:7 libx264 -r:v:7 ntsc \ -profile:v:7 baseline -preset:v:7 fast -tune:v:7 zerolatency -g:v:7 60 -bf:v:7 0 \ -map "[v8]" -b:v:8 145k -minrate:v:8 145k -maxrate:v:8 145k -bufsize:v:8 145k -c:v:8 libx264 -r:v:8 ntsc \ -profile:v:8 baseline -preset:v:8 fast -tune:v:8 zerolatency -g:v:8 60 -bf:v:8 0 \ -map $audio -c:a libfdk_aac -ac 2 -ar 48000 -b:a 128k \ -flags +global_header+cgop \ -max_muxing_queue_size 9000000 -threads 2 -f hls -master_pl_name mainmanifest.m3u8 \ -var_stream_map "v:0,agroup:audio v:1,agroup:audio v:2,agroup:audio v:3,agroup:audio v:4,agroup:audio v:5,agroup:audio v:6,agroup:audio v:7,agroup:audio v:8,agroup:audio a:0,agroup:audio" \ -hls_time 6 -hls_segment_type fmp4 '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-%v/manifest.m3u8'
Here's the output with the tee muxer (broken):
bash broken EXAMPLE '0:v' '0:a' example.mp4
bash broken EXAMPLE '0:v' '0:a' example.mp4 ffmpeg version N-96148-ge3dca0744d Copyright (c) 2000-2019 the FFmpeg developers built with gcc 8 (Ubuntu 8.3.0-6ubuntu1~18.04.1) configuration: --pkg-config-flags=--static --enable-static --disable-shared --prefix=/home/brainiarc7 --bindir=/home/brainiarc7/bin --extra-cflags=-I/home/brainiarc7/include --extra-ldflags=-L/home/brainiarc7/lib --enable-cuda-nvcc --enable-cuvid --enable-libnpp --extra-cflags=-I/usr/local/cuda/include/ --extra-ldflags=-L/usr/local/cuda/lib64/ --enable-nvenc --enable-libass --disable-debug --enable-libvorbis --enable-libvpx --enable-libdrm --enable-opencl --enable-libxml2 --enable-gpl --cpu=native --enable-opengl --enable-libfdk-aac --enable-libx264 --enable-libx265 --enable-openssl --enable-librtmp --enable-libpulse --enable-libzvbi --enable-librav1e --enable-pic --nvccflags='-gencode arch=compute_75,code=sm_75 -O2' --extra-libs='-lpthread -lm -lz -ldl' --enable-nonfree libavutil 56. 36.101 / 56. 36.101 libavcodec 58. 65.100 / 58. 65.100 libavformat 58. 35.101 / 58. 35.101 libavdevice 58. 9.101 / 58. 9.101 libavfilter 7. 69.101 / 7. 69.101 libswscale 5. 6.100 / 5. 6.100 libswresample 3. 6.100 / 3. 6.100 libpostproc 55. 6.100 / 55. 6.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'example.mp4': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42mp41isomavc1 creation_time : 2015-08-07T09:13:36.000000Z Duration: 00:00:30.53, start: 0.000000, bitrate: 4675 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 4486 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Video Handler encoder : AVC Coding Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 256 kb/s (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Audio Handler Stream mapping: Stream #0:0 (h264) -> yadif (graph 0) split:output0 (graph 0) -> Stream #0:0 (libx264) split:output1 (graph 0) -> Stream #0:1 (libx264) split:output0 (graph 0) -> Stream #0:2 (libx264) split:output1 (graph 0) -> Stream #0:3 (libx264) scale (graph 0) -> Stream #0:4 (libx264) split:output0 (graph 0) -> Stream #0:5 (libx264) split:output1 (graph 0) -> Stream #0:6 (libx264) scale (graph 0) -> Stream #0:7 (libx264) scale (graph 0) -> Stream #0:8 (libx264) Stream #0:1 -> #0:9 (aac (native) -> aac (libfdk_aac)) [libx264 @ 0x561d0a123800] using SAR=1/1 [libx264 @ 0x561d0a123800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a123800] profile Constrained High, level 4.0, 4:2:0, 8-bit [libx264 @ 0x561d0a123800] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=7800 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=7800 vbv_bufsize=7800 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a0ddfc0] using SAR=1/1 [libx264 @ 0x561d0a0ddfc0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a0ddfc0] profile Constrained High, level 4.0, 4:2:0, 8-bit [libx264 @ 0x561d0a0ddfc0] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=6000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=6000 vbv_bufsize=6000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a0d9e80] using SAR=1/1 [libx264 @ 0x561d0a0d9e80] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a0d9e80] profile Constrained High, level 3.1, 4:2:0, 8-bit [libx264 @ 0x561d0a0d9e80] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=4500 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=4500 vbv_bufsize=4500 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a1b0200] using SAR=1/1 [libx264 @ 0x561d0a1b0200] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a1b0200] profile Main, level 3.1, 4:2:0, 8-bit [libx264 @ 0x561d0a1b0200] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=3000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=3000 vbv_bufsize=3000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a1b2700] using SAR=1/1 [libx264 @ 0x561d0a1b2700] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a1b2700] profile Main, level 3.1, 4:2:0, 8-bit [libx264 @ 0x561d0a1b2700] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=2000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=2000 vbv_bufsize=2000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a116640] using SAR=1/1 [libx264 @ 0x561d0a116640] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a116640] profile Main, level 3.0, 4:2:0, 8-bit [libx264 @ 0x561d0a116640] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=1100 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=1100 vbv_bufsize=1100 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a1098c0] using SAR=1/1 [libx264 @ 0x561d0a1098c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a1098c0] profile Main, level 3.0, 4:2:0, 8-bit [libx264 @ 0x561d0a1098c0] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=730 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=730 vbv_bufsize=730 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a10b7c0] using SAR=1/1 [libx264 @ 0x561d0a10b7c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a10b7c0] profile Constrained Baseline, level 3.0, 4:2:0, 8-bit [libx264 @ 0x561d0a10b7c0] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=0 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=365 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=365 vbv_bufsize=365 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x561d0a10e000] using SAR=1/1 [libx264 @ 0x561d0a10e000] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x561d0a10e000] profile Constrained Baseline, level 1.3, 4:2:0, 8-bit [libx264 @ 0x561d0a10e000] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=0 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=145 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=145 vbv_bufsize=145 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 frame= 7 fps=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 13 fps= 12 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 18 fps= 11 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 24 fps= 11 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=N-async is forwarded to lavfi similarly to -af aresample=async=1:min_hard_comp=0.100000:first_pts=0. Output #0, tee, to '[use_fifo=1:fifo_options=queue_size=90000\\:recovery_wait_time=1\\:attempt_recovery=1\\:drop_pkts_on_overflow=1\\:recover_any_error=1:f=hls:hls_time=6:hls_segment_type=fmp4:master_pl_name=mainmanifest.m3u8:var_stream_map="v\\:0,agroup\\:audio v\\:1,agroup\\:audio v\\:2,agroup\\:audio v\\:3,agroup\\:audio v\\:4,agroup\\:audio v\\:5,agroup\\:audio v\\:6,agroup\\:audio v\\:7,agroup\\:audio v\\:8,agroup\\:audio a\\:0,agroup\\:audio"]'/home/brainiarc7/Documents/ffmpeg-ticket/EXAMPLE/broken/Step-%v/manifest.m3u8'': [hls @ 0x561d0ef06140] Invalid keyval "v:0 [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [hls @ 0x561d0ef06140] Invalid keyval "v:0 [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42mp41isomavc1 encoder : Lavf58.35.101 Stream #0:0: Video: h264 (libx264), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 7800 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 7800000/0/7800000 buffer size: 7800000 vbv_delay: N/A Stream #0:1: Video: h264 (libx264), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 6000 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 6000000/0/6000000 buffer size: 6000000 vbv_delay: N/A Stream #0:2: Video: h264 (libx264), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 4500 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 4500000/0/4500000 buffer size: 4500000 vbv_delay: N/A Stream #0:3: Video: h264 (libx264), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 3000 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 3000000/0/3000000 buffer size: 3000000 vbv_delay: N/A Stream #0:4: Video: h264 (libx264), yuv420p(progressive), 960x540 [SAR 1:1 DAR 16:9], q=-1--1, 2000 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 2000000/0/2000000 buffer size: 2000000 vbv_delay: N/A Stream #0:5: Video: h264 (libx264), yuv420p(progressive), 768x432 [SAR 1:1 DAR 16:9], q=-1--1, 1100 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 1100000/0/1100000 buffer size: 1100000 vbv_delay: N/A Stream #0:6: Video: h264 (libx264), yuv420p(progressive), 768x432 [SAR 1:1 DAR 16:9], q=-1--1, 730 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 730000/0/730000 buffer size: 730000 vbv_delay: N/A Stream #0:7: Video: h264 (libx264), yuv420p(progressive), 640x360 [SAR 1:1 DAR 16:9], q=-1--1, 365 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 365000/0/365000 buffer size: 365000 vbv_delay: N/A Stream #0:8: Video: h264 (libx264), yuv420p(progressive), 416x234 [SAR 1:1 DAR 16:9], q=-1--1, 145 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 145000/0/145000 buffer size: 145000 vbv_delay: N/A Stream #0:9(und): Audio: aac (libfdk_aac), 48000 Hz, stereo, s16, 128 kb/s (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Audio Handler encoder : Lavc58.65.100 libfdk_aac frame= 28 fps= 10 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 34 fps= 10 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.603x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 39 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=16.0 q=20.0 q=19frame= 44 fps= 10 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.455x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 49 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 54 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.365x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 59 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 64 fps= 10 q=17.0 q=19.0 q=14.0 q=16.0 q=15.0 q=16.0 q=18.0 q=22.0 q=23[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.461x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 69 fps=9.9 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=21.0 q=21frame= 74 fps=9.8 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=21.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.393x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 79 fps=9.7 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.366x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 84 fps=9.7 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 89 fps=9.7 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.323x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 94 fps=9.7 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 99 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.386x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 104 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 109 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.349x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 114 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 119 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.32x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 124 fps=9.6 q=17.0 q=19.0 q=14.0 q=16.0 q=15.0 q=16.0 q=18.0 q=21.0 q=22frame= 130 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.368x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 135 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 140 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.342x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 145 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.329x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 150 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 155 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.369x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 160 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 165 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.346x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 170 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 175 fps=9.5 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.325x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 180 fps=9.5 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 185 fps=9.5 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.36x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 190 fps=9.5 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 195 fps=9.5 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.342x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 200 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 205 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.325x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 210 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 214 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 220 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 225 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.338x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 230 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.331x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 235 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 240 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 245 fps=9.5 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 251 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.342x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 256 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 261 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.329x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 266 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 271 fps=9.6 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.319x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 276 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 281 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.34x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 286 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 291 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.328x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 296 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 301 fps=9.5 q=13.0 q=15.0 q=10.0 q=12.0 q=11.0 q=12.0 q=14.0 q=17.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 306 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=21.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 311 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 316 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.331x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 321 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 326 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.32x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 331 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 336 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 341 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 346 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.329x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 351 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 356 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.319x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 361 fps=9.5 q=13.0 q=15.0 q=10.0 q=12.0 q=11.0 q=12.0 q=14.0 q=19.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 367 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=19.0 q=22.0 q=23frame= 372 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=21.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.331x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 377 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 382 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.322x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 387 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 392 fps=9.4 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 397 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 402 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.329x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 407 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 412 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.321x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 417 fps=9.4 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 422 fps=9.4 q=18.0 q=19.0 q=15.0 q=17.0 q=17.0 q=20.0 q=22.0 q=24.0 q=25frame= 428 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=21.0 q=22[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 433 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=15.0 q=17.0 q=20.0 q=21frame= 438 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.324x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 443 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 448 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 453 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 458 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 462 fps=9.4 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 468 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.323x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 473 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 478 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 484 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=15.0 q=16.0 q=19.0 q=22.0 q=23[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 490 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=17.0 q=19.0 q=20frame= 495 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.325x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 500 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 505 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.319x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 510 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 515 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 520 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 524 fps=9.4 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 530 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 535 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 540 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 546 fps=9.5 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 551 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 555 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 561 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.32x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 566 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 571 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 576 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 581 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 586 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 591 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 596 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 601 fps=9.4 q=13.0 q=14.0 q=10.0 q=11.0 q=10.0 q=11.0 q=13.0 q=16.0 q=17frame= 607 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=17.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 612 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 617 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 622 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 627 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 632 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 637 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 642 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 647 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 652 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 657 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 662 fps=9.4 q=16.0 q=18.0 q=14.0 q=16.0 q=16.0 q=18.0 q=20.0 q=22.0 q=23[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 668 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 673 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 678 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=19frame= 683 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 688 fps=9.4 q=15.0 q=16.0 q=12.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 694 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=18frame= 699 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 704 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18frame= 709 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 714 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18frame= 719 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 725 fps=9.4 q=15.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 731 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 737 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 741 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.314x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 747 fps=9.4 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 752 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 758 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 764 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 769 fps=9.4 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.315x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 774 fps=9.4 q=15.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 779 fps=9.4 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 785 fps=9.5 q=16.0 q=17.0 q=14.0 q=16.0 q=15.0 q=16.0 q=20.0 q=23.0 q=23frame= 791 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 796 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 802 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.316x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 808 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 814 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 820 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 826 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 831 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 836 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 841 fps=9.5 q=13.0 q=14.0 q=10.0 q=12.0 q=11.0 q=11.0 q=14.0 q=19.0 q=21[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 847 fps=9.5 q=16.0 q=17.0 q=14.0 q=16.0 q=15.0 q=16.0 q=18.0 q=21.0 q=22[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 853 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 859 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.317x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 865 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 870 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 876 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20frame= 882 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 888 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.318x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 893 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 898 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20[hls @ 0x561d0ef06140] Invalid keyval "v:0peed=0.319x [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument [hls @ 0x561d0ef06140] Invalid keyval "v:0 [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument [hls @ 0x561d0ef06140] Invalid keyval "v:0 [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument [hls @ 0x561d0ef06140] Invalid keyval "v:0 [hls @ 0x561d0ef06140] Variant stream info update failed with status ffffffea [fifo @ 0x561d0eefba40] Recovery failed: Invalid argument frame= 901 fps=9.2 q=13.0 Lq=15.0 q=10.0 q=12.0 q=11.0 q=12.0 q=15.0 q=20.0 q=22.0 size=N/A time=00:00:30.52 bitrate=N/A speed=0.311x video:95635kB audio:478kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
And with the HLS muxer, which produces valid streams with no error:
bash working EXAMPLE '0:v' '0:a' example.mp4 ffmpeg version N-96148-ge3dca0744d Copyright (c) 2000-2019 the FFmpeg developers built with gcc 8 (Ubuntu 8.3.0-6ubuntu1~18.04.1) configuration: --pkg-config-flags=--static --enable-static --disable-shared --prefix=/home/brainiarc7 --bindir=/home/brainiarc7/bin --extra-cflags=-I/home/brainiarc7/include --extra-ldflags=-L/home/brainiarc7/lib --enable-cuda-nvcc --enable-cuvid --enable-libnpp --extra-cflags=-I/usr/local/cuda/include/ --extra-ldflags=-L/usr/local/cuda/lib64/ --enable-nvenc --enable-libass --disable-debug --enable-libvorbis --enable-libvpx --enable-libdrm --enable-opencl --enable-libxml2 --enable-gpl --cpu=native --enable-opengl --enable-libfdk-aac --enable-libx264 --enable-libx265 --enable-openssl --enable-librtmp --enable-libpulse --enable-libzvbi --enable-librav1e --enable-pic --nvccflags='-gencode arch=compute_75,code=sm_75 -O2' --extra-libs='-lpthread -lm -lz -ldl' --enable-nonfree libavutil 56. 36.101 / 56. 36.101 libavcodec 58. 65.100 / 58. 65.100 libavformat 58. 35.101 / 58. 35.101 libavdevice 58. 9.101 / 58. 9.101 libavfilter 7. 69.101 / 7. 69.101 libswscale 5. 6.100 / 5. 6.100 libswresample 3. 6.100 / 3. 6.100 libpostproc 55. 6.100 / 55. 6.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'example.mp4': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42mp41isomavc1 creation_time : 2015-08-07T09:13:36.000000Z Duration: 00:00:30.53, start: 0.000000, bitrate: 4675 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 4486 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Video Handler encoder : AVC Coding Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 256 kb/s (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Audio Handler Stream mapping: Stream #0:0 (h264) -> yadif (graph 0) split:output0 (graph 0) -> Stream #0:0 (libx264) split:output1 (graph 0) -> Stream #0:1 (libx264) split:output0 (graph 0) -> Stream #0:2 (libx264) split:output1 (graph 0) -> Stream #0:3 (libx264) scale (graph 0) -> Stream #0:4 (libx264) split:output0 (graph 0) -> Stream #0:5 (libx264) split:output1 (graph 0) -> Stream #0:6 (libx264) scale (graph 0) -> Stream #0:7 (libx264) scale (graph 0) -> Stream #0:8 (libx264) Stream #0:1 -> #0:9 (aac (native) -> aac (libfdk_aac)) [libx264 @ 0x5564a1e02480] using SAR=1/1 [libx264 @ 0x5564a1e02480] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e02480] profile Constrained High, level 4.0, 4:2:0, 8-bit [libx264 @ 0x5564a1e02480] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=7800 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=7800 vbv_bufsize=7800 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e22800] using SAR=1/1 [libx264 @ 0x5564a1e22800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e22800] profile Constrained High, level 4.0, 4:2:0, 8-bit [libx264 @ 0x5564a1e22800] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=6000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=6000 vbv_bufsize=6000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e10a00] using SAR=1/1 [libx264 @ 0x5564a1e10a00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e10a00] profile Constrained High, level 3.1, 4:2:0, 8-bit [libx264 @ 0x5564a1e10a00] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 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=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=4500 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=4500 vbv_bufsize=4500 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1ee6f40] using SAR=1/1 [libx264 @ 0x5564a1ee6f40] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1ee6f40] profile Main, level 3.1, 4:2:0, 8-bit [libx264 @ 0x5564a1ee6f40] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=3000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=3000 vbv_bufsize=3000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e4b140] using SAR=1/1 [libx264 @ 0x5564a1e4b140] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e4b140] profile Main, level 3.1, 4:2:0, 8-bit [libx264 @ 0x5564a1e4b140] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=2000 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=2000 vbv_bufsize=2000 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e4d2c0] using SAR=1/1 [libx264 @ 0x5564a1e4d2c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e4d2c0] profile Main, level 3.0, 4:2:0, 8-bit [libx264 @ 0x5564a1e4d2c0] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=1100 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=1100 vbv_bufsize=1100 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e40280] using SAR=1/1 [libx264 @ 0x5564a1e40280] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e40280] profile Main, level 3.0, 4:2:0, 8-bit [libx264 @ 0x5564a1e40280] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=730 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=730 vbv_bufsize=730 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e42800] using SAR=1/1 [libx264 @ 0x5564a1e42800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e42800] profile Constrained Baseline, level 3.0, 4:2:0, 8-bit [libx264 @ 0x5564a1e42800] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=0 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=365 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=365 vbv_bufsize=365 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 [libx264 @ 0x5564a1e44d80] using SAR=1/1 [libx264 @ 0x5564a1e44d80] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x5564a1e44d80] profile Constrained Baseline, level 1.3, 4:2:0, 8-bit [libx264 @ 0x5564a1e44d80] 264 - core 157 r2969 d4099dd - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=0 ref=2 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=2 lookahead_threads=2 sliced_threads=1 slices=2 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc_lookahead=0 rc=cbr mbtree=0 bitrate=145 ratetol=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 vbv_maxrate=145 vbv_bufsize=145 nal_hrd=none filler=0 ip_ratio=1.40 aq=1:1.00 frame= 7 fps=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 13 fps= 12 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 19 fps= 11 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=Nframe= 25 fps= 11 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 q=0.0 size=N-async is forwarded to lavfi similarly to -af aresample=async=1:min_hard_comp=0.100000:first_pts=0. [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/init_0.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/init_1.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/init_2.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/init_3.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/init_4.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/init_5.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/init_6.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/init_7.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/init_8.mp4' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/init_9.mp4' for writing Output #0, hls, to '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-%v/manifest.m3u8': Metadata: major_brand : mp42 minor_version : 0 compatible_brands: mp42mp41isomavc1 encoder : Lavf58.35.101 Stream #0:0: Video: h264 (libx264), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 7800 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 7800000/0/7800000 buffer size: 7800000 vbv_delay: N/A Stream #0:1: Video: h264 (libx264), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=-1--1, 6000 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 6000000/0/6000000 buffer size: 6000000 vbv_delay: N/A Stream #0:2: Video: h264 (libx264), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 4500 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 4500000/0/4500000 buffer size: 4500000 vbv_delay: N/A Stream #0:3: Video: h264 (libx264), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 3000 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 3000000/0/3000000 buffer size: 3000000 vbv_delay: N/A Stream #0:4: Video: h264 (libx264), yuv420p(progressive), 960x540 [SAR 1:1 DAR 16:9], q=-1--1, 2000 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 2000000/0/2000000 buffer size: 2000000 vbv_delay: N/A Stream #0:5: Video: h264 (libx264), yuv420p(progressive), 768x432 [SAR 1:1 DAR 16:9], q=-1--1, 1100 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 1100000/0/1100000 buffer size: 1100000 vbv_delay: N/A Stream #0:6: Video: h264 (libx264), yuv420p(progressive), 768x432 [SAR 1:1 DAR 16:9], q=-1--1, 730 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 730000/0/730000 buffer size: 730000 vbv_delay: N/A Stream #0:7: Video: h264 (libx264), yuv420p(progressive), 640x360 [SAR 1:1 DAR 16:9], q=-1--1, 365 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 365000/0/365000 buffer size: 365000 vbv_delay: N/A Stream #0:8: Video: h264 (libx264), yuv420p(progressive), 416x234 [SAR 1:1 DAR 16:9], q=-1--1, 145 kb/s, 29.97 fps, 30k tbn, 29.97 tbc (default) Metadata: encoder : Lavc58.65.100 libx264 Side data: cpb: bitrate max/min/avg: 145000/0/145000 buffer size: 145000 vbv_delay: N/A Stream #0:9(und): Audio: aac (libfdk_aac), 48000 Hz, stereo, s16, 128 kb/s (default) Metadata: creation_time : 2015-08-07T09:13:36.000000Z handler_name : L-SMASH Audio Handler encoder : Lavc58.65.100 libfdk_aac frame= 31 fps= 11 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 37 fps= 11 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=16.0 q=19.0 q=20frame= 43 fps= 11 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 49 fps= 11 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=16.0 q=20.0 q=20frame= 55 fps= 11 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 59 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 66 fps= 11 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=18.0 q=21.0 q=22frame= 72 fps= 11 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=21.0 q=21frame= 77 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 82 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 87 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 92 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 98 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 103 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 108 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 113 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 118 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 123 fps= 10 q=18.0 q=19.0 q=15.0 q=16.0 q=15.0 q=16.0 q=19.0 q=22.0 q=23frame= 129 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 134 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 139 fps= 10 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 144 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 150 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 156 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 161 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 166 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 171 fps=9.9 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 176 fps=9.9 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 181 fps=9.9 q=14.0 q=15.0 q=11.0 q=12.0 q=11.0 q=12.0 q=14.0 q=17.0 q=18[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest0.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/mainmanifest.m3u8' for writing frame= 187 fps= 10 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 192 fps=9.9 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 197 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 202 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 207 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 212 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 217 fps=9.9 q=17.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 222 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 227 fps=9.9 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 232 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 237 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 242 fps=9.8 q=18.0 q=19.0 q=15.0 q=17.0 q=16.0 q=17.0 q=19.0 q=23.0 q=24frame= 248 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 253 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 258 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 263 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 268 fps=9.8 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 273 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 278 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 283 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 288 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 293 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 298 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 304 fps=9.7 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=15.0 q=18.0 q=22.0 q=22frame= 309 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 314 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 319 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 324 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 329 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 334 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 338 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 344 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 349 fps=9.7 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 354 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 359 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing frame= 364 fps=9.6 q=17.0 q=18.0 q=14.0 q=15.0 q=14.0 q=16.0 q=21.0 q=24.0 q=24frame= 369 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=21.0 q=22[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest1.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing frame= 374 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 379 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 384 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 389 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 394 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=20frame= 399 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 404 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 410 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 415 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 420 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 426 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=16.0 q=19.0 q=21.0 q=23frame= 431 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=15.0 q=17.0 q=20.0 q=21frame= 438 fps=9.6 q=16.0 q=18.0 q=13.0 q=15.0 q=13.0 q=14.0 q=17.0 q=19.0 q=20frame= 444 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 449 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 455 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 460 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 465 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 470 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 475 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 480 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 486 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=20.0 q=21frame= 491 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=17.0 q=19.0 q=20frame= 496 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 501 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 506 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 511 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 516 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 522 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 528 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 534 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 539 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing frame= 545 fps=9.6 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 550 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 555 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest2.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing frame= 560 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 565 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 570 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 575 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 580 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 585 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 590 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 595 fps=9.6 q=16.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 600 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 605 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 610 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 615 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 620 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 625 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 630 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 635 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 640 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 645 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 650 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 655 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 660 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=19frame= 666 fps=9.6 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=17.0 q=19.0 q=19frame= 671 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 676 fps=9.6 q=15.0 q=16.0 q=12.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=19frame= 681 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=19frame= 686 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=18frame= 691 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=18frame= 696 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=13.0 q=15.0 q=18.0 q=18frame= 701 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18frame= 706 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18frame= 710 fps=9.5 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18frame= 716 fps=9.5 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=15.0 q=18.0 q=18[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing frame= 721 fps=9.5 q=12.0 q=13.0 q=10.0 q=11.0 q=10.0 q=11.0 q=13.0 q=15.0 q=16frame= 727 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=17.0 q=19.0 q=19frame= 732 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 737 fps=9.6 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 741 fps=9.5 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest3.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing frame= 747 fps=9.5 q=15.0 q=16.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 752 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 757 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 762 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 767 fps=9.5 q=15.0 q=17.0 q=13.0 q=14.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 772 fps=9.5 q=15.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=18.0 q=18frame= 777 fps=9.5 q=15.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=18.0 q=19frame= 782 fps=9.5 q=17.0 q=18.0 q=17.0 q=19.0 q=18.0 q=20.0 q=22.0 q=24.0 q=25frame= 788 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=20.0 q=21frame= 793 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 798 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=20frame= 803 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 808 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 813 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 818 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 823 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 828 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 833 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 838 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=13.0 q=14.0 q=16.0 q=19.0 q=19frame= 844 fps=9.5 q=16.0 q=18.0 q=15.0 q=17.0 q=16.0 q=18.0 q=21.0 q=23.0 q=24frame= 850 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=18.0 q=20.0 q=21frame= 855 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=20.0 q=21frame= 860 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=15.0 q=17.0 q=19.0 q=20frame= 865 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 870 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20frame= 875 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20frame= 880 fps=9.5 q=16.0 q=17.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20frame= 885 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20frame= 890 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20frame= 895 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=16.0 q=19.0 q=20[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing frame= 900 fps=9.5 q=16.0 q=18.0 q=13.0 q=15.0 q=14.0 q=14.0 q=17.0 q=19.0 q=20[hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest4.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-0/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-1/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-2/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-3/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-4/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-5/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-6/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-7/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-8/manifest.m3u8.tmp' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest5.m4s' for writing [hls @ 0x5564a1e48600] Opening '/home/brainiarc7/Documents/ffmpeg-ticket/$fileio/working/Step-9/manifest.m3u8.tmp' for writing frame= 901 fps=9.5 q=13.0 Lq=15.0 q=10.0 q=12.0 q=11.0 q=12.0 q=15.0 q=20.0 q=22.0 size=N/A time=00:00:30.52 bitrate=N/A speed=0.32x video:95632kB audio:478kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Testing with different encoders and scenarios, such as multiple audio-only variant streams results in the same error.
Change History (5)
comment:1 by , 5 years ago
Cc: | added |
---|
comment:2 by , 5 years ago
comment:3 by , 5 years ago
For the command lines:
ffmpeg -loglevel debug -nostdin -y \ -fflags -autobsf+genpts \ -threads 1 -reinit_filter 1 -vsync 1 -async 1 \ -i example.mp4 -filter_complex \ "[0:v]yadif=0:-1:0,split=6[s0][s1][s2][s3][s4][s5]; \ [s0]scale=w=1920:h=1080,split=2[v0][v1]; \ [s1]scale=w=1280:h=720,split=2[v2][v3]; \ [s2]scale=w=960:h=540[v4]; \ [s3]scale=w=768:h=432,split=2[v5][v6]; \ [s4]scale=w=640:h=360[v7]; \ [s5]scale=w=416:h=234[v8]" \ -map "[v0]" -b:v:0 7800k -minrate:v:0 7800k -maxrate:v:0 7800k -bufsize:v:0 7800k -c:v:0 libx264 -r:v:0 ntsc \ -profile:v:0 high -preset:v:0 fast -tune:v:0 zerolatency -g:v:0 60 -bf:v:0 0 \ -map "[v1]" -b:v:1 6000k -minrate:v:1 6000k -maxrate:v:1 6000k -bufsize:v:1 6000k -c:v:1 libx264 -r:v:1 ntsc \ -profile:v:1 high -preset:v:1 fast -tune:v:1 zerolatency -g:v:1 60 -bf:v:1 0 \ -map "[v2]" -b:v:2 4500k -minrate:v:2 4500k -maxrate:v:2 4500k -bufsize:v:2 4500k -c:v:2 libx264 -r:v:2 ntsc \ -profile:v:2 high -preset:v:2 fast -tune:v:2 zerolatency -g:v:2 60 -bf:v:2 0 \ -map "[v3]" -b:v:3 3000k -minrate:v:3 3000k -maxrate:v:3 3000k -bufsize:v:3 3000k -c:v:3 libx264 -r:v:3 ntsc \ -profile:v:3 main -preset:v:3 fast -tune:v:3 zerolatency -g:v:3 60 -bf:v:3 0 \ -map "[v4]" -b:v:4 2000k -minrate:v:4 2000k -maxrate:v:4 2000k -bufsize:v:4 2000k -c:v:4 libx264 -r:v:4 ntsc \ -profile:v:4 main -preset:v:4 fast -tune:v:4 zerolatency -g:v:4 60 -bf:v:4 0 \ -map "[v5]" -b:v:5 1100k -minrate:v:5 1100k -maxrate:v:5 1100k -bufsize:v:5 1100k -c:v:5 libx264 -r:v:5 ntsc \ -profile:v:5 main -preset:v:5 fast -tune:v:5 zerolatency -g:v:5 60 -bf:v:5 0 \ -map "[v6]" -b:v:6 730k -minrate:v:6 730k -maxrate:v:6 730k -bufsize:v:6 730k -c:v:6 libx264 -r:v:6 ntsc \ -profile:v:6 main -preset:v:6 fast -tune:v:6 zerolatency -g:v:6 60 -bf:v:6 0 \ -map "[v7]" -b:v:7 365k -minrate:v:7 365k -maxrate:v:7 365k -bufsize:v:7 365k -c:v:7 libx264 -r:v:7 ntsc \ -profile:v:7 baseline -preset:v:7 fast -tune:v:7 zerolatency -g:v:7 60 -bf:v:7 0 \ -map "[v8]" -b:v:8 145k -minrate:v:8 145k -maxrate:v:8 145k -bufsize:v:8 145k -c:v:8 libx264 -r:v:8 ntsc \ -profile:v:8 baseline -preset:v:8 fast -tune:v:8 zerolatency -g:v:8 60 -bf:v:8 0 \ -map 0:a -c:a libfdk_aac -ac 2 -ar 48000 -b:a 128k \ -flags +global_header+cgop \ -max_muxing_queue_size 9000000 -threads 2 -f hls -master_pl_name mainmanifest.m3u8 \ -var_stream_map "v:0,agroup:audio v:1,agroup:audio v:2,agroup:audio v:3,agroup:audio v:4,agroup:audio v:5,agroup:audio v:6,agroup:audio v:7,agroup:audio v:8,agroup:audio a:0,agroup:audio" \ -hls_time 6 -hls_segment_type fmp4 '/home/brainiarc7/Documents/ffmpeg-ticket/fileio/working/Step-%v/manifest.m3u8'
The second command with the tee muxer is:
ffmpeg -nostdin -y -loglevel debug \ -fflags -autobsf+genpts \ -threads 0 -reinit_filter 1 -vsync 1 -async 1 \ -i example.mp4 -filter_complex \ "[0:v]yadif=0:-1:0,split=6[s0][s1][s2][s3][s4][s5]; \ [s0]scale=w=1920:h=1080,split=2[v0][v1]; \ [s1]scale=w=1280:h=720,split=2[v2][v3]; \ [s2]scale=w=960:h=540[v4]; \ [s3]scale=w=768:h=432,split=2[v5][v6]; \ [s4]scale=w=640:h=360[v7]; \ [s5]scale=w=416:h=234[v8]" \ -map "[v0]" -b:v:0 7800k -minrate:v:0 7800k -maxrate:v:0 7800k -bufsize:v:0 7800k -c:v:0 libx264 -r:v:0 ntsc \ -profile:v:0 high -preset:v:0 fast -tune:v:0 zerolatency -g:v:0 60 -bf:v:0 0 \ -map "[v1]" -b:v:1 6000k -minrate:v:1 6000k -maxrate:v:1 6000k -bufsize:v:1 6000k -c:v:1 libx264 -r:v:1 ntsc \ -profile:v:1 high -preset:v:1 fast -tune:v:1 zerolatency -g:v:1 60 -bf:v:1 0 \ -map "[v2]" -b:v:2 4500k -minrate:v:2 4500k -maxrate:v:2 4500k -bufsize:v:2 4500k -c:v:2 libx264 -r:v:2 ntsc \ -profile:v:2 high -preset:v:2 fast -tune:v:2 zerolatency -g:v:2 60 -bf:v:2 0 \ -map "[v3]" -b:v:3 3000k -minrate:v:3 3000k -maxrate:v:3 3000k -bufsize:v:3 3000k -c:v:3 libx264 -r:v:3 ntsc \ -profile:v:3 main -preset:v:3 fast -tune:v:3 zerolatency -g:v:3 60 -bf:v:3 0 \ -map "[v4]" -b:v:4 2000k -minrate:v:4 2000k -maxrate:v:4 2000k -bufsize:v:4 2000k -c:v:4 libx264 -r:v:4 ntsc \ -profile:v:4 main -preset:v:4 fast -tune:v:4 zerolatency -g:v:4 60 -bf:v:4 0 \ -map "[v5]" -b:v:5 1100k -minrate:v:5 1100k -maxrate:v:5 1100k -bufsize:v:5 1100k -c:v:5 libx264 -r:v:5 ntsc \ -profile:v:5 main -preset:v:5 fast -tune:v:5 zerolatency -g:v:5 60 -bf:v:5 0 \ -map "[v6]" -b:v:6 730k -minrate:v:6 730k -maxrate:v:6 730k -bufsize:v:6 730k -c:v:6 libx264 -r:v:6 ntsc \ -profile:v:6 main -preset:v:6 fast -tune:v:6 zerolatency -g:v:6 60 -bf:v:6 0 \ -map "[v7]" -b:v:7 365k -minrate:v:7 365k -maxrate:v:7 365k -bufsize:v:7 365k -c:v:7 libx264 -r:v:7 ntsc \ -profile:v:7 baseline -preset:v:7 fast -tune:v:7 zerolatency -g:v:7 60 -bf:v:7 0 \ -map "[v8]" -b:v:8 145k -minrate:v:8 145k -maxrate:v:8 145k -bufsize:v:8 145k -c:v:8 libx264 -r:v:8 ntsc \ -profile:v:8 baseline -preset:v:8 fast -tune:v:8 zerolatency -g:v:8 60 -bf:v:8 0 \ -map 0:a -c:a libfdk_aac -ac 2 -ar 48000 -b:a 128k \ -flags +global_header+cgop \ -max_muxing_queue_size 9000000 -threads 0 -f tee \ "[use_fifo=1:fifo_options=queue_size=90000\\:recovery_wait_time=1\\:attempt_recovery=1\\:drop_pkts_on_overflow=1\\:recover_any_error=1:f=hls:hls_time=6:hls_segment_type=fmp4:master_pl_name=mainmanifest.m3u8:var_stream_map="v\\:0,agroup\\:audio v\\:1,agroup\\:audio v\\:2,agroup\\:audio v\\:3,agroup\\:audio v\\:4,agroup\\:audio v\\:5,agroup\\:audio v\\:6,agroup\\:audio v\\:7,agroup\\:audio v\\:8,agroup\\:audio a\\:0,agroup\\:audio"]'/home/brainiarc7/Documents/ffmpeg-ticket/fileio/broken/Step-%v/manifest.m3u8'"
comment:4 by , 5 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
In your script you are using " instead of ' for the value of var_stream_map. That won't work, unlike bash, ffmpeg only accepts '.
Using the following, your script seems to work fine:
MS="master_pl_name=mainmanifest.m3u8:var_stream_map='v\\:0,agroup\\:audio v\\:1,agroup\\:audio v\\:2,agroup\\:audio v\\:3,agroup\\:audio v\\:4,agroup\\:audio v\\:5,agroup\\:audio v\\:6,agroup\\:audio v\\:7,agroup\\:audio v\\:8,agroup\\:audio a\\:0,agroup\\:audio'"
Please provide the command line without using a script.