kkroening / ffmpeg-python

Python bindings for FFmpeg - with complex filtering support
Apache License 2.0
10.08k stars 893 forks source link

How to check Damaged videos through ffmpeg in python? #282

Open jainal09 opened 5 years ago

jainal09 commented 5 years ago

Hi i am using FFmpeg on huge data set of videos and I might have some damaged videos in it? Typically through the command line, I would do something like ffmpeg -v error -i 3.mp4 -f null - &> test15.log

But how can I do this through the python library?

spirulence commented 5 years ago

@jainal09 one way to do it is like so:

import ffmpeg

try:
    (
        ffmpeg
        .input("corrupt_video.mp4")
        .output("null", f="null")
        .run()
    )
except ffmpeg._run.Error:
    print("corrupt video")
else:
    print("video is fine")
jainal09 commented 5 years ago

It printed video is fine! On a video file, I am testing! But in the log, it showed that there were many frames corrupted. Here is the log! ffmpeg version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2000-2019 the FFmpeg developers built with gcc 7 (Ubuntu 7.3.0-16ubuntu3) configuration: --prefix=/usr --extra-version=0ubuntu0.18.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared libavutil 55. 78.100 / 55. 78.100 libavcodec 57.107.100 / 57.107.100 libavformat 57. 83.100 / 57. 83.100 libavdevice 57. 10.100 / 57. 10.100 libavfilter 6.107.100 / 6.107.100 libavresample 3. 7. 0 / 3. 7. 0 libswscale 4. 8.100 / 4. 8.100 libswresample 2. 9.100 / 2. 9.100 libpostproc 54. 7.100 / 54. 7.100 [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [h264 @ 0x55e3f8b36b80] non-existing PPS 0 referenced [h264 @ 0x55e3f8b36b80] decode_slice_header error [h264 @ 0x55e3f8b36b80] no frame! [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e3f8b358c0] decoding for stream 0 failed [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e3f8b358c0] Could not find codec parameters for stream 0 (Video: h264 (avc3 / 0x33637661), none, 1920x1080, 6143 kb/s): unspecified pixel format Consider increasing the value for the 'analyzeduration' and 'probesize' options [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e3f8b358c0] Could not find codec parameters for stream 2 (Video: h264 (avc1 / 0x31637661), none, 1280x720, 14517 kb/s): unspecified pixel format Consider increasing the value for the 'analyzeduration' and 'probesize' options Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '3.mp4': Metadata: major_brand : isom minor_version : 1 compatible_brands: isom creation_time : 2019-10-26T04:51:32.000000Z Duration: 00:02:47.37, start: 0.000000, bitrate: 4698 kb/s Stream #0:0(und): Video: h264 (avc3 / 0x33637661), none, 1920x1080, 6143 kb/s, SAR 1:1 DAR 16:9, 26.96 fps, 29.97 tbr, 11988 tbn, 23976 tbc (default) Metadata: handler_name : VideoHandler Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 102 kb/s (default) Metadata: handler_name : SoundHandler Stream #0:2(eng): Video: h264 (avc1 / 0x31637661), none, 1280x720, 14517 kb/s, 25 fps, 25 tbr, 48k tbn, 96k tbc (default) Metadata: creation_time : 2014-07-18T06:00:15.000000Z encoder : AVC Coding handler_name : ?Mainconcept Video Media Handler Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> wrapped_avframe (native)) Stream #0:1 -> #0:1 (aac (native) -> pcm_s16le (native)) Press [q] to stop, [?] for help [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input Last message repeated 1 times [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input Last message repeated 1 times [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input Last message repeated 1 times [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input Last message repeated 1 times [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8be1c40] non-existing PPS 0 referenced [h264 @ 0x55e3f8be1c40] decode_slice_header error [h264 @ 0x55e3f8be1c40] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b5fa60] non-existing PPS 0 referenced [h264 @ 0x55e3f8b5fa60] decode_slice_header error [h264 @ 0x55e3f8b5fa60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8d540] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8d540] decode_slice_header error [h264 @ 0x55e3f8b8d540] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8bc0620] non-existing PPS 0 referenced [h264 @ 0x55e3f8bc0620] decode_slice_header error [h264 @ 0x55e3f8bc0620] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b84820] non-existing PPS 0 referenced [h264 @ 0x55e3f8b84820] decode_slice_header error [h264 @ 0x55e3f8b84820] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b8af00] non-existing PPS 0 referenced [h264 @ 0x55e3f8b8af00] decode_slice_header error [h264 @ 0x55e3f8b8af00] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f912efe0] non-existing PPS 0 referenced [h264 @ 0x55e3f912efe0] decode_slice_header error [h264 @ 0x55e3f912efe0] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f914af60] non-existing PPS 0 referenced [h264 @ 0x55e3f914af60] decode_slice_header error [h264 @ 0x55e3f914af60] no frame! Error while decoding stream #0:0: Invalid data found when processing input [h264 @ 0x55e3f8b55e20] non-existing PPS 0 referenced [h264 @ 0x55e3f8b55e20] decode_slice_header error [h264 @ 0x55e3f8b55e20] no frame! Error while decoding stream #0:0: Invalid data found when processing input Last message repeated 7 times Output #0, null, to 'null': Metadata: major_brand : isom minor_version : 1 compatible_brands: isom encoder : Lavf57.83.100 Stream #0:0(und): Video: wrapped_avframe, yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default) Metadata: handler_name : VideoHandler encoder : Lavc57.107.100 wrapped_avframe Stream #0:1(und): Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s (default) Metadata: handler_name : SoundHandler encoder : Lavc57.107.100 pcm_s16le frame= 1151 fps=394 q=-0.0 Lsize=N/A time=00:01:16.17 bitrate=N/A speed=26.1x video:593kB audio:8652kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown video is fine

spirulence commented 5 years ago

@jainal09 interesting! I guess I was dealing with a video corrupted in a different way - would it be possible for you to provide a sample video that produces these errors?

jainal09 commented 5 years ago

Yeah sure i have a corrupted video file let me share you the link

Corrupted-video

cbitterfield commented 4 years ago

I am working on a multiprocessing project to scan large drive systems, finger print,verify media assets. If you would like access just let me know.

def validate_video(filename,**kwargs):
    ''' validate a video file '''
    logger = logging.getLogger()
    message = {}
    threads = 1
    output_arguments = {'hide_banner' : None, 
                    'err_detect':'compliant' ,
                    'loglevel' : 'error',
                    't'  : threads
                    }
    logger.info('video {}'.format(filename))
    results = ffmpeg.input(filename,**output_arguments).output('pipe:', format="null").overwrite_output().run(cmd=FFMPEG,capture_stdout=True,capture_stderr=True )

    if len(results[1]) > 0:
        message = {'file_verified' : 'False',
                   'comments' : results[1]
                   }
        logger.error('validation failed: {}'.format(filename))
    else:
        message = {'file_verified' : 'True' }
        logger.debug('validation - file verified: {}'.format(filename))
    return message
cbitterfield commented 4 years ago

I am having a issue write now where the errors are not being reported (it was in FFMPEG 3.4.x) now it stopped working after I changed to FFMPEG 4.4.1. It will provide output to STDERR for DEBUG and INFO (but not ERROR). The FFMPEG with same options does report the errors.

cbitterfield commented 4 years ago

I created a corrupt video by using DD. Good Video + DD(random chars) + GoodVideo = Corrupt video with MP4 meta data and headers. To simulate inline corruption.

cbitterfield commented 4 years ago

I took a little time and created a pull request for an example program to do this.

#!/usr/bin/env python3

# Example program for validating video

import os 
import sys 
import ffmpeg
from time import time, strftime, sleep, gmtime
import argparse
import textwrap
from datetime import datetime
from shutil import get_terminal_size

# Program Description Variables
__author__ = "Colin Bitterfield"
__copyright__ = "Copyright 2019, " 
__credits__ = ["Colin Bitterfield"]
__license__ = "GPL3"
__version__ = "0.1.0"
__maintainer__ = "colin_bitterfield"
__status__ = "example"
__created___ = "12/21/2019"
__updated___ = ""
__prog_name__ = os.path.basename(__file__)
__short_name__ = os.path.splitext(__prog_name__)[0]
__timestamp__ = time() 
__run_datetime__ = datetime.fromtimestamp(__timestamp__) # Today's Date
__console_size__ = get_terminal_size((80, 20))[0]

parser = argparse.ArgumentParser(description=textwrap.dedent('''\
    Test a video for corruption.
    Demonstrates with and without GPU/Cuda acceleration
'''.format()))
parser.prog = __prog_name__
parser.epilog = """

Written by {author} --
Copyright  {copyright} --
License    {license}
""".format(author=__author__,copyright=__copyright__,license=__license__)
parser.add_argument('--version', action='version', version=('%(prog)s ' + __version__))
parser.add_argument('-i','--in_filename', 
                    action   = 'store',
                    dest     = 'in_file',
                    required = True,
                    help     = 'Input filename')

parser.add_argument('-c', '--cuda',
                    action   = 'store_true',
                    dest     = 'use_cuda',
                    required = False,
                    default  = False,
                    help='Enable Cuda HW Acceleration')

parser.add_argument('-ff', '--ffmpeg',
                    action   = 'store',
                    dest     = 'FFMPEG',
                    required = False,
                    default  = '/usr/local/bin/ffmpeg',
                    help='ffmpeg location, defaults to /usr/local/bin/ffmpeg')

def validate_video(filename,**kwargs):
    ''' validate a video file 

    params:
    ---------------------------------
    filename to check (fully qualified)
    ** kargs to pass to input side of ffmpeg

    cli: ffmpeg -hide_banner -err_detect compliant -loglevel error 

    returns [True/False], message_of_errors

    example with cuda accelerator

    **kwargs
    {
    'hwaccel' : 'cuda',
    'vcodec'  : 'h264_cuvid'
    }

    validate_video(filename, **{
    'hwaccel' : 'cuda',
    'vcodec'  : 'h264_cuvid'
    })

    '''

    videoIsValid=True
    message = {}
    threads = 1
    input_arguments = {
        'hide_banner' : None, 
                    'err_detect':'compliant' ,
                    'loglevel'  : 'error'
                    }

    stdout,stderr = (
        ffmpeg.input(filename,**input_arguments)
        .output('pipe:', format="null")
        .overwrite_output()
        .run(cmd=FFMPEG,capture_stdout=True,capture_stderr=True )
    )

    if 'error' in str(stderr).lower():
        message = stderr
        videoIsValid=False
    else:
        message = 'Valid Video'

    return videoIsValid,message

if __name__ == '__main__':
    args = parser.parse_args()
    FFMPEG   = args.FFMPEG
    useCuda  = args.use_cuda
    filename = args.in_file

    print('{prog} started on {time}'.format(prog=__prog_name__,time=__run_datetime__))

    hw_accel = dict({
        'hwaccel' : 'cuda',
        'vcodec'  : 'h264_cuvid' 
        })

    if os.path.isfile(filename):
        print('Testing file {file}'.format(file=filename))
        start_time = time()
        if useCuda:
            print('Using Hardware Acceleration by Cuda')
            isValid, message = validate_video(filename,**hw_accel)

        else:
            isValid, message = validate_video(filename)

        sleep(10)
        end_time   = time() 
        run_time   = gmtime(end_time - start_time)
        strftime("%M:%S", run_time)
        print('Elapsed Time: {elapsed}'.format(elapsed=strftime("%M:%S", run_time)))
        if isValid:
            print('Video is valid and without errors')
        else:
            print('Video has errors')
            print('-' * __console_size__)
            for line in message.strip().decode().splitlines():
                print('   {}'.format(line))

    else:
        print('Filename {file} is not present on the system'.format(file=filename))