ffmpeg-user
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
February 2020
- 74 participants
- 89 discussions
How to decrypt .ts files into separate .ts files with ffmpeg without using a playlist?
by Crazy Red Elephant 14 Feb '20
by Crazy Red Elephant 14 Feb '20
14 Feb '20
Hi,
I have a number of .ts files, .m3u8 playlist and a key to decrypt them. The key is a file, not a hexadecimal string. My goal is to decrypt some of these .ts files to analyze them individually. I also obviously don't want to modify the actual video/audio streams in them in any way, just a decryption.
I have no problem decrypting them as an .m3u8 playlist into one big .ts or .mp4 file with a simple command like "ffmpeg -allowed_extensions ALL -i chunklist.m3u8 -c copy output.ts", I just use URI=key in the playlist and it works. But I need them to be decrypted into separate files, not one.
I could probably just leave only one line in the playlist and decrypt them one by one like this but I want to learn how to do it properly.
I tried opening the key file in a hex editor (which is probably a dumb thing to do) and then using the hex value in a command like "ffmpeg -decryption_key {hex_value} -i part1.ts part1.ts" but it gives me the "Invalid data found when processing input" error...
So how to do this properly? The ffmpeg documentation wasn't helpful...
[Here](https://www.mediafire.com/file/twsn7mdew9aa8lx/test.zip/file) are the files I'm working with in a zip archive. I've included only three of the .ts files there, that should be enough for a test.
Any help will be greatly appreciated. Thanks!
~ Red Elephant.
5
21
Is it possible to stretch/scale only the center part of an overlay image?
I don't mean the middle section of a video, I mean only the center part of
a single image (png) that will be overlayed onto a background, such that
the left and right sides are relatively unchanged, but the center of the
image is stretched to fit the new size.
To further explain... I have a background image with a bunch of text lines
of varying length. I want to overlay an oval (actually a rounded
rectangle) over some text as a highlight. Since all the text parts are
different lengths, I'll either need to create a separate overlay image for
each one OR create one standard overlay image and "stretch/squeeze" it to
fit each section of text. I'd prefer to create only a single overlay
image.
The problem is, when I try to stretch/squeeze my rounded rectangle (using
scale) the ends either get stretched too much or squeezed too much
depending if I need to scale up or down. What I'd like to see is the ends
look the same (or close to) the original overlay image and only the center
part is stretched/squeezed.
Is there some filter I can use instead of or in addition to "scale" that
will do something like this?
Below is an example that illustrates the issue using the ImageMagick
"convert" command to generate the background and highlight images and
ffmpeg to overlay the highlight on the background.
What you'll notice is the highlight around the shortest text has the ends
squeezed too much and the highlight around the longest text has the ends
stretched too much.
Create a background image with 4 text lines:
$ convert -size 720x480 xc:black -font DejaVu-Sans -pointsize 20 -fill white -draw "text 200,100 'not scaled at all'" -draw "text 200,200 'short'" -draw "text 200,300 'middle size line'" -draw "text 200,400 'very very long line with extra words" background.png
Create a rounded rectangle highlight for the overlay:
$ convert -size 200x50 xc:none -fill transparent -stroke green -strokewidth 5 -draw "roundrectangle 10,5 190,45 20,20" highlight.png
Overlay the highlight on each text line and "stretch/squeeze" (using
scale) to fit the text width:
$ ffmpeg -loop 1 -i background.png -loop 1 -i highlight.png -codec:v mpeg2video -b:v 16384k -bufsize 4096k -maxrate 30000k -filter_complex '[1:0]scale=70:in_h[o1];[1:0]scale=190:in_h[o2];[1:0]scale=430:in_h[o3];[0:0][1:0]overlay=x=180:y=70[v1];[v1][o1]overlay=x=190:y=170[v2];[v2][o2]overlay=x=182:y=270[v3];[v3][o3]overlay=x=166:y=370' -t 5 -f vob example.mpg
ffmpeg version N-96725-g13dc90396d Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 9 (GCC)
configuration:
libavutil 56. 40.100 / 56. 40.100
libavcodec 58. 68.102 / 58. 68.102
libavformat 58. 38.100 / 58. 38.100
libavdevice 58. 9.103 / 58. 9.103
libavfilter 7. 75.100 / 7. 75.100
libswscale 5. 6.100 / 5. 6.100
libswresample 3. 6.100 / 3. 6.100
Input #0, png_pipe, from 'background.png':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: png, gray(pc), 720x480, 25 fps, 25 tbr, 25 tbn, 25 tbc
Input #1, png_pipe, from 'highlight.png':
Duration: N/A, bitrate: N/A
Stream #1:0: Video: png, pal8(pc), 200x50, 25 fps, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
Stream #0:0 (png) -> overlay:main
Stream #1:0 (png) -> scale
Stream #1:0 (png) -> scale
Stream #1:0 (png) -> scale
Stream #1:0 (png) -> overlay:overlay
overlay -> Stream #0:0 (mpeg2video)
Press [q] to stop, [?] for help
Output #0, vob, to 'example.mpg':
Metadata:
encoder : Lavf58.38.100
Stream #0:0: Video: mpeg2video (Main), yuv420p, 720x480, q=2-31, 16384 kb/s, 25 fps, 90k tbn, 25 tbc (default)
Metadata:
encoder : Lavc58.68.102 mpeg2video
Side data:
cpb: bitrate max/min/avg: 30000000/0/16384000 buffer size: 4096000 vbv_delay: N/A
frame= 125 fps=0.0 q=2.0 Lsize= 378kB time=00:00:04.92 bitrate= 629.4kbits/s speed=11.9x
video:373kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 1.427849%
3
4
14 Feb '20
I would like to retrieve a specific tag section e.g the comments metadata.
I have a huge text exceeding 255, which would get cut-off when reading
ordinary metadata fields.
However, it does not get cut-off in the tag section of the format. Hence, I
would like to be able to just fetch this one field as a string output.
Is there a way to do this via ffprobe or ffmpeg?
--
Sincerely,
2
7
Archlinux update breaks kmsgrab: Failed to get plane resources: Permission denied
by Kai Hendry 14 Feb '20
by Kai Hendry 14 Feb '20
14 Feb '20
Hi there,
For sometime I've been happily using kmsgrab to make screencasts on my Archlinux Xorg desktop.
https://github.com/kaihendry/recordmydesktop2.0/blob/9825a44d886318d78463c0…
But then it broke after a reboot as described here:
https://www.reddit.com/r/ffmpeg/comments/ez4u5z/failed_to_get_plane_resourc…
Downgrading ffmpeg or linux didn't appear to solve the problem. Perhaps it was some Intel driver update? I'm not sure what package to try downgrade or to bisect this breaking dist-upgrade and reboot, since there has been so many updates...
After some frustration I revisited the ffmpeg wiki to find the "Capture the screen from the first active KMS plane" (using -device /dev/dri/card0 instead of -vaapi_device /dev/dri/renderD128) which does work... for a few *minutes* and then bombs out:
[AVHWFramesContext @ 0x559c5137c400] Failed to create surface from DRM object: 2 (resource allocation failed).
[Parsed_hwmap_0 @ 0x559c513653c0] Failed to map frame: -5.
Error while filtering: Input/output error
Failed to inject frame into filter network: Input/output error
Error while processing the decoded data for stream #1:0
[AVIOContext @ 0x559c51361500] Statistics: 0 seeks, 15 writeouts
[h264_vaapi @ 0x559c513492c0] Freed output buffer 0
[aac @ 0x559c51360580] Qavg: 227.062
[aac @ 0x559c51360580] 2 frames left in the queue on closing
Conversion failed!
Full log is here:
https://s.natalian.org/2020-02-06/1580968072.mp4.log
The output file appears unrecoverable: "moov atom not found" :(
So any tips to get kmsgrab working on my system again?
Btw I found kmsgrab *much better* than x11grab since with VAAPI it doesn't appear to make my T480s overheat. So I really want to restore the gloriously efficient kmsgrab UX I was using until some package update broke it.
Kind regards,
3
4
Can you not user 2 v4l2 devices at once as input? I have a Pi with 2 camera and I am trying to take input from both concurrently.
/dev/video0 and /dev/video1 work when used one at a time.
pi@picam2:~ $ /usr/bin/arecord -D dmic_sv -c2 -r 44100 -f S32_LE |
> /usr/local/bin/ffmpeg -y -thread_queue_size 10240 -f v4l2 -i /dev/video0 \
> -thread_queue_size 10240 -f v4l2 -i /dev/video1 -ac:2 2 -thread_queue_size 10240 -i - \
> -filter_complex "[0][1] overlay=5:main_h-overlay_h-5" -acodec aac -f flv -ar 44100 -f flv test.mp4
Recording WAVE 'stdin' : Signed 32 bit Little Endian, Rate 44100 Hz, Stereo
ffmpeg version N-96343-g029cc9883f Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8 (Raspbian 8.3.0-6+rpi1)
configuration: --enable-network --enable-protocol=tcp --enable-protocol=udp --enable-demuxer=rtsp --enable-decoder=h264 --enable-gpl --enable-libx264 --enable-nonfree --enable-decoder=h264_mmal --enable-encoder=h264_omx --enable-mmal --enable-omx --enable-omx-rpi --enable-libfreetype
libavutil 56. 38.100 / 56. 38.100
libavcodec 58. 65.103 / 58. 65.103
libavformat 58. 35.102 / 58. 35.102
libavdevice 58. 9.103 / 58. 9.103
libavfilter 7. 71.100 / 7. 71.100
libswscale 5. 6.100 / 5. 6.100
libswresample 3. 6.100 / 3. 6.100
libpostproc 55. 6.100 / 55. 6.100
Input #0, video4linux2,v4l2, from '/dev/video0':
Duration: N/A, start: 270.532881, bitrate: 283115 kb/s
Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 1024x768, 283115 kb/s, 30 fps, 30 tbr, 1000k tbn, 1000k tbc
[video4linux2,v4l2 @ 0x260d190] ioctl(VIDIOC_STREAMON): Invalid argument
/dev/video1: Invalid argument
1
0
13 Feb '20
For some reason when I try to read some metadata which has some text with
double quotes, FFprobe tries to escape them from "text here" into \"text
here\", which causes lots of problems on my side, as I unable to serialize
the JSON properly when trying to convert to Java code.
Is there a way to tell the JSON writer not to escape the double quotes
inside the string of the metadata. I am using : ffprobe
arrayOf(
"-loglevel", "error",
"-print_format", "json",
"-show_error",
"-show_streams",
"-show_format",
"-hide_banner",
"-i", realPath
)
--
Sincerely,
Rowland
Rowland
3
4
I have a strange mpeg2ts file that is giving me problems in our encoding
pipeline, I'd like to understand what's wrong in this file, I'm able to
playback it fine with ffplay or VLC but gives a ton of errors while doing
it, but simply fails to be re encoded through nvenc, the file already gives
a lot of errors with a simple ffprobe query (ffmpeg master, just compiled),
it is possible that is a new h264 profile not yet supported by ffmpeg or
the input is just malformed, given the mediainfo output (in the end of the
message), the file seems to be encoded by ffmpeg...
shelob-2 $ ffprobe /Users/gabry/Desktop/WORK_FXSC_01_20200208_Y-FMvsKOBE.ts
ffprobe version n3.4-1-g587fadaef1 Copyright (c) 2007-2017 the FFmpeg
developers
built with Apple LLVM version 9.0.0 (clang-900.0.38)
configuration: --disable-videotoolbox --disable-audiotoolbox
--enable-libx264 --enable-libfdk-aac --enable-nonfree --enable-gpl
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
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 1 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] non-existing SPS 0 referenced in buffering period
[h264 @ 0x7ff544001000] SPS unavailable in decode_picture_timing
[h264 @ 0x7ff544001000] non-existing PPS 0 referenced
[h264 @ 0x7ff544001000] decode_slice_header error
[h264 @ 0x7ff544001000] no frame!
[mpegts @ 0x7ff544004a00] decoding for stream 0 failed
[mpegts @ 0x7ff544004a00] Could not find codec parameters for stream 0
(Video: h264 ([27][0][0][0] / 0x001B), none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize'
options
Input #0, mpegts, from
'/Users/gabry/Desktop/WORK_FXSC_01_20200208_Y-FMvsKOBE.ts':
Duration: 02:25:38.63, start: 1.400000, bitrate: 6775 kb/s
Program 1
Metadata:
service_name : Service01
service_provider: FFmpeg
Stream #0:0[0x100]: Video: h264 ([27][0][0][0] / 0x001B), none, 29.97
fps, 29.97 tbr, 90k tbn, 180k tbc
Stream #0:1[0x101](eng): Audio: aac (LC) ([15][0][0][0] / 0x000F),
48000 Hz, stereo, fltp, 255 kb/s
Mediainfo output:
shelob-2 $ mediainfo
/Users/gabry/Desktop/WORK_FXSC_01_20200208_Y-FMvsKOBE.ts
General
ID : 1 (0x1)
Complete name :
/Users/gabry/Desktop/WORK_FXSC_01_20200208_Y-FMvsKOBE.ts
Format : MPEG-TS
File size : 6.89 GiB
Duration : 2 h 25 min
Overall bit rate mode : Variable
Overall bit rate : 6 776 kb/s
Video
ID : 256 (0x100)
Menu ID : 1 (0x1)
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L4
Format settings : CABAC / 2 Ref Frames
Format settings, CABAC : Yes
Format settings, ReFrames : 2 frames
Codec ID : 27
Duration : 2 h 25 min
Bit rate mode : Constant
Nominal bit rate : 6 000 kb/s
Width : 1 920 pixels
Height : 1 080 pixels
Display aspect ratio : 16:9
Frame rate : 29.970 (30000/1001) FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.097
Color range : Limited
Audio
ID : 257 (0x101)
Menu ID : 1 (0x1)
Format : AAC LC
Format/Info : Advanced Audio Codec Low
Complexity
Format version : Version 4
Muxing mode : ADTS
Codec ID : 15-2
Duration : 2 h 25 min
Bit rate mode : Variable
Channel(s) : 2 channels
Channel layout : L R
Sampling rate : 48.0 kHz
Frame rate : 46.875 FPS (1024 SPF)
Compression mode : Lossy
Delay relative to video : -133 ms
Language : English
Menu
ID : 4096 (0x1000)
Menu ID : 1 (0x1)
Duration : 2 h 25 min
List : 256 (0x100) (AVC) / 257 (0x101)
(AAC, English)
Language : / English
Service name : Service01
Service provider : FFmpeg
Service type : digital television
--
*Bye,*
* Gabry*
--
Le informazioni contenute nella presente comunicazione e i relativi
allegati possono essere riservate e sono, comunque, destinate
esclusivamente alle persone o alla Società sopraindicati e non sono da
considerarsi comunicazioni personali, quindi eventuali risposte potranno
essere conosciute da persone appartenenti all’azienda. La diffusione,
distribuzione e/o copiatura del documento trasmesso da parte di qualsiasi
soggetto diverso dal destinatario è proibita ai sensi dell’art. 616 c.p. I
dati forniti verranno trattati ai sensi dell'art. 13 del Regolamento UE
2016/679 (normativa sulla privacy). Se ha ricevuto questo messaggio per
errore Ti preghiamo di distruggerlo e di informarci immediatamente
contattandoci mandando una mail a privacy(a)wyscout.com
<mailto:privacy@wyscout.com>. Copia integrale dell’informativa potrà essere
visionata presso le nostre sedi.
Any information herein included (even
any attachments) shall be considered confidential and/or privileged
material and meant to be only for the abovementioned persons and/or
Company, therefore such communication is intended to be for the addressee
only. Such information is not personal, that is why this e-mail and any
replies may be known exclusively by people belonging to the company. It is
expressively not allowed communicate, disclose and/or copy any
documentation transmitted by a person other than the recipient, according
to the Italian Criminal Code, Section 616 and the Regulation EU 2016/679.
Your provided data are processed in accordance with Regulation EU 2016/679
(Data Protection Law), Section 13. A full copy of the relevant information
notice is available at the company’s registered office upon request. If you
received this in error, please destroy it and inform us immediately by
sending an e-mail to the following e-mail address privacy(a)wyscout.com
<mailto:privacy@wyscout.com>. A full copy of the relevant information
notice is available at the company’s registered office upon request.
4
5
Hi,
I continued building and rendering after asking some questions last
week. After 6 days x10 hours per day of
(render,test,measure,edit,repeat) I finally was able to publish my
video. In doing so I made it easy to duplicate the bugs I have been seeing.
I have put the 7 files together in one 56Mb package for you to download at
https://www.seahorsecorral.org/videos/tests/ffmpeg-test-gif.zip
The issue is with -i gif and
overlay=x=(calculations):y=(calculations):between
1. between calculates n differently than the 30fps video,
2. the last calculation for x and y are held over in memory for the next
overlay, resulting in offsets and drift over time.
3. occasionally one frame of the gif appears again, outside the range
given in between, in addition to the frames shown at the correct time
(ignoring the 33.333/30 drift).
4. occasionally one frame inside that range specified in between, is
left out or skipped.
I made an extensive list of when some or all of the above are seen and
repeatable. It is in the comments at the end of the .sh file. The
test1.sh version only loaded one video and one gif file, and thus only
saw problem #1. By adding a second gif with different color, (this
test2.sh) then the flashes of the single frame can be identified to it's
parent. The script generates the test-run "2n" where an orange flash is
at frame 408 and a red flash at frame 571. If my comments are unclear,
just ask.
Procedure to duplicate:
$ ./build-test2.sh p
for the perfect png version, which duplicates everything except the
input file type, and then for the gif version, here is the full output
as always requested:
$ ./build-test2.sh
ffmpeg version N-96573-g73aab08d9d Copyright (c) 2000-2020 the FFmpeg
developers
built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516
configuration: --prefix=/usr/local --enable-gpl --enable-libmp3lame
--enable-libvorbis --enable-libx264 --enable-libopenjpeg
--enable-libfreetype --disable-doc --disable-htmlpages
--disable-podpages --enable-shared --enable-libvpx
--extra-cflags=-I/usr/include --extra-ldflags=-L/usr/lib/i386-linux-gnu
--enable-libass --enable-libtesseract --extra-cflags=-msse2
--enable-openssl --enable-nonfree
libavutil 56. 38.100 / 56. 36.101
libavcodec 58. 67.100 / 58. 64.101
libavformat 58. 37.100 / 58. 35.101
libavdevice 58. 9.103 / 58. 9.101
libavfilter 7. 72.100 / 7. 68.100
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 @ 0x180e140] st: 0 edit list: 1 Missing key
frame while searching for timestamp: 2000
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x180e140] st: 0 edit list 1 Cannot find an
index entry before timestamp: 2000.
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from
'20190628_163959_driving-WCurlewLkRd-S_30sec_FHDw.MOV':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
creation_time : 2019-06-28T16:39:59.000000Z
playback_requirements: QuickTime 6.0 or greater
playback_requirements-eng: QuickTime 6.0 or greater
Duration: 00:00:29.50, start: 0.000000, bitrate: 15212 kb/s
Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p,
1920x1080, 15078 kb/s, 30 fps, 30 tbr, 60k tbn, 120k tbc (default)
Metadata:
creation_time : 2019-06-28T16:39:59.000000Z
handler_name : Video Handler
encoder : iCatch AVCC
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz,
stereo, fltp, 127 kb/s (default)
Metadata:
creation_time : 2019-06-28T16:39:59.000000Z
handler_name : Audio Handler
Input #1, gif, from 'redwave-500x400.gif':
Duration: 00:00:01.35, start: 0.000000, bitrate: 2635 kb/s
Stream #1:0: Video: gif, bgra, 500x400, 34 fps, 100 tbr, 100 tbn,
100 tbc
Input #2, gif, from 'orangewave-500x400.gif':
Duration: 00:00:01.35, start: 0.000000, bitrate: 2635 kb/s
Stream #2:0: Video: gif, bgra, 500x400, 34 fps, 100 tbr, 100 tbn,
100 tbc
Stream mapping:
Stream #0:0 (h264) -> scale (graph 0)
Stream #1:0 (gif) -> split (graph 0)
Stream #2:0 (gif) -> overlay:overlay (graph 0)
drawtext (graph 0) -> Stream #0:0 (libx264)
Stream #0:1 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
[libx264 @ 0x18d2bc0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2
AVX LZCNT BMI1 SlowPshufb
[libx264 @ 0x18d2bc0] profile High, level 3.1
[libx264 @ 0x18d2bc0] 264 - core 148 r2748 97eaef2 - H.264/MPEG-4 AVC
codec - Copyleft 2003-2016 - http://www.videolan.org/x264.html -
options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7
psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1
8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6
lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0
bluray_compat=0 constrained_intra=0 bframes=2 b_pyramid=2 b_adapt=1
b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250
keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf
mbtree=1 crf=18.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40
aq=1:1.00
Output #0, mp4, to 'test2-out-gif-720e.mp4':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
playback_requirements-eng: QuickTime 6.0 or greater
playback_requirements: QuickTime 6.0 or greater
encoder : Lavf58.35.101
Stream #0:0: Video: h264 (libx264) (avc1 / 0x31637661), yuv420p,
1280x720, q=-1--1, 30 fps, 15360 tbn, 30 tbc (default)
Metadata:
encoder : Lavc58.67.100 libx264
Side data:
cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz,
stereo, fltp, 128 kb/s (default)
Metadata:
creation_time : 2019-06-28T16:39:59.000000Z
handler_name : Audio Handler
encoder : Lavc58.67.100 aac
[mp4 @ 0x18d2100] Starting second pass: moving the moov atom to the
beginning of the file0.181x
frame= 840 fps=5.3 q=-1.0 Lsize= 42273kB time=00:00:28.01
bitrate=12363.2kbits/s speed=0.177x
video:41964kB audio:280kB subtitle:0kB other streams:0kB global
headers:0kB muxing overhead: 0.070744%
[libx264 @ 0x18d2bc0] frame I:56 Avg QP:17.71 size:150429
[libx264 @ 0x18d2bc0] frame P:280 Avg QP:20.84 size: 63961
[libx264 @ 0x18d2bc0] frame B:504 Avg QP:23.72 size: 33010
[libx264 @ 0x18d2bc0] consecutive B-frames: 6.7% 13.3% 80.0%
[libx264 @ 0x18d2bc0] mb I I16..4: 5.9% 56.3% 37.9%
[libx264 @ 0x18d2bc0] mb P I16..4: 0.9% 13.0% 6.1% P16..4: 32.6%
22.7% 15.8% 0.0% 0.0% skip: 9.0%
[libx264 @ 0x18d2bc0] mb B I16..4: 0.1% 2.1% 1.9% B16..8: 39.2%
14.6% 7.8% direct: 4.2% skip:30.0% L0:43.9% L1:36.4% BI:19.7%
[libx264 @ 0x18d2bc0] 8x8 transform intra:59.4% inter:60.1%
[libx264 @ 0x18d2bc0] coded y,uvDC,uvAC intra: 92.6% 93.1% 68.5% inter:
35.9% 38.0% 9.1%
[libx264 @ 0x18d2bc0] i16 v,h,dc,p: 6% 33% 4% 56%
[libx264 @ 0x18d2bc0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 10% 26% 13% 6% 8%
7% 10% 7% 14%
[libx264 @ 0x18d2bc0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 11% 28% 10% 7% 9%
7% 11% 6% 11%
[libx264 @ 0x18d2bc0] i8c dc,h,v,p: 47% 31% 12% 9%
[libx264 @ 0x18d2bc0] Weighted P-Frames: Y:6.1% UV:2.1%
[libx264 @ 0x18d2bc0] ref P L0: 62.6% 14.8% 16.1% 6.2% 0.2%
[libx264 @ 0x18d2bc0] ref B L0: 80.8% 16.5% 2.7%
[libx264 @ 0x18d2bc0] kb/s:12277.17
[aac @ 0x18d0f40] Qavg: 118.000
Stewart
3
8
Hi.
I could use a little help.
I have a file with several streams and a DVB-Teletext stream with subtitles.
I have been looking in the Wiki, but i am unable to get the subtitles
encoded into my mp4 file. I keep getting different errors. Video and
sound is np problem. I know how to get that encoded
I want the stream 0:1:2 dan or all of them to be encoded to my file.
I have tried with this:
ffmpeg -ss 00:04:45 -c:v h264_mmal -i 'Beck_ _je for _je (4).ts' -to
00:05:00 -map 0:0 -map 0:1 -map 0:2 -c:v h264_omx -b:v 4800k -c:a:0 copy
-c:s:0 copy mov_text -metadata:0:1:2 language=dan 'Beck Øje for øje (4).mp4'
And other combinations, but it won't work.
So what is the correct commandline to get it work for this file:
Input #0, mpegts, from 'Beck_ _je for _je (4).ts':
Duration: 01:42:01.16, start: 27482.817233, bitrate: 9647 kb/s
Program 7310
Metadata:
service_name : C More Hits
service_provider: YouSee
Stream #0:0[0x99c]: Video: h264 (High) ([27][0][0][0] / 0x001B),
yuv420p(tv, bt709, top first), 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 50
tbr, 90k tbn, 50 tbc
Stream #0:1[0x99e](swe,nor,dan,fin): Subtitle: dvb_teletext
([6][0][0][0] / 0x0006)
Stream #0:2[0x9a2](dan): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz,
stereo, fltp, 384 kb/s
Stream #0:3[0x9a3](nor): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz,
stereo, fltp, 384 kb/s
No Program
Stream #0:4[0x12]: Data: epg
6
26
I'm trying to stream to online service via FFmpeg. All my test commands works fine with restream.io preview and with local rtmp server viewer. My OBS setup works fine too (same resolution, server and key). Only when I'm about to start ffmpeg stream from my command line it stucks after few seconds.
My test command:
ffmpeg -stream_loop -1 \
-i noise.mov \
-c:v libx264 c:a aac \
-f flv 'rtmps://live-upload******'
With -debug pict after some progress with input files and rtmp handshaking I can see this:
Clipping frame in rate conversion by 0.000008
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10 times
[h264 @ 0x7ff12001da00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7ff12001e000] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10 times
[h264 @ 0x7ff12001e600] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7ff12001ec00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 8 times
[h264 @ 0x7ff12001ac00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7ff12001da00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7ff12001e000] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
[libx264 @ 0x7ff120802400] frame= 0 QP=20.00 NAL=3 Slice:I Poc:0 I:3600 P:0 SKIP:0 size=216266 bytes
[h264 @ 0x7ff12001e600] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
[libx264 @ 0x7ff120802400] frame= 1 QP=31.00 NAL=2 Slice:P Poc:2 I:287 P:3267 SKIP:46 size=48597 bytes
[h264 @ 0x7ff12001ec00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
[libx264 @ 0x7ff120802400] frame= 2 QP=30.00 NAL=2 Slice:P Poc:4 I:710 P:2888 SKIP:2 size=79226 bytes
..and that's it.
The same command works fine with any other online service except this one. What I can do to debug it? Works fine with OBS, but won't with ffmpeg command. noise.mov — 720×1280px mov file.
Full log:
iMac:Desktop 350d$ ffmpeg -stream_loop -1 -re -i noise.mov -c:v libx264 -preset ultrafast -c:a aac -f flv -debug pict 'rtmps://live-upload.*******'
ffmpeg version N-96521-g5e62100152-tessus https://evermeet.cx/ffmpeg/ Copyright (c) 2000-2020 the FFmpeg developers
built with Apple clang version 11.0.0 (clang-1100.0.33.17)
configuration: --cc=/usr/bin/clang --prefix=/opt/ffmpeg --extra-version=tessus --enable-avisynth --enable-fontconfig --enable-gpl --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libmysofa --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopus --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvmaf --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-version3 --pkg-config-flags=--static --disable-ffplay
libavutil 56. 38.100 / 56. 38.100
libavcodec 58. 67.100 / 58. 67.100
libavformat 58. 36.100 / 58. 36.100
libavdevice 58. 9.103 / 58. 9.103
libavfilter 7. 71.100 / 7. 71.100
libswscale 5. 6.100 / 5. 6.100
libswresample 3. 6.100 / 3. 6.100
libpostproc 55. 6.100 / 55. 6.100
matched as AVOption 'debug' with argument 'pict'.
Reading option 'rtmps://live-upload.************' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Successfully parsed a group of options.
Parsing a group of options: input url /Users/350d/Desktop/noise.mov.
Applying option stream_loop (set number of times input stream shall be looped) with argument -1.
Applying option re (read input at native frame rate) with argument 1.
Successfully parsed a group of options.
Opening an input file: /Users/350d/Desktop/noise.mov.
[NULL @ 0x7fb1e5000000] Opening '/Users/350d/Desktop/noise.mov' for reading
[file @ 0x7fb1e4c01700] Setting default whitelist 'file,crypto,data'
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] ISO: File Type Major Brand: qt
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Processing st: 0, edit list 0 - media time: 2112, duration: 160230
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] drop a frame at curr_cts: 0 @ 0
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] drop a frame at curr_cts: 1024 @ 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] skip 64 audio samples from curr_cts: 2048
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Shifting DTS by 100 because of negative CTTS.
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Processing st: 1, edit list 0 - media time: 0, duration: 10900
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] stts: 0 ctts: 0, ctts_index: 0, ctts_count: 109
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] stts: 100 ctts: 100, ctts_index: 1, ctts_count: 109
....
....
....
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] stts: 10800 ctts: 0, ctts_index: 108, ctts_count: 109
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Setting codecpar->delay to 1 for stream st: 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Unknown dref type 0x73696c61 size 12
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Processing st: 2, edit list 0 - media time: 0, duration: 10900
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] Before avformat_find_stream_info() pos: 3397542 bytes read:70076 seeks:3 nb_streams:3
[h264 @ 0x7fb1e5806a00] nal_unit_type: 7(SPS), nal_ref_idc: 1
[h264 @ 0x7fb1e5806a00] nal_unit_type: 8(PPS), nal_ref_idc: 1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] demuxer injecting skip 2112 / discard 0
[aac @ 0x7fb1e5010c00] skip 2112 / discard 0 samples due to side data
[h264 @ 0x7fb1e5806a00] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 0x7fb1e5806a00] nal_unit_type: 5(IDR), nal_ref_idc: 1
[h264 @ 0x7fb1e5806a00] Format yuv420p chosen by get_format().
[h264 @ 0x7fb1e5806a00] Reinit context to 720x1280, pix_fmt: yuv420p
[h264 @ 0x7fb1e5806a00] no picture
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] All info found
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb1e5000000] After avformat_find_stream_info() pos: 200654 bytes read:270218 seeks:4 frames:45
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/350d/Desktop/noise.mov':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
creation_time : 2020-01-27T09:49:16.000000Z
com.apple.quicktime.displayname: STREAM
com.apple.quicktime.title: STREAM
Duration: 00:00:03.63, start: 0.000000, bitrate: 7480 kb/s
Stream #0:0(und), 44, 1/44100: Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 101 kb/s (default)
Metadata:
creation_time : 2020-01-27T09:49:16.000000Z
handler_name : Core Media Audio
Stream #0:1(und), 1, 1/3000: Video: h264 (High), 1 reference frame (avc1 / 0x31637661), yuv420p(tv, bt709, progressive, left), 720x1280 [SAR 1:1 DAR 9:16], 0/1, 7328 kb/s, 30 fps, 30 tbr, 3k tbn, 6k tbc (default)
Metadata:
creation_time : 2020-01-27T09:49:16.000000Z
handler_name : Core Media Video
encoder : H.264
timecode : 00:00:00:00
Stream #0:2(und), 0, 1/3000: Data: none (tmcd / 0x64636D74), 0/1, 0 kb/s (default)
Metadata:
creation_time : 2020-01-27T09:49:16.000000Z
handler_name : Core Media Time Code
timecode : 00:00:00:00
Successfully opened the file.
Parsing a group of options: output url rtmps://live-upload.*************.
Applying option c:v (codec name) with argument libx264.
Applying option c:a (codec name) with argument aac.
Applying option f (force format) with argument flv.
Successfully parsed a group of options.
Opening an output file: rtmps://live-upload.********************.
[rtmps @ 0x7fb1e4c04a00] No default whitelist set
[tls @ 0x7fb1e4c04880] No default whitelist set
[tcp @ 0x7fb1e4c04940] No default whitelist set
[tcp @ 0x7fb1e4c04940] Original list of addresses:
[tcp @ 0x7fb1e4c04940] Address ***** port 443
[tcp @ 0x7fb1e4c04940] Interleaved list of addresses:
[tcp @ 0x7fb1e4c04940] Address ***** port 443
[tcp @ 0x7fb1e4c04940] Starting connection attempt to ***** port 443
[tcp @ 0x7fb1e4c04940] Successfully connected to ***** port 443
[rtmps @ 0x7fb1e4c04a00] Handshaking...
[rtmps @ 0x7fb1e4c04a00] Type answer 3
[rtmps @ 0x7fb1e4c04a00] Server version 1.0.5.4
[rtmps @ 0x7fb1e4c04a00] Proto = rtmps, path = /rtmp/**************, app = rtmp, fname = *****************
[rtmps @ 0x7fb1e4c04a00] Window acknowledgement size = 5000000
[rtmps @ 0x7fb1e4c04a00] Max sent, unacked = 5000000
[rtmps @ 0x7fb1e4c04a00] New incoming chunk size = 4096
[rtmps @ 0x7fb1e4c04a00] Releasing stream...
[rtmps @ 0x7fb1e4c04a00] FCPublish stream...
[rtmps @ 0x7fb1e4c04a00] Creating stream...
[rtmps @ 0x7fb1e4c04a00] Sending publish command for '********************'
Successfully opened the file.
detected 4 logical cores
[h264 @ 0x7fb1e5035400] nal_unit_type: 7(SPS), nal_ref_idc: 1
[h264 @ 0x7fb1e5035400] nal_unit_type: 8(PPS), nal_ref_idc: 1
Stream mapping:
Stream #0:1 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:0 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[aac @ 0x7fb1e5011800] skip 2112 / discard 0 samples due to side data
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 1 times
[aac @ 0x7fb1e5011800] skip 64/1024 samples
[graph_1_in_0_0 @ 0x7fb1e4e05540] Setting 'time_base' to value '1/44100'
[graph_1_in_0_0 @ 0x7fb1e4e05540] Setting 'sample_rate' to value '44100'
[graph_1_in_0_0 @ 0x7fb1e4e05540] Setting 'sample_fmt' to value 'fltp'
[graph_1_in_0_0 @ 0x7fb1e4e05540] Setting 'channel_layout' to value '0x3'
[graph_1_in_0_0 @ 0x7fb1e4e05540] tb:1/44100 samplefmt:fltp samplerate:44100 chlayout:0x3
[format_out_0_1 @ 0x7fb1e4e03f00] Setting 'sample_fmts' to value 'fltp'
[format_out_0_1 @ 0x7fb1e4e03f00] Setting 'sample_rates' to value '96000|88200|64000|48000|44100|32000|24000|22050|16000|12000|11025|8000|7350'
[AVFilterGraph @ 0x7fb1e4d10940] query_formats: 4 queried, 9 merged, 0 already done, 0 delayed
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 197507 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 190577 times
[h264 @ 0x7fb1e5035400] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 0x7fb1e5035400] nal_unit_type: 5(IDR), nal_ref_idc: 1
[h264 @ 0x7fb1e5035400] Format yuv420p chosen by get_format().
[h264 @ 0x7fb1e5035400] Reinit context to 720x1280, pix_fmt: yuv420p
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 436 times
[h264 @ 0x7fb1e5035400] no picture
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 9068 times
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 8658 times
[h264 @ 0x7fb1e580ae00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 8151 times
[h264 @ 0x7fb1e5807600] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 18758 times
[h264 @ 0x7fb1e5807c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 8906 times
[h264 @ 0x7fb1e5821c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10004 times
[h264 @ 0x7fb1e5035400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] Setting 'video_size' to value '720x1280'
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] Setting 'pix_fmt' to value '0'
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] Setting 'time_base' to value '1/3000'
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:1 @ 0x7fb1e4d13080] w:720 h:1280 pixfmt:yuv420p tb:1/3000 fr:30/1 sar:1/1
[format @ 0x7fb1e4d12f00] Setting 'pix_fmts' to value 'yuv420p|yuvj420p|yuv422p|yuvj422p|yuv444p|yuvj444p|nv12|nv16|nv21|yuv420p10le|yuv422p10le|yuv444p10le|nv20le|gray|gray10le'
[AVFilterGraph @ 0x7fb1e4f0a5c0] query_formats: 4 queried, 3 merged, 0 already done, 0 delayed
[libx264 @ 0x7fb1e5015600] using mv_range_thread = 104
[libx264 @ 0x7fb1e5015600] using SAR=1/1
[libx264 @ 0x7fb1e5015600] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
[libx264 @ 0x7fb1e5015600] profile Constrained Baseline, level 3.1, 4:2:0, 8-bit
[libx264 @ 0x7fb1e5015600] 264 - core 159 r2991 1771b55 - H.264/MPEG-4 AVC codec - Copyleft 2003-2019 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=0:0:0 analyse=0:0 me=dia subme=0 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=250 keyint_min=25 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=0
[flv @ 0x7fb1e5014400] Ignoring metadata for framerate
[flv @ 0x7fb1e5014400] Ignoring metadata for width
[flv @ 0x7fb1e5014400] Ignoring metadata for height
Output #0, flv, to 'rtmps://live-upload.***********************************':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
encoder : Lavf58.36.100
com.apple.quicktime.displayname: IG STREAM
com.apple.quicktime.title: IG STREAM
framerate : 30
width : 720
height : 1280
title : USERNAME
creation_time : 2020-01-27T09:49:16.000000Z
Stream #0:0(und), 0, 1/1000: Video: h264 (libx264), 1 reference frame ([7][0][0][0] / 0x0007), yuv420p(left), 720x1280 [SAR 1:1 DAR 9:16], 0/1, q=-1--1, 30 fps, 1k tbn, 30 tbc (default)
Metadata:
creation_time : 2020-01-27T09:49:16.000000Z
handler_name : Core Media Video
timecode : 00:00:00:00
encoder : Lavc58.67.100 libx264
Side data:
cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
Stream #0:1(und), 0, 1/1000: Audio: aac (LC) ([10][0][0][0] / 0x000A), 44100 Hz, stereo, fltp, delay 1024, 128 kb/s (default)
Metadata:
creation_time : 2020-01-27T09:49:16.000000Z
handler_name : Core Media Audio
encoder : Lavc58.67.100 aac
Clipping frame in rate conversion by 0.000008
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10 times
[h264 @ 0x7fb1e580ae00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7fb1e5807600] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10 times
[h264 @ 0x7fb1e5807c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 3 times
[h264 @ 0x7fb1e5821c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 10 times
[h264 @ 0x7fb1e5035400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7fb1e580ae00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Last message repeated 5 times
[h264 @ 0x7fb1e5807600] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
[libx264 @ 0x7fb1e5015600] frame= 0 QP=20.00 NAL=3 Slice:I Poc:0 I:3600 P:0 SKIP:0 size=216266 bytes
[h264 @ 0x7fb1e5807c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 1
[libx264 @ 0x7fb1e5015600] frame= 1 QP=31.00 NAL=2 Slice:P Poc:2 I:287 P:3267 SKIP:46 size=48597 bytes
[h264 @ 0x7fb1e5821c00] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 0
[libx264 @ 0x7fb1e5015600] frame= 2 QP=30.00 NAL=2 Slice:P Poc:4 I:710 P:2888 SKIP:2 size=79226 bytes
^C[tls @ 0x7fb1e4c04880] IO Error: -9806
av_interleaved_write_frame(): Input/output error
[libx264 @ 0x7fb1e5015600] frame= 3 QP=30.00 NAL=2 Slice:P Poc:6 I:355 P:3245 SKIP:0 size=82386 bytes
2
2