Opened 3 years ago

#9400 new defect

FFmpeg does not generate hls master playlist when using codec copying

Reported by: z1rachl Owned by:
Priority: normal Component: ffmpeg
Version: unspecified Keywords: HLS RTSP copy
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

Summary of the bug:
I am trying to generate live hls stream without transcoding from rtsp. Everything works fine, except master playlist generating while all output codecs are set to 'copy'. It does not contain any #EXT-X-STREAM-INF tags with stream information. It has only 2 lines:

#EXTM3U
#EXT-X-VERSION:3

How to reproduce:

% ffmpeg -re -rtsp_transport tcp -i rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -vcodec copy -acodec copy -f hls -hls_time 1 -hls_list_size 1 -hls_allow_cache 0 -hls_segment_filename chunk-%1d.ts -hls_start_number_source epoch -master_pl_name master.m3u8 -segment_format mpegts -hls_flags delete_segments+split_by_time+omit_endlist stream.m3u8

or without audio

% ffmpeg -re -rtsp_transport tcp -i rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -vcodec copy -an -f hls -hls_time 1 -hls_list_size 1 -hls_allow_cache 0 -hls_segment_filename chunk-%1d.ts -hls_start_number_source epoch -master_pl_name master.m3u8 -segment_format mpegts -hls_flags delete_segments+split_by_time+omit_endlist stream.m3u8

But when i change acodec or vcodec to any other value it starts working properly.

% ffmpeg -re -rtsp_transport tcp -i rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -vcodec copy -acodec libfdk_aac -f hls -hls_time 1 -hls_list_size 1 -hls_allow_cache 0 -hls_segment_filename chunk-%1d.ts -hls_start_number_source epoch -master_pl_name master.m3u8 -segment_format mpegts -hls_flags delete_segments+split_by_time+omit_endlist stream.m3u8

For above command master playlist looks so:

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=38399,RESOLUTION=240x160,CODECS="avc1.42c01e,mp4a.40.2"
stream-5.m3u8

FFmpeg output for first pipeline, when bug occures:

ffmpeg -re -rtsp_transport tcp -v 9 -loglevel 99 -i rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -vcodec copy -acodec copy -f hls -hls_time 1 -hls_list_size 1 -hls_allow_cache 0 -hls_segment_filename chunk-%1d.ts -hls_start_number_source epoch -master_pl_name master.m3u8 -segment_format mpegts -hls_flags delete_segments+split_by_time+omit_endlist stream.m3u8

ffmpeg version N-103248-g83860a3d8c Copyright (c) 2000-2021 the FFmpeg developers
  built with gcc 9 (Ubuntu 9.3.0-17ubuntu1~20.04)
  configuration: --enable-gpl --enable-version3 --enable-nonfree --enable-static --disable-shared --disable-ffplay --disable-doc --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-gcrypt --enable-libssh --enable-openssl --enable-openal --enable-opencl --enable-opengl --enable-cuda --enable-cuvid --enable-nvenc --enable-libnpp --enable-libdrm --enable-omx --disable-yasm --enable-vaapi --enable-libmfx --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64
  libavutil      57.  4.100 / 57.  4.100
  libavcodec     59.  4.101 / 59.  4.101
  libavformat    59.  4.101 / 59.  4.101
  libavdevice    59.  0.100 / 59.  0.100
  libavfilter     8.  1.103 /  8.  1.103
  libswscale      6.  0.100 /  6.  0.100
  libswresample   4.  0.100 /  4.  0.100
  libpostproc    56.  0.100 / 56.  0.100
Splitting the commandline.
Reading option '-re' ... matched as option 're' (read input at native frame rate; equivalent to -readrate 1) with argument '1'.
Reading option '-rtsp_transport' ... matched as AVOption 'rtsp_transport' with argument 'tcp'.
Reading option '-v' ... matched as option 'v' (set logging level) with argument '9'.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument '99'.
Reading option '-i' ... matched as input url with argument 'rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov'.
Reading option '-vcodec' ... matched as option 'vcodec' (force video codec ('copy' to copy stream)) with argument 'copy'.
Reading option '-acodec' ... matched as option 'acodec' (force audio codec ('copy' to copy stream)) with argument 'copy'.
Reading option '-f' ... matched as option 'f' (force format) with argument 'hls'.
Reading option '-hls_time' ... matched as AVOption 'hls_time' with argument '1'.
Reading option '-hls_list_size' ... matched as AVOption 'hls_list_size' with argument '1'.
Reading option '-hls_allow_cache' ... matched as AVOption 'hls_allow_cache' with argument '0'.
Reading option '-hls_segment_filename' ... matched as AVOption 'hls_segment_filename' with argument 'chunk-%1d.ts'.
Reading option '-hls_start_number_source' ... matched as AVOption 'hls_start_number_source' with argument 'epoch'.
Reading option '-master_pl_name' ... matched as AVOption 'master_pl_name' with argument 'master.m3u8'.
Reading option '-segment_format' ... matched as AVOption 'segment_format' with argument 'mpegts'.
Reading option '-hls_flags' ... matched as AVOption 'hls_flags' with argument 'delete_segments+split_by_time+omit_endlist'.
Reading option 'stream.m3u8' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option v (set logging level) with argument 9.
Successfully parsed a group of options.
Parsing a group of options: input url rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov.
Applying option re (read input at native frame rate; equivalent to -readrate 1) with argument 1.
Successfully parsed a group of options.
Opening an input file: rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov.
Probing rtsp score:100 size:0
[tcp @ 0x55e392469000] No default whitelist set
[tcp @ 0x55e392469000] Original list of addresses:
[tcp @ 0x55e392469000] Address 34.227.104.115 port 554
[tcp @ 0x55e392469000] Interleaved list of addresses:
[tcp @ 0x55e392469000] Address 34.227.104.115 port 554
[tcp @ 0x55e392469000] Starting connection attempt to 34.227.104.115 port 554
[tcp @ 0x55e392469000] Successfully connected to 34.227.104.115 port 554
[rtsp @ 0x55e392466200] Sending:
OPTIONS rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov RTSP/1.0
CSeq: 1
User-Agent: Lavf59.4.101

--
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4b [K]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTSP/1.0 200 OK'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='CSeq: 1'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Server: Wowza Streaming Engine 4.8.10 build20210217143515'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Cache-Control: no-cache'
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=49 [I]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=4e [N]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=4c [L]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=59 [Y]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=49 [I]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4e [N]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=4e [N]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=4e [N]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=47 [G]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=5f [_]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Public: DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE, OPTIONS, ANNOUNCE, RECORD, GET_PARAMETER'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=79 [y]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Supported: play.basic, con.persistent'
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line=''
[rtsp @ 0x55e392466200] Sending:
DESCRIBE rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov RTSP/1.0
Accept: application/sdp
CSeq: 2
User-Agent: Lavf59.4.101

--
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4b [K]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTSP/1.0 200 OK'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='CSeq: 2'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Server: Wowza Streaming Engine 4.8.10 build20210217143515'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Cache-Control: no-cache'
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=78 [x]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Expires: Mon, 30 Aug 2021 06:03:05 UTC'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=4c [L]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Content-Length: 587'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=79 [y]
[rtsp @ 0x55e392466200] ret=1 c=5f [_]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Content-Base: rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/'
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Date: Mon, 30 Aug 2021 06:03:05 UTC'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=79 [y]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Content-Type: application/sdp'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Session: 754015370;timeout=60'
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line=''
[rtsp @ 0x55e392466200] SDP:
v=0
o=- 754015370 754015370 IN IP4 34.227.104.115
s=BigBuckBunny_115k.mov
c=IN IP4 34.227.104.115
t=0 0
a=sdplang:en
a=range:npt=0- 596.48
a=control:*
m=audio 0 RTP/AVP 96
a=rtpmap:96 mpeg4-generic/12000/2
a=fmtp:96 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1490
a=control:trackID=1
m=video 0 RTP/AVP 97
a=rtpmap:97 H264/90000
a=fmtp:97 packetization-mode=1;profile-level-id=42C01E;sprop-parameter-sets=Z0LAHtkDxWhAAAADAEAAAAwDxYuS,aMuMsg==
a=cliprect:0,0,160,240
a=framesize:97 240-160
a=framerate:24.0
a=control:trackID=2

[rtsp @ 0x55e392466200] sdp: v='0'
[rtsp @ 0x55e392466200] sdp: o='- 754015370 754015370 IN IP4 34.227.104.115'
[rtsp @ 0x55e392466200] sdp: s='BigBuckBunny_115k.mov'
[rtsp @ 0x55e392466200] sdp: c='IN IP4 34.227.104.115'
[rtsp @ 0x55e392466200] sdp: t='0 0'
[rtsp @ 0x55e392466200] sdp: a='sdplang:en'
[rtsp @ 0x55e392466200] sdp: a='range:npt=0- 596.48'
[rtsp @ 0x55e392466200] sdp: a='control:*'
[rtsp @ 0x55e392466200] sdp: m='audio 0 RTP/AVP 96'
[rtsp @ 0x55e392466200] sdp: a='rtpmap:96 mpeg4-generic/12000/2'
[rtsp @ 0x55e392466200] audio codec set to: aac
[rtsp @ 0x55e392466200] audio samplerate set to: 12000
[rtsp @ 0x55e392466200] audio channels set to: 2
[rtsp @ 0x55e392466200] sdp: a='fmtp:96 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1490'
[rtsp @ 0x55e392466200] sdp: a='control:trackID=1'
[rtsp @ 0x55e392466200] sdp: m='video 0 RTP/AVP 97'
[rtsp @ 0x55e392466200] sdp: a='rtpmap:97 H264/90000'
[rtsp @ 0x55e392466200] video codec set to: h264
[rtsp @ 0x55e392466200] sdp: a='fmtp:97 packetization-mode=1;profile-level-id=42C01E;sprop-parameter-sets=Z0LAHtkDxWhAAAADAEAAAAwDxYuS,aMuMsg=='
[rtsp @ 0x55e392466200] RTP Packetization Mode: 1
[rtsp @ 0x55e392466200] RTP Profile IDC: 42 Profile IOP: c0 Level: 1e
[rtsp @ 0x55e392466200] Extradata set to 0x55e39246a2e0 (size: 33)
[rtsp @ 0x55e392466200] sdp: a='cliprect:0,0,160,240'
[rtsp @ 0x55e392466200] sdp: a='framesize:97 240-160'
[rtsp @ 0x55e392466200] sdp: a='framerate:24.0'
[rtsp @ 0x55e392466200] sdp: a='control:trackID=2'
[rtsp @ 0x55e392466200] Sending:
SETUP rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/trackID=1 RTSP/1.0
Transport: RTP/AVP/TCP;unicast;interleaved=0-1
CSeq: 3
User-Agent: Lavf59.4.101
Session: 754015370

--
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4b [K]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTSP/1.0 200 OK'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='CSeq: 3'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Server: Wowza Streaming Engine 4.8.10 build20210217143515'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Cache-Control: no-cache'
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=78 [x]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Expires: Mon, 30 Aug 2021 06:03:06 UTC'
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=56 [V]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Transport: RTP/AVP/TCP;unicast;interleaved=0-1'
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Date: Mon, 30 Aug 2021 06:03:06 UTC'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Session: 754015370;timeout=60'
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line=''
[rtsp @ 0x55e392466200] setting jitter buffer size to 0
[rtsp @ 0x55e392466200] Sending:
SETUP rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/trackID=2 RTSP/1.0
Transport: RTP/AVP/TCP;unicast;interleaved=2-3
CSeq: 4
User-Agent: Lavf59.4.101
Session: 754015370

--
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4b [K]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTSP/1.0 200 OK'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='CSeq: 4'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Server: Wowza Streaming Engine 4.8.10 build20210217143515'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Cache-Control: no-cache'
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=78 [x]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Expires: Mon, 30 Aug 2021 06:03:06 UTC'
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=56 [V]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Transport: RTP/AVP/TCP;unicast;interleaved=2-3'
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4d [M]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=41 [A]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=55 [U]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Date: Mon, 30 Aug 2021 06:03:06 UTC'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Session: 754015370;timeout=60'
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line=''
[rtsp @ 0x55e392466200] setting jitter buffer size to 0
[rtsp @ 0x55e392466200] hello state=0
[rtsp @ 0x55e392466200] Sending:
PLAY rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/ RTSP/1.0
Range: npt=0.000-
CSeq: 5
User-Agent: Lavf59.4.101
Session: 754015370

--
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=4f [O]
[rtsp @ 0x55e392466200] ret=1 c=4b [K]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTSP/1.0 200 OK'
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=54 [T]
[rtsp @ 0x55e392466200] ret=1 c=50 [P]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=49 [I]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=66 [f]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=79 [y]
[rtsp @ 0x55e392466200] ret=1 c=5f [_]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=49 [I]
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=2c [,]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=42 [B]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=79 [y]
[rtsp @ 0x55e392466200] ret=1 c=5f [_]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=2f [/]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=6b [k]
[rtsp @ 0x55e392466200] ret=1 c=49 [I]
[rtsp @ 0x55e392466200] ret=1 c=44 [D]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='RTP-Info: url=rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/trackID=1;seq=1;rtptime=0,url=rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/trackID=2;seq=1;rtptime=0'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=71 [q]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='CSeq: 5'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=76 [v]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=57 [W]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=77 [w]
[rtsp @ 0x55e392466200] ret=1 c=7a [z]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=45 [E]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=62 [b]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=64 [d]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=32 [2]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Server: Wowza Streaming Engine 4.8.10 build20210217143515'
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=43 [C]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=72 [r]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6c [l]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=63 [c]
[rtsp @ 0x55e392466200] ret=1 c=68 [h]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Cache-Control: no-cache'
[rtsp @ 0x55e392466200] ret=1 c=52 [R]
[rtsp @ 0x55e392466200] ret=1 c=61 [a]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=67 [g]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=70 [p]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=2d [-]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=39 [9]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=2e [.]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=38 [8]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Range: npt=0.0-596.48'
[rtsp @ 0x55e392466200] ret=1 c=53 [S]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=73 [s]
    Last message repeated 1 times
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=6e [n]
[rtsp @ 0x55e392466200] ret=1 c=3a [:]
[rtsp @ 0x55e392466200] ret=1 c=20 [ ]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=34 [4]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=31 [1]
[rtsp @ 0x55e392466200] ret=1 c=35 [5]
[rtsp @ 0x55e392466200] ret=1 c=33 [3]
[rtsp @ 0x55e392466200] ret=1 c=37 [7]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
[rtsp @ 0x55e392466200] ret=1 c=3b [;]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=69 [i]
[rtsp @ 0x55e392466200] ret=1 c=6d [m]
[rtsp @ 0x55e392466200] ret=1 c=65 [e]
[rtsp @ 0x55e392466200] ret=1 c=6f [o]
[rtsp @ 0x55e392466200] ret=1 c=75 [u]
[rtsp @ 0x55e392466200] ret=1 c=74 [t]
[rtsp @ 0x55e392466200] ret=1 c=3d [=]
[rtsp @ 0x55e392466200] ret=1 c=36 [6]
[rtsp @ 0x55e392466200] ret=1 c=30 [0]
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line='Session: 754015370;timeout=60'
]rtsp @ 0x55e392466200] ret=1 c=0d [
[rtsp @ 0x55e392466200] ret=1 c=0a [
]
[rtsp @ 0x55e392466200] line=''
[h264 @ 0x55e392470400] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x55e392470400] nal_unit_type: 8(PPS), nal_ref_idc: 3
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=823
[h264 @ 0x55e392470400] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x55e392470400] nal_unit_type: 8(PPS), nal_ref_idc: 3
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=426
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=19
[h264 @ 0x55e392470400] nal_unit_type: 7(SPS), nal_ref_idc: 3
[h264 @ 0x55e392470400] nal_unit_type: 8(PPS), nal_ref_idc: 3
[h264 @ 0x55e392470400] nal_unit_type: 6(SEI), nal_ref_idc: 0
[h264 @ 0x55e392470400] nal_unit_type: 5(IDR), nal_ref_idc: 3
[h264 @ 0x55e392470400] Format yuv420p chosen by get_format().
[h264 @ 0x55e392470400] Reinit context to 240x160, pix_fmt: yuv420p
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=19
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=433
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=19
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=151
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=403
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=151
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=158
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=152
[h264 @ 0x55e392470400] nal_unit_type: 1(Coded slice of a non-IDR picture), nal_ref_idc: 2
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=405
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=157
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=37
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=384
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=94
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=134
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=167
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=414
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=169
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=69
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=751
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=160
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=175
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=180
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=395
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=206
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=185
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=375
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=221
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=208
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=400
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=239
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=221
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=243
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=401
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=227
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=263
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=770
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=259
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=271
[rtsp @ 0x55e392466200] All info found
[rtsp @ 0x55e392466200] rfps: 23.416667 0.019616
[rtsp @ 0x55e392466200] rfps: 23.500000 0.014414
[rtsp @ 0x55e392466200] rfps: 23.583333 0.010014
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 23.666667 0.006416
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 23.750000 0.003620
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 23.833333 0.001625
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 23.916667 0.000432
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.000000 0.000041
[rtsp @ 0x55e392466200] rfps: 24.083333 0.000452
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.166667 0.001665
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.250000 0.003680
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.333333 0.006496
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.416667 0.010114
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 24.500000 0.014534
[rtsp @ 0x55e392466200] rfps: 24.583333 0.019756
[rtsp @ 0x55e392466200] rfps: 48.000000 0.000166
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 120.000000 0.001036
[rtsp @ 0x55e392466200] rfps: 240.000000 0.004144
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 23.976024 0.000072
    Last message repeated 1 times
[rtsp @ 0x55e392466200] rfps: 47.952048 0.000287
    Last message repeated 1 times
[rtsp @ 0x55e392466200] stream 0: start_time: 0 duration: NOPTS
[rtsp @ 0x55e392466200] stream 1: start_time: 0.208333 duration: NOPTS
[rtsp @ 0x55e392466200] format: start_time: 0 duration: 596.48 (estimate from stream) bitrate=0 kb/s
Input #0, rtsp, from 'rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov':
  Metadata:
    title           : BigBuckBunny_115k.mov
  Duration: 00:09:56.48, start: 0.000000, bitrate: N/A
  Stream #0:0, 14, 1/12000: Audio: aac (LC), 12000 Hz, stereo, fltp
  Stream #0:1, 28, 1/90000: Video: h264 (Constrained Baseline), 1 reference frame, yuv420p(progressive, left), 240x160, 0/1, 24 fps, 24 tbr, 90k tbn
Successfully opened the file.
Parsing a group of options: output url stream.m3u8.
Applying option vcodec (force video codec ('copy' to copy stream)) with argument copy.
Applying option acodec (force audio codec ('copy' to copy stream)) with argument copy.
Applying option f (force format) with argument hls.
Successfully parsed a group of options.
Opening an output file: stream.m3u8.
Successfully opened the file.
[hls muxer @ 0x55e39255ca80] start_number evaluated to 1630303387
[mpegts @ 0x55e392549600] service 1 using PCR in pid=256, pcr_period=0ms
[mpegts @ 0x55e392549600] muxrate VBR, sdt every 1073741822000 ms, pat/pmt every 1073741822000 ms
Output #0, hls, to 'stream.m3u8':
  Metadata:
    title           : BigBuckBunny_115k.mov
    encoder         : Lavf59.4.101
  Stream #0:0, 0, 1/90000: Video: h264 (Constrained Baseline), 1 reference frame, yuv420p(progressive, left), 240x160 (0x0), 0/1, q=2-31, 24 fps, 24 tbr, 90k tbn
  Stream #0:1, 0, 1/90000: Audio: aac (LC), 12000 Hz, stereo, fltp
Stream mapping:
  Stream #0:1 -> #0:0 (copy)
  Stream #0:0 -> #0:1 (copy)
Press [q] to stop, [?] for help
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)
cur_dts is invalid st:1 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
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)
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18750, current: 0; changing to 18751. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:1; previous: 0, current: 0; changing to 1. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18751, current: 3690; changing to 18752. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18752, current: 7470; changing to 18753. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18753, current: 11250; changing to 18754. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18754, current: 14940; changing to 18755. This may result in incorrect timestamps in the output file.
[hls @ 0x55e39249f8c0] Non-monotonous DTS in output stream 0:0; previous: 18755, current: 18720; changing to 18756. This may result in incorrect timestamps in the output file.
[mpegts @ 0x55e392549600] nal 7
[mpegts @ 0x55e392549600] nal 8
[mpegts @ 0x55e392549600] nal 6
[mpegts @ 0x55e392549600] nal 5
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 12 times
[mpegts @ 0x55e392549600] nal 1=N/A time=00:00:00.59 bitrate=N/A speed=1.19x    
    Last message repeated 10 times
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303387.ts' for writing
[file @ 0x55e39256ad00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e392561b00] Statistics: 0 seeks, 1 writeouts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303387
[AVIOContext @ 0x55e392561b00] Statistics: 0 seeks, 1 writeouts
[hls @ 0x55e39249f8c0] Opening 'master.m3u8' for writing
[file @ 0x55e392534140] Setting default whitelist 'file,crypto,data'
Bandwidth info not available, set audio and video bitrates
[AVIOContext @ 0x55e392561b00] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:01.10 bitrate=N/A speed= 1.1x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=273
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=385
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=272
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=312
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=384
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=265
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=312
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=299
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=403
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=314
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=314
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=416
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=389
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=341
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=793
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:01.62 bitrate=N/A speed=1.07x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=393
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=374
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=391
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=396
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=397
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=367
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=433
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=374
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=353
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=443
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=392
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=479
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=840
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=429
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=576
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=753
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[mpegts @ 0x55e392549600] nal 7
[mpegts @ 0x55e392549600] nal 8
[mpegts @ 0x55e392549600] nal 5
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=57
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=46
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=377
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303388.ts' for writing
[file @ 0x55e39251d880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e392511100] Statistics: 0 seeks, 1 writeouts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303388
[AVIOContext @ 0x55e392511100] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:02.13 bitrate=N/A speed=1.06x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=38
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=34
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=362
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=67
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=61
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=82
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=731
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=81
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=52
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=401
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=86
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=49
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=40
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=379
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=56
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=238
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=393
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:02.64 bitrate=N/A speed=1.05x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=613
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=711
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=715
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=404
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=400
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=389
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=404
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=309
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=429
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=719
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=347
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=544
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=552
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=364
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=557
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=513
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=387
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303389.ts' for writing
[file @ 0x55e39256a980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303387.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303389
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:03.15 bitrate=N/A speed=1.04x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=586
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=673
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=681
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=380
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=624
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=586
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=393
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=773
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=748
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=729
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=749
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=677
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=648
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=380
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=702
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=605
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=358
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:03.66 bitrate=N/A speed=1.04x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=582
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=597
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=543
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=400
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=566
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=611
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=401
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=567
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=519
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=33
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=16
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=336
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=412
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=229
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=314
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=782
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 7
[mpegts @ 0x55e392549600] nal 8
[mpegts @ 0x55e392549600] nal 5
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303390.ts' for writing
[file @ 0x55e392510200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303388.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303390
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=336
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=386
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=382
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:04.18 bitrate=N/A speed=1.04x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=413
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=378
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=389
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=392
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=391
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=384
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=400
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=402
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=343
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=344
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=768
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=361
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=360
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=385
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=397
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=285
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=328
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=398
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:04.69 bitrate=N/A speed=1.03x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=301
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=337
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=360
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=355
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=365
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=453
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=381
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=437
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=488
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=357
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=466
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=515
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=500
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=750
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303391.ts' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303389.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e39250fac0] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303391
[AVIOContext @ 0x55e39250fe00] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=499
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=495
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=370
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:05.20 bitrate=N/A speed=1.03x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=541
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=605
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=365
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=595
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=487
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=434
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=390
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=448
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=412
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=388
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=493
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=503
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=468
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=781
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=613
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:05.63 bitrate=N/A speed=1.02x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=480
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=404
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=527
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=436
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=480
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=387
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=492
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=475
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=390
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=447
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=33
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=16
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=917
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=394
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=132
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=218
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=285
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=369
[mpegts @ 0x55e392549600] nal 1
[mpegts @ 0x55e392549600] nal 7
[mpegts @ 0x55e392549600] nal 8
[mpegts @ 0x55e392549600] nal 5
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=251
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=305
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=709
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303392.ts' for writing
[file @ 0x55e39256a980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e39256b1c0] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303390.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303392
[AVIOContext @ 0x55e3924f7400] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 1=N/A time=00:00:06.16 bitrate=N/A speed=1.02x    
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=250
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=327
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=306
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=359
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=304
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=356
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=362
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=375
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=306
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=280
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=413
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=347
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=283
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=387
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=218
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=222
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=799
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 1=N/A time=00:00:06.66 bitrate=N/A speed=1.02x    
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=246
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=306
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=310
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=343
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=305
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=298
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=398
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=306
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=284
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=384
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=376
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=282
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=337
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=333
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=766
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303393.ts' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e3924f7400] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303391.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e3924ca440] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303393
[AVIOContext @ 0x55e39247a800] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:07.16 bitrate=N/A speed=1.01x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=365
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=297
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=267
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=376
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 2 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=376
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=339
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=389
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=342
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=334
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=319
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=371
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=312
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=364
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=788
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=392
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=392
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=428
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=381
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:07.68 bitrate=N/A speed=1.01x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=367
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=374
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=391
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=442
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=288
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=392
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=475
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=344
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=33
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=16
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=1372
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=919
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=407
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=114
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=209
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=732
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 7
[mpegts @ 0x55e392549600] nal 8
[mpegts @ 0x55e392549600] nal 5
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303394.ts' for writing
[file @ 0x55e392510540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e3924f7400] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303392.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e39250fac0] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303394
[AVIOContext @ 0x55e39256b1c0] Statistics: 0 seeks, 1 writeouts
[mpegts @ 0x55e392549600] nal 1
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=216
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=245
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=309
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=397
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:=00:00:08.19 bitrate=N/A speed=1.02x    
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=274
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=278
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=337
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=293
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=323
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=395
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=313
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=336
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=362
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=408
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=368
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=731
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 3 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=421
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=207
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=375
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=281
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=290
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=338
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=728
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 1=N/A time=00:00:08.74 bitrate=N/A speed=1.02x    
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=317
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=361
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=345
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=357
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=423
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=2 len=345
[rtsp @ 0x55e392466200] tcp_read_packet:
[rtsp @ 0x55e392466200] ret=1 c=24 [$]
[rtsp @ 0x55e392466200] id=0 len=366
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[mpegts @ 0x55e392549600] nal 1
    Last message repeated 1 times
[hls @ 0x55e39249f8c0] Opening 'chunk-1630303395.ts' for writing
[file @ 0x55e392569d40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x55e39256b1c0] Statistics: 0 seeks, 1 writeouts
[hls muxer @ 0x55e39255ca80] deleting old segment chunk-1630303393.ts
[hls @ 0x55e39249f8c0] Opening 'stream.m3u8.tmp' for writing
[file @ 0x55e3924ca440] Setting default whitelist 'file,crypto,data'
EXT-X-MEDIA-SEQUENCE:1630303395
[AVIOContext @ 0x55e39256b1c0] Statistics: 0 seeks, 1 writeouts
frame=  216 fps= 24 q=-1.0 Lsize=N/A time=00:00:08.96 bitrate=N/A speed=1.01x    
video:89kB audio:38kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Input file #0 (rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov):
  Input stream #0:0 (audio): 106 packets read (39223 bytes); 
  Input stream #0:1 (video): 216 packets read (90697 bytes); 
  Total: 322 packets (129920 bytes) demuxed
Output file #0 (stream.m3u8):
  Output stream #0:0 (video): 216 packets muxed (90697 bytes); 
  Output stream #0:1 (audio): 106 packets muxed (39223 bytes); 
  Total: 322 packets (129920 bytes) muxed
0 frames successfully decoded, 0 decoding errors
[rtsp @ 0x55e392466200] Sending:
TEARDOWN rtsp://wowzaec2demo.streamlock.net:554/vod/mp4:BigBuckBunny_115k.mov/ RTSP/1.0
CSeq: 6
User-Agent: Lavf59.4.101
Session: 754015370

--
Exiting normally, received signal 2.

Attachments (2)

master.m3u8 (25 bytes ) - added by z1rachl 3 years ago.
Bad master playlist
master.2.m3u8 (122 bytes ) - added by z1rachl 3 years ago.
Good master playlist

Download all attachments as: .zip

Change History (2)

by z1rachl, 3 years ago

Attachment: master.m3u8 added

Bad master playlist

by z1rachl, 3 years ago

Attachment: master.2.m3u8 added

Good master playlist

Note: See TracTickets for help on using tickets.