Ffmpeg проверка на ошибки

При склейке нескольких видео иногда попадаются поврежденные файлы, после которых ffmpeg прекращает свою работу. Файлы он берет из txt-файла. Как можно с его помощью проверить поврежден файл или нет и, если файл поврежден, то просто пропустить его и не добавлять в txt-файл, чтобы в дальнейшем ffmpeg даже не смотрел на него?

задан 22 ноя 2018 в 2:29

vovagib's user avatar

1

Для этого можно попросить декодировать файл в ничего.

ffmpeg -v error -i example.mov -f null -

Для исправного файла эта компанда не покажет ничего. Для неисправного — покажет кучу ошибок на stderr. Например:

$ ffmpeg -v error -i example.mov -f null - 2>&1 | cat
[mpeg4 @ 0x55d32a585e80] I cbpc damaged at 1 5
[mpeg4 @ 0x55d32a585e80] Error at MB: 231
[mpeg4 @ 0x55d32a591d80] Error at MB: 3572
[mpeg4 @ 0x55d32a595440] Error at MB: 3423
[mpeg4 @ 0x55d32a59f780] Error at MB: 3542
[mpeg4 @ 0x55d32a5ad180] Error at MB: 2670
[mpeg4 @ 0x55d32a585e80] P cbpy damaged at 43 79
[mpeg4 @ 0x55d32a585e80] Error at MB: 3677

Определённое неудобство здесь в том что ffmpeg не выходит с кодом ошибки, а значит были ли ошибки можно узнать только посмотрев на вывод. Не составляет труда написать скрипт который будет это делать хоть для одного, хоть для кучи файлов. Пример. Ещё пример.

ответ дан 22 ноя 2018 в 3:10

sanmai's user avatar

sanmaisanmai

12.4k18 серебряных знаков41 бронзовый знак

1

I am trying to find out if a video file is corrupted or not.

I am using FFmpeg to transcode a video file. However, when it gets to a file that not playable and is damaged, it stops running.

I want to know if there is a way to output the FFmpeg command into a text file and then be able to tell which file is corrupted from the text file.

When I run FFmpeg on one of the corrupted vide, I find this information.

  built with gcc 9.1.1 (GCC) 20190807
  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf
  libavutil      56. 35.100 / 56. 35.100
  libavcodec     58. 56.101 / 58. 56.101
  libavformat    58. 32.104 / 58. 32.104
  libavdevice    58.  9.100 / 58.  9.100
  libavfilter     7. 58.102 /  7. 58.102
  libswscale      5.  6.100 /  5.  6.100
  libswresample   3.  6.100 /  3.  6.100
  libpostproc    55.  6.100 / 55.  6.100
[mov,mp4,m4a,3gp,3g2,mj2 @ 0000020052a58c00] moov atom not found
FoodXP_2019_11_07__19_29_00.mp4: Invalid data found when processing input

is the only value Invalid data found when processing input that states if it is damaged?

My goal is to be able to determine, which files are corrupted by reading from the output text file.

I cannot find all the information from online, is there any other value that I can use when looking at the text file.

This title could be somewhat misleading, so let me explain …

I’m downloading a video file … mpeg, avi — being one of the popular formats. Now, if I am downloading it, and the download breaks in the middle of the uhm … download, then, for example, Windows Media Player will give out some error and refuse to play it (although the file is, let’s say, 98% complete). But, players like KMPlayer, or MediaPlayer Classic will play it up until that point (as the matter of fact, they can play it while it is being downloaded as well).

So, I’m interested, … without using any means of download (download managers and alike) to secure the file is completely downloaded, how can one verify whether the video file is downloaded whole, and that it is complete ?

Breakthrough's user avatar

Breakthrough

34.2k10 gold badges104 silver badges149 bronze badges

asked Jan 25, 2010 at 12:54

Rook's user avatar

3

You can use a feature in ffmpeg video converter: if you will specify it to recode video to nothing it will just read input file and report any errors that will appear. This is a very fast process because video frames are just being read, checked and silently dropped.

Example command line: (for Linux)

ffmpeg -v error -i file.avi -f null - 2>error.log

-v error means a certain level of verbosity (to show some errors that are normally hidden because they don’t affect playability a much).

You will get a full error log with some generic information about file ffmpeg will output, so this will probably require your attention, through filters can be written to perform batch check of similar files.

FFmpeg is also available for Windows here. The command line will be almost identical with an exception of stderr redirect:

ffmpeg.exe -v error -i file.avi -f null - >error.log 2>&1

answered Jan 25, 2010 at 13:05

whitequark's user avatar

whitequarkwhitequark

16.1k5 gold badges46 silver badges55 bronze badges

13

I liked idea of using ffmpeg -f null above, but I’d actually like to automate process of using that output. In particular, common scenario I have with my music video collection is that I have few clips which have same resolution, and I’d like to diff verification logs for those files to remove ones broken the most.

Unfortunately, ffmpeg so far doesn’t have a way to disable its interactive mode, which outputs noise for this case of usage. I ended up hacking simple wrapper script to do filtering:

#!/usr/bin/env python
import sys
import os
import re

t = os.popen('ffmpeg -v 5 -i "%s" -f null - 2>&1' % sys.argv[1]).read()
t = re.sub(r"frame=.+?r", "", t)
t = re.sub(r"[(.+?) @ 0x.+?]", "[\1]", t)
print t

Example output:

[mpeg1video]ac-tex damaged at 21 17
[mpeg1video]Warning MVs not available
[mpeg1video]concealing 22 DC, 22 AC, 22 MV errors
[mpeg1video]Warning MVs not available
[mpeg1video]concealing 22 DC, 22 AC, 22 MV errors
[mpeg1video]ac-tex damaged at 13 9

answered Sep 22, 2011 at 17:05

pfalcon's user avatar

pfalconpfalcon

9121 gold badge9 silver badges8 bronze badges

2

For windows, You can ‘batch’ check integrity for videos on current folder and all subfolders with this bat file:

checkvideo.bat

@echo off

set "filtro=%1"
if [%filtro%]==[] (
    set "filtro=*.mp4"
    )

for /R %%a in (%filtro%) do call :doWork "%%a"

    PAUSE
    exit /B

:doWork
    C:ffmpegbinffmpeg.exe -v error -i %1 -f null - > "%~1.log" 2>&1
    

Use:

checkvideo.bat [filter]

If you don’t give one filter, will get ‘*.mp4’.

Samples:
checkvideo.bat
checkvideo.bat *.avi

Setup:
Download FFmpeg for Windows from here: https://ffmpeg.zeranoe.com/builds/ and unzip them
Change C:ffmpegbin in the bat file for the path where you have unzipped ffmpeg
Put checkvideo.bat on a folder included in the Path or add his folder to Path environment variable

UPDATE: As of September 18,2020, the above link is no longer valid so Windows users can download FFmpeg form here or here

user10191234's user avatar

answered Aug 15, 2017 at 14:13

Juan Antonio Tubío's user avatar

1

Although this is an old post, and I’m sure there’s other ways to valid video files now. However, for a full video file check, you can use mplayer.exe.

Using the below (.bat) script will recursively check video files and save validated ones in a integritychecked.log file (to skip next time its run).

if not "%1" equ "" (
    pushd %1
) else (
    pushd "%~dp0"
)

setlocal EnableDelayedExpansion
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
  set "DEL=%%a"
)

echo This script with validate video files in the folder/sub-folders. Please ensure mplayer.exe is accessible in PATH.
echo.
echo Either run this script from the desired (parent) directory or specify the directory when running this script. eg checkvideo.bat <full path>
echo.
pause
echo.

REM Append date and time to integritychecked.log file
for /f "tokens=1-9 delims=/:. " %%d in ("%date% %time: =0%") do echo Started: %%g%%f%%e_%%h%%i%%j>>integritychecked.log

FOR /F "delims=*" %%G in ('dir /b /s *.mkv *.mp4 *.mpg *.mpeg *.xvid *.webm *.m2v *.m4v *.3gp *.3g2 *.avi *.mov *.flv *.wmv') DO (
    REM Confirm if already checked or not from log file 
    set found=0
    for /F "usebackq tokens=*" %%s in ("integritychecked.log") do (
        if %%G equ %%s (
            set found=1
            REM echo "FOUND = %%G = %%s"
        )
    )

    if !found! equ 0 (
        echo Verifying "%%G"
        mplayer -tsprobe 10000000 -benchmark -forcedsubsonly  -mc 0 -nosound -nosub -noautosub -vo null "%%G" 2>"%%G.log"
        REM ffmpeg -v error -i "%%G" -map 0:1 -f null - 2>"%%G.log"
        FOR %%F in ("%%G.log") DO (
            if %%~zF equ 0 (
                del %%F
                call :colour 0a "Video is good"
                echo.
                echo. 
            ) else (
                call :colour 0c "Error in video file:"
                echo.
                type %%F
                call :colour 0e "This can be found in the video's .log file"
                echo.
                echo.
            )
        )
        REM Save entry to log file (as checked)
        echo %%G>>integritychecked.log
    ) else (
        echo already verified "%%G"...skipping.
    )
)
call :colour 0a "Verifying complete!" && echo.
pause
cd %~p0
exit /b

:colour
set "param=^%~2" !
set "param=!param:"="!"
rem Prepare a file "X" with only one dot
<nul > X set /p ".=."
findstr /p /A:%1 "." "!param!..X" nul
<nul set /p ".=%DEL%%DEL%%DEL%%DEL%%DEL%%DEL%%DEL%"
rem Delete "X" file
del X
exit /b

answered Jul 5, 2021 at 12:18

jkeys's user avatar

jkeysjkeys

111 bronze badge

2

I really liked the ffmpeg version provided by How can I check the integrity of a video file (avi, mpeg, mp4…)? but I wanted a version that would only tell me if ffmpeg failed to play the video in a way that stopped it (I can deal with frame drops), and I wanted it to be linux based. I came to the solution below. I also wanted more information about what was happening while it was scanning, so I opted for scanned/total/errored outputting whenever a file starts scanning.

#!/bin/bash
# Name: mediaCheck
# Purpose: Confirm all media in a path can be played back using ffmpeg
# Requires:
# * ffmpeg in $PATH
# * date in $PATH
# * find in $PATH

function checkReqs {
 # checks requirements for the script
 requires="ffmpeg date find"
 re=0
 for i in $requires; do
  if ! which $i > /dev/null; then
   ((re++))
   echo "$i is required in path for this script"
   fi
  done
 if [ "$re" -gt 0 ]; then
  echo "Requirements not met"
  exit 1
  fi
}

function pathCheck {
 # if there isn't a path, use pwd, otherwise clean up whatever is provided.
 if [ -z "$1" ]; then
  lPath=mediaCheck.log
  cPath=$(pwd)
  else
   cPath=$(readlink -f $1)
   lPath=$1
   fi
 }

function pdate {
 # my prefered date formatting
 date +%FT%H:%M:%S
}

function checkMedia {
 # the actual ffmpeg command
 ffmpeg -v error -i $1 -f null - &> "$1.log"
}

function findItems {
 # our main loops
 # first a set of common file types
 for mtype in flv avi m4v mkv mp4; do
  c=0; e=0
  # Get a total per file type
  ttotal=$(find $1 -type f -name *.$mtype | wc -l)
  # then the actual lookup and check
  for i in $(find $1 -type f -name *.$mtype); do
    echo -ne "$(pdate) $c out of $ttotal $mtype files checked with $e errors.r"
    ((c++))
    # check media, and if we fail, increment error counter.
    if ! checkMedia "$i" ; then
    ((e++))
    echo "$i failed" >> $lPath.log
    fi
   done
   echo "$(pdate) $c out of $ttotal $mtype files checked with $e errors."
   unset c e
  done
}

# set blank cpath
cPath=''

# uncomment the line below if this script isn't behaving as expected
# set -x

# Check requirements before anything else
checkReqs
# Then generate a path
pathCheck $1

# Make sure we don't stumble on names with spaces
IFS=$'n'

echo "$(pdate) scan started."
findItems $cPath
echo "$(pdate) scan complete."

answered Jul 7, 2021 at 5:49

Steve Ancona's user avatar

I have developed this python script which checks media files integrity (or tries to), please read instructions for details and limits,
also feedbacks are appreciated:
https://github.com/ftarlao/check-media-integrity

answered Jul 28, 2021 at 13:15

Fabiano Tarlao's user avatar

This one liner using ffprobe checks each input and returns either OK or ERROR, followed by the name of the file.

for i in *; do ffprobe -v error "$i" 2>/dev/null && echo "OK => '$i'" || echo "ERROR => '$i'"; done

I created a fake .mp4 file by running touch video.mp4 to simulate a corrupted video. Result:

OK => 'How To Be A Gardener 1x1 - Know Your Plot.mp4'
OK => 'How To Be A Gardener 1x2 - Understand Plants.mp4'
OK => 'How To Be A Gardener 1x3 - Planting Schemes & Themes.mp4'
OK => 'How To Be A Gardener 1x4 - Practical Planting.mp4'
OK => 'How To Be A Gardener 1x5 - Caring For Your Garden.mp4'
OK => 'How To Be A Gardener 1x6 - Problem Solving.mp4'
OK => 'How To Be A Gardener 1x7 - The Productive Garden.mp4'
OK => 'How To Be A Gardener 1x8 - The Gardening Year.mp4'
ERROR => 'video.mp4'

The actual ffprobe errors can be shown by removing the 2>/dev/null redirection:

for i in *; do ffprobe -v error "$i" && echo "OK => '$i'" || echo "ERROR => '$i'"; done
OK => 'How To Be A Gardener 1x1 - Know Your Plot.mp4'
OK => 'How To Be A Gardener 1x2 - Understand Plants.mp4'
OK => 'How To Be A Gardener 1x3 - Planting Schemes & Themes.mp4'
OK => 'How To Be A Gardener 1x4 - Practical Planting.mp4'
OK => 'How To Be A Gardener 1x5 - Caring For Your Garden.mp4'
OK => 'How To Be A Gardener 1x6 - Problem Solving.mp4'
OK => 'How To Be A Gardener 1x7 - The Productive Garden.mp4'
OK => 'How To Be A Gardener 1x8 - The Gardening Year.mp4'
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x559de0c58900] moov atom not found
video.mp4: Invalid data found when processing input
ERROR => 'video.mp4'

Adjust the for loop to check only specific extensions or files:

for i in *.mkv; do ...
for i in *S01E*.mp4; do ...

answered Apr 11 at 12:59

manero's user avatar

The issue with the other answer using ffmpeg to recode to null format is that it takes really a long time. Especially, if you want to check multiple files in a directory.

A quick way would be to generate thumbnails for all the videos, and see where thumbnail generation fails.

find . -iname "*.mp4" | while read -r line; do 
  line=`echo "$line" | sed -r 's/^W+//g'`; 
  echo 'HERE IT IS ==>' "$line"; 
  if ffmpeg -i "$line" -t 2 -r 0.5 %d.jpg; 
    then echo "DONE for" "$line"; 
  else echo "FAILED for" "$line" >>error.log; 
  fi; 
done;

This method turned out to be much FASTER than other methods.

However, there is a CAVEAT. This method can yield wrong results, because sometimes thumbnail can be generated even for corrupt files. E.g. if the video file is corrupted only at the end, this method will fail.

answered Apr 11, 2018 at 12:16

shivams's user avatar

shivamsshivams

1,7741 gold badge16 silver badges26 bronze badges

2

Easier version

for file in *.mp4; do ffmpeg -v error -i "$file" -f null - >error.log 2>&1; print "$file"; done

This will print the file name as they are being processed.

error.log will contain the errors.

answered Nov 12, 2019 at 9:31

Duck's user avatar

DuckDuck

1,7072 gold badges27 silver badges44 bronze badges

1

fluent-ffmpeg

var ffmpeg = require('fluent-ffmpeg');
var ff = new ffmpeg();

ff.on('start', function(commandLine) {
  // on start, you can verify the command line to be used
})
.on('progress', function(data) {
  // do something with progress data if you like
})
.on('end', function() {
  // do something when complete
})
.on('error', function(err, stdout, stderr) {
  // handle error conditions
  console.log('Error: ' + err.message)
  console.log('ffmpeg output:n' + stdout)
  console.log('ffmpeg stderr:n' + stderr)
})
.addInput('pathtofile')
.addInputOption('-xerror')
.addInputOption('-v error')
.output('-')
.outputOptions('-f null')
.run();

Reference:

https://stackoverflow.com/questions/43349360/how-to-check-for-corrupted-webm-video-using-node-js-and-fluent-ffmpeg

answered Jan 12, 2020 at 11:14

Christoff Erasmus's user avatar

def check(dirpath):
    files = [f for f in listdir(dirpath) if isfile(join(dirpath, f))]
    invalidfiles = []
    for filename in files:
        cmd_args = ['ffprobe', dirpath + '/' + filename]
        pipes = subprocess.Popen(cmd_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        #If you are using python 2.x, you need to include shell=True in the above line
        std_out, std_err = pipes.communicate()
        if 'invalid data' in std_out.decode('utf-8').lower() :
            invalidfiles.append(dirpath + '/' + filename)
            continue
        if 'invalid data' in std_err.decode('utf-8').lower() :
            invalidfiles.append(dirpath + '/' + filename)
            continue
    return invalidfiles

answered Jan 4, 2022 at 1:48

Hairy Ass's user avatar

Hairy AssHairy Ass

231 silver badge5 bronze badges

1

I wrote a wrapper for the ffmpeg command in the form of a GUI-based Python program to batch scan video files in a selected directory; assessing if the files are healthy or corrupt. This is based on the command posted above: ffmpeg -v error -i file.avi -f null - 2>error.log

The program is supported on Windows and macOS and is in the form of a portable executable for either OS. Simply download and run. Regards!

https://github.com/nhershy/CorruptVideoFileInspector

answered Mar 12 at 22:12

nhershy's user avatar

0

MediaInfo is a great tool for getting info about any video file you care to throw at it. This may be able to highlight the info you want.

Another tool is GSpot but it hasn’t been updated since 2007.

Try giving each one a known good and known bad file and compare the results.

I used to use GSpot until it stopped being updated, then switched to MediaInfo

answered Jan 25, 2010 at 13:13

Shevek's user avatar

ShevekShevek

16.5k7 gold badges46 silver badges75 bronze badges

5

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


Go to ffmpeg


r/ffmpeg

FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.




Members





Online



Fastest way to check video files for errors?

I have ~115TB of video files I need to check for encoding errors. I have a script running ffmpeg -v error -i video.ext -f null on each of these files but it takes ~30-90 seconds per file. I can run a few of these in parallel (I’ve got a beefy quad socket server that will be running the script), but before I set it to run, I wanted to make sure there aren’t any other options that would let this run faster.

Any suggestions? Thanks!

Понравилась статья? Поделить с друзьями:
  • Ffmpeg игнорировать ошибки
  • Ffmpeg exe ошибка
  • Ffmpeg dll whatsapp ошибка
  • Fffe1566 ошибка солярис
  • Ffc ошибка ивеко стралис что означает ошибка