Giter Club home page Giter Club logo

Comments (31)

gramilla avatar gramilla commented on June 6, 2024 2

If you need to test and run something, let me know I will do it

from neolink.

rygrass avatar rygrass commented on June 6, 2024 1

@hh1209 Awesome thanks for that! Seems that was my main issue as they are all working now.

from neolink.

eribr avatar eribr commented on June 6, 2024

I'd like to add that I previously got errors like:

[2020-06-17T13:45:25Z DEBUG neolink::bc::xml] Struct: start to parse "Extension"
[2020-06-17T13:45:25Z DEBUG yaserde::de] Fetched StartElement(Extension, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2020-06-17T13:45:25Z DEBUG yaserde::de] Fetched StartElement(binaryData, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2020-06-17T13:45:25Z DEBUG yaserde::de] Fetched Characters(1)
[2020-06-17T13:45:25Z DEBUG yaserde::de] Fetched EndElement(binaryData)
[2020-06-17T13:45:25Z DEBUG yaserde::de] Fetched EndElement(Extension)
[2020-06-17T13:45:27Z DEBUG neolink::bc_protocol::connection] Shutting down BcConnection...
[2020-06-17T13:45:27Z DEBUG neolink::bc_protocol::connection] Ignoring uninteresting message ID 3
[2020-06-17T13:45:55Z DEBUG neolink::bc_protocol::connection] Shutdown finished OK
[2020-06-17T13:45:55Z ERROR neolink] Error streaming from camera balkong, will retry in 1s: Timeout

The connection errors I got here can be related to the camera not liking my wifi-router or something similar. I have found the connection from the official desktop client to the camera somewhat unreliable at times as well.

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Hey I'm very glad you reached out. I suspect the E1 uses H.264 as the underlying video; right now neolink is hardcoded to use H.265, mostly out of laziness.

Let me see if I can add autodetect, or at least make a test build that uses H.264.

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Would you be willing to send me a saved/exported video from your camera using the official Reolink client? I could validate that it's using H.264 and add support.

from neolink.

MrUkleja avatar MrUkleja commented on June 6, 2024

Let me help
VLC says it is H.264
Video exported from Reolink app attached
Korytarz Cam-232727-232743.zip

from neolink.

rygrass avatar rygrass commented on June 6, 2024

Would that be the same for D800 Series? As I am having the same issues as the people above?

Tried with VLC / Blue Iris etc..

Mode.l D800
Build no. Build 20042201
Cg. Version V2.0.0.0
FW. Version V2.0.0.17_20042201

VLC States H.264. I have selected 'baseline' as the H.264 Profile in the Reolink Client. Not sure if that actually makes a difference?

[
LeftFront-194241-194258.zip
](url)

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Oh how interesting. I have a report from @hh1209 that his D800 is working right now. Perhaps there are two generations of this camera, one with H.264 and one with H.265...

Try this: can you set your D800 to the highest settings? Maybe it switches codecs based on resolution (unlikely, but I'm grasping straws here).

from neolink.

rygrass avatar rygrass commented on June 6, 2024

Well, it seems that one of Camera's out of the Three has the latest firmware ' V2.0.0.17_20042201'. Upon trying to Connect this to Neolink. It seems it gets a time out message.
Neolink

The other two Camera's are on out of the box firmware '2.0.0.610_19121002' which don't seem to have any issues staying connected to Neolink . Changing the Profile to 'Main / High' It has made no difference. So I would assume that as you say some D800 have H.264? Would be interested to see what firmware @hh1209 have??

from neolink.

hh1209 avatar hh1209 commented on June 6, 2024

Here's the info on my D800. That timeout issue loos very similar to what happens when the date/times aren't set on my cameras. Check if your times are set on the one timing out.

Screenshot_20200623-101422_Reolink

Also, @rygrass I'd be interested to see if your hardware info matches mine.

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

A very good point... See #14 for the timestamp thing. tl;dr sometimes the cameras forget the current time and it makes them fiddly to reconnect to.

from neolink.

hh1209 avatar hh1209 commented on June 6, 2024

I updated to the latest version of firmware on my D800, and Neolink is still working fine for me. After I set the time on the camera, of course.

hwver

from neolink.

gramilla avatar gramilla commented on June 6, 2024

My E1 succes connect but no stream via VLC
[2020-06-23T17:33:38Z INFO neolink] Neolink 0.2.0 (unknown commit) release
[2020-06-23T17:33:38Z INFO neolink] home: Connecting to camera at 192.168.1.21:9000
[2020-06-23T17:33:38Z INFO neolink] home: Connected to camera, starting video stream

photo_2020-06-23_19-34-1___1

from neolink.

eribr avatar eribr commented on June 6, 2024

I tried a quick hack-attack in src/gst.rs, on my raspberry-pi:

        factory.set_launch(concat!(
            "( ",
            "appsrc name=writesrc is-live=true block=true emit-signals=false ma\
x-bytes=0",
            " ! h264parse",
            " ! rtph264pay name=pay0",
            " )"
        ));

But I got the same result (I tried giving gstreamer a completely broken launch as well, just to confirm that it was my code that was executing).
Soon, I'll probably set up some kind of rust-build env on my windows-laptop (Since build-times are really slow on the rpi). I'm happy to try out different troubleshooting builds then.

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Another thing you can do is turn on Gstreamer debugging:

set GST_DEBUG=3

or on Linux:

export GST_DEBUG=3

That will give a lot of info.

from neolink.

gramilla avatar gramilla commented on June 6, 2024

Another thing you can do is turn on Gstreamer debugging:

set GST_DEBUG=3

or on Linux:

export GST_DEBUG=3

That will give a lot of info.

Gstreamer log

[2020-06-23T18:58:07Z INFO  neolink] home: Connected to camera, starting video stream
0:00:21.841498777 16584 0x7f3380005b70 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<writesrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:21.985727630 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12409 will be dropped
0:00:22.030031392 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13137 will be dropped
0:00:22.119320376 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13617 will be dropped
0:00:22.190412490 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12697 will be dropped
0:00:22.237380397 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13233 will be dropped
0:00:22.320961631 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13369 will be dropped
0:00:22.401112051 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13121 will be dropped
0:00:22.430998959 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13609 will be dropped
0:00:22.568094611 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13033 will be dropped
0:00:22.597721769 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13401 will be dropped
0:00:22.631527073 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13729 will be dropped
0:00:22.658639788 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13463 will be dropped
0:00:22.709972990 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1453:gst_h265_parse_vps: failed to read uint8, nbits: 1
0:00:22.709988651 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:22.709994881 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:22.710001311 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:22.787742756 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13609 will be dropped
0:00:22.792294223 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14790 will be dropped
0:00:22.850653547 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1466:gst_h265_parse_vps: value greater than max. value: 14, max 1
0:00:22.850665977 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:22.850671457 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:22.850678157 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 33 will be dropped
0:00:22.850689277 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:22.850699917 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:22.996880043 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 291435 will be dropped
0:00:22.998998277 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12337 will be dropped
0:00:23.043446089 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12705 will be dropped
0:00:23.102810445 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12102 will be dropped
0:00:23.196364226 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11905 will be dropped
0:00:23.255660872 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12137 will be dropped
0:00:23.321460768 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12521 will be dropped
0:00:23.373852833 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12809 will be dropped
0:00:23.437842297 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12265 will be dropped
0:00:23.534968013 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13369 will be dropped
0:00:23.592459916 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12825 will be dropped
0:00:23.656399830 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12609 will be dropped
0:00:23.658922884 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12593 will be dropped
0:00:23.724946911 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 1, max 0
0:00:23.724960591 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:23.724966441 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:23.724973811 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:23.774132080 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13041 will be dropped
0:00:23.857793026 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13185 will be dropped
0:00:23.923028041 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13193 will be dropped
0:00:23.964189377 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13164 will be dropped
0:00:23.970280658 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 65, max 0
0:00:23.970289208 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:23.970294108 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:23.970300388 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:24.036416005 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12769 will be dropped
0:00:24.123977776 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13217 will be dropped
0:00:24.190151094 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13337 will be dropped
0:00:24.237803430 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13129 will be dropped
0:00:24.308262395 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13113 will be dropped
0:00:24.395173296 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13193 will be dropped
0:00:24.438539427 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13385 will be dropped
0:00:24.504868484 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13537 will be dropped
0:00:24.574669867 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13745 will be dropped
0:00:24.634368834 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12945 will be dropped
0:00:24.702507584 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13513 will be dropped
0:00:24.702540644 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13430 will be dropped
0:00:24.837360342 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13795 will be dropped
0:00:24.837386482 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:24.837396222 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:24.940053049 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 307083 will be dropped
0:00:25.023495534 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12313 will be dropped
0:00:25.061958076 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11825 will be dropped
0:00:25.076269109 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11423 will be dropped
0:00:25.140465343 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:25.140479813 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:25.140486113 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:25.140494033 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:25.202838665 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11217 will be dropped
0:00:25.256929222 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11841 will be dropped
0:00:25.323457039 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11905 will be dropped
0:00:25.419587605 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11993 will be dropped
0:00:25.455623764 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12385 will be dropped
0:00:25.486503934 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11848 will be dropped
0:00:25.544285918 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:25.544302478 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:25.544309338 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:25.544317038 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:25.597625255 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12369 will be dropped
0:00:25.663615351 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12569 will be dropped
0:00:25.704326677 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12425 will be dropped
0:00:25.787241472 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12545 will be dropped
0:00:25.834664028 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12649 will be dropped
0:00:25.896888340 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12409 will be dropped
0:00:25.986612685 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12249 will be dropped
0:00:26.047853625 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12681 will be dropped
0:00:26.093815589 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12529 will be dropped
0:00:26.093844989 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12375 will be dropped
0:00:26.185024117 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 24, max 0
0:00:26.185041687 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:26.185052357 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:26.185061637 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:26.226644665 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12233 will be dropped
0:00:26.294987297 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12801 will be dropped
0:00:26.384707192 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13385 will be dropped
0:00:26.449367417 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12417 will be dropped
0:00:26.513041291 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17305 will be dropped
0:00:26.600690483 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 6025 will be dropped
0:00:26.659741419 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13625 will be dropped
0:00:26.728530091 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11105 will be dropped
0:00:26.794291608 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13833 will be dropped
0:00:26.833241252 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16707 will be dropped
0:00:26.833263512 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:26.833272932 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:26.959591266 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 203851 will be dropped
0:00:27.016729980 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13777 will be dropped
0:00:27.061953123 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15745 will be dropped
0:00:27.105644394 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14593 will be dropped
0:00:27.191764724 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13833 will be dropped
0:00:27.249459768 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15865 will be dropped
0:00:27.303514156 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14113 will be dropped
0:00:27.372180467 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14769 will be dropped
0:00:27.443803594 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16313 will be dropped
0:00:27.506009895 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15105 will be dropped
0:00:27.575417948 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15873 will be dropped
0:00:27.639910153 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16113 will be dropped
0:00:27.724733591 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16345 will be dropped
0:00:27.777023736 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17041 will be dropped
0:00:27.840593049 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16065 will be dropped
0:00:27.915848632 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16873 will be dropped
0:00:27.977275401 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15817 will be dropped
0:00:28.039592413 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16137 will be dropped
0:00:28.144170434 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16505 will be dropped
0:00:28.192356383 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15921 will be dropped
0:00:28.264453600 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16841 will be dropped
0:00:28.333681373 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16873 will be dropped
0:00:28.377323864 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16585 will be dropped
0:00:28.450728544 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16401 will be dropped
0:00:28.535520961 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17369 will be dropped
0:00:28.633209140 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16945 will be dropped
0:00:28.664156570 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17089 will be dropped
0:00:28.707919112 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16940 will be dropped
0:00:28.739379583 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1453:gst_h265_parse_vps: failed to read uint8, nbits: 1
0:00:28.739394133 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:28.739400323 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:28.739407813 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:28.747488876 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17144 will be dropped
0:00:28.785187008 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 96, max 0
0:00:28.785201008 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:28.785206988 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:28.785214338 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:28.836637432 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 17435 will be dropped
0:00:28.836661652 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:28.836671152 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:28.948501174 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 244683 will be dropped
0:00:28.994208788 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14273 will be dropped
0:00:29.060731107 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14593 will be dropped
0:00:29.113132592 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12329 will be dropped
0:00:29.143510342 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13041 will be dropped
0:00:29.210361501 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 8, max 0
0:00:29.210375711 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:29.210381591 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:29.210388901 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:29.238395956 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14273 will be dropped
0:00:29.372606906 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13441 will be dropped
0:00:29.386354138 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14249 will be dropped
0:00:29.471111516 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14097 will be dropped
0:00:29.589128578 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14049 will be dropped
0:00:29.594848928 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15081 will be dropped
0:00:29.740246245 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13865 will be dropped
0:00:29.745281953 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15145 will be dropped
0:00:29.967672176 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14513 will be dropped
0:00:29.970757531 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14177 will be dropped
0:00:29.990933264 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14993 will be dropped
0:00:30.010875607 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14417 will be dropped
0:00:30.059238446 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14145 will be dropped
0:00:30.128150349 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15321 will be dropped
0:00:30.181646036 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14801 will be dropped
0:00:30.251048359 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14649 will be dropped
0:00:30.384973238 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15705 will be dropped
0:00:30.401560614 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15345 will be dropped
0:00:30.436140051 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15417 will be dropped
0:00:30.566527924 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15201 will be dropped
0:00:30.576062250 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15745 will be dropped
0:00:30.636028337 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14929 will be dropped
0:00:30.735729271 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14921 will be dropped
0:00:30.776114487 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15369 will be dropped
0:00:30.833476501 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 16395 will be dropped
0:00:30.833498741 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:30.833512421 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:30.925757091 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 285051 will be dropped
0:00:30.980889851 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13681 will be dropped
0:00:31.047567470 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12809 will be dropped
0:00:31.116517753 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11633 will be dropped
0:00:31.194076200 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11457 will be dropped
0:00:31.255879171 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12777 will be dropped
0:00:31.260973419 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11434 will be dropped
0:00:31.344024045 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 3, max 2
0:00:31.344037966 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:31.344043906 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:31.344055056 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:31.377967242 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12665 will be dropped
0:00:31.450251810 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12713 will be dropped
0:00:31.515224896 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13377 will be dropped
0:00:31.601229197 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12793 will be dropped
0:00:31.654814244 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12633 will be dropped
0:00:31.684726374 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13790 will be dropped
0:00:31.871343188 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 3, max 0
0:00:31.871361118 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:31.871368868 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:31.871377918 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:31.880245763 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13281 will be dropped
0:00:31.881683865 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12601 will be dropped
0:00:31.881707285 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13015 will be dropped
0:00:31.944163698 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 1, max 0
0:00:31.944174958 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:31.944182398 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:31.944193648 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:31.981548868 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12113 will be dropped
0:00:32.059226287 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12889 will be dropped
0:00:32.187100976 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12481 will be dropped
0:00:32.201078519 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13193 will be dropped
0:00:32.328099828 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14025 will be dropped
0:00:32.332942195 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13761 will be dropped
0:00:32.391380660 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13497 will be dropped
0:00:32.482309760 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13913 will be dropped
0:00:32.540188425 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13833 will be dropped
0:00:32.540225935 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13596 will be dropped
0:00:32.645826407 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14001 will be dropped
0:00:32.724384587 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14193 will be dropped
0:00:32.778796326 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15513 will be dropped
0:00:32.839754486 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 15259 will be dropped
0:00:32.839777836 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:32.839789186 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:33.052755876 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 294979 will be dropped
0:00:33.054921219 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12825 will be dropped
0:00:33.058389055 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12497 will be dropped
0:00:33.126953387 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12001 will be dropped
0:00:33.184574162 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12033 will be dropped
0:00:33.239909102 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12185 will be dropped
0:00:33.383088667 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12369 will be dropped
0:00:33.432713989 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12369 will be dropped
0:00:33.471220472 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12657 will be dropped
0:00:33.557141593 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12585 will be dropped
0:00:33.582907345 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12673 will be dropped
0:00:33.662853796 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13257 will be dropped
0:00:33.706623858 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12385 will be dropped
0:00:33.790438755 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12537 will be dropped
0:00:33.839851727 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13105 will be dropped
0:00:33.908566409 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12849 will be dropped
0:00:33.988376420 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12753 will be dropped
0:00:34.038081622 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13185 will be dropped
0:00:34.130424784 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13353 will be dropped
0:00:34.169270817 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12473 will be dropped
0:00:34.240349864 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13385 will be dropped
0:00:34.302853026 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13025 will be dropped
0:00:34.379015101 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13601 will be dropped
0:00:34.452010831 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13033 will be dropped
0:00:34.524102389 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13873 will be dropped
0:00:34.600953706 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13513 will be dropped
0:00:34.666770484 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12849 will be dropped
0:00:34.737457210 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14097 will be dropped
0:00:34.784732288 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13689 will be dropped
0:00:34.844998276 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14099 will be dropped
0:00:34.845019296 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:34.845029867 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:34.957400521 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 296468 will be dropped
0:00:34.960039456 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 3, max 0
0:00:34.960048506 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:34.960055256 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:34.960063806 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:34.990787386 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12417 will be dropped
0:00:35.059694070 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12609 will be dropped
0:00:35.128927025 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11705 will be dropped
0:00:35.178569066 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12305 will be dropped
0:00:35.239931617 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12001 will be dropped
0:00:35.326679429 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11729 will be dropped
0:00:35.384819935 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13009 will be dropped
0:00:35.438864724 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12329 will be dropped
0:00:35.523549333 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12153 will be dropped
0:00:35.595254961 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12481 will be dropped
0:00:35.658789206 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12833 will be dropped
0:00:35.700496504 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12217 will be dropped
0:00:35.703017549 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12599 will be dropped
0:00:35.781132117 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:35.781152307 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:35.781162657 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:35.781174047 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:35.838713702 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13385 will be dropped
0:00:35.899445422 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12241 will be dropped
0:00:35.990100221 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13585 will be dropped
0:00:36.030889699 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12609 will be dropped
0:00:36.137307873 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13585 will be dropped
0:00:36.204163893 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13161 will be dropped
0:00:36.247050164 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13033 will be dropped
0:00:36.345120596 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13305 will be dropped
0:00:36.408381730 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13241 will be dropped
0:00:36.450024689 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13945 will be dropped
0:00:36.509179706 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12993 will be dropped
0:00:36.600593547 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13353 will be dropped
0:00:36.659142724 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13433 will be dropped
0:00:36.715068055 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13433 will be dropped
0:00:36.803809441 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13913 will be dropped
0:00:36.839229339 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14899 will be dropped
0:00:36.839256599 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:36.839272149 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:36.946994087 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 294307 will be dropped
0:00:36.956731703 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 3, max 0
0:00:36.956743333 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:36.956750123 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:36.956758813 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:36.981161303 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12801 will be dropped
0:00:37.043324836 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12633 will be dropped
0:00:37.117956389 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11969 will be dropped
0:00:37.197091339 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11529 will be dropped
0:00:37.239072979 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12625 will be dropped
0:00:37.329782598 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11609 will be dropped
0:00:37.384893529 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11665 will be dropped
0:00:37.439045838 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12233 will be dropped
0:00:37.503068044 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13095 will be dropped
0:00:37.525268610 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 44, max 7
0:00:37.525282930 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:37.525291870 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:37.525301700 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:37.569446214 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12289 will be dropped
0:00:37.638729027 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13841 will be dropped
0:00:37.721452924 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12953 will be dropped
0:00:37.768998303 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12233 will be dropped
0:00:37.836016933 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13177 will be dropped
0:00:37.902263943 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13801 will be dropped
0:00:37.943879681 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13073 will be dropped
0:00:37.993470543 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 300, max 0
0:00:37.993485533 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:37.993494843 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:37.993505973 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:38.052659441 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12769 will be dropped
0:00:38.129648219 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13609 will be dropped
0:00:38.179483451 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13057 will be dropped
0:00:38.256015567 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13329 will be dropped
0:00:38.304816178 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13361 will be dropped
0:00:38.378215319 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13961 will be dropped
0:00:38.437868289 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12617 will be dropped
0:00:38.523613150 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13321 will be dropped
0:00:38.598757734 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13593 will be dropped
0:00:38.637445698 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13713 will be dropped
0:00:38.637488298 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13558 will be dropped
0:00:38.698767320 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:38.698777870 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:38.698786150 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:38.698797300 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:38.786840655 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13817 will be dropped
0:00:38.838187349 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 14187 will be dropped
0:00:38.838217059 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:38.838231409 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:38.985226942 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 300507 will be dropped
0:00:38.985264412 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12547 will be dropped
0:00:38.988996988 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 1, max 0
0:00:38.989011008 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:38.989020608 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:38.989033398 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:39.035244085 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12009 will be dropped
0:00:39.097993069 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 10857 will be dropped
0:00:39.165973251 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11745 will be dropped
0:00:39.225927001 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11937 will be dropped
0:00:39.312633483 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12321 will be dropped
0:00:39.382567739 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11681 will be dropped
0:00:39.448878068 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12073 will be dropped
0:00:39.452432715 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12125 will be dropped
0:00:39.548301713 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 2, max 0
0:00:39.548315703 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:39.548324293 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:39.548333593 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:39.582769440 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12289 will be dropped
0:00:39.641647587 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12425 will be dropped
0:00:39.644675142 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11670 will be dropped
0:00:39.714434318 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 11, max 0
0:00:39.714447308 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:39.714455628 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:39.714467508 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:39.741906913 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12525 will be dropped
0:00:39.814939804 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:39.814957984 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:39.814970344 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:39.814981694 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:39.850390653 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12961 will be dropped
0:00:39.917883484 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12793 will be dropped
0:00:39.985153595 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12857 will be dropped
0:00:40.026566084 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13137 will be dropped
0:00:40.093744645 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13113 will be dropped
0:00:40.178588835 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13137 will be dropped
0:00:40.245231496 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13281 will be dropped
0:00:40.304304523 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13313 will be dropped
0:00:40.373364737 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13193 will be dropped
0:00:40.446999940 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12793 will be dropped
0:00:40.504607585 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13353 will be dropped
0:00:40.600463734 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13777 will be dropped
0:00:40.636184863 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13177 will be dropped
0:00:40.709479555 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13985 will be dropped
0:00:40.772611169 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13801 will be dropped
0:00:40.837003256 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13811 will be dropped
0:00:40.837028486 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 51 Invalid, Size: 10 will be dropped
0:00:40.837042146 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 52 Invalid, Size: 4 will be dropped
0:00:41.003505952 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 50 Invalid, Size: 292646 will be dropped
0:00:41.003953603 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1426:gst_h265_parse_vps: value greater than max. value: 2, max 1
0:00:41.003962093 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:41.003968643 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:41.003976753 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 551 will be dropped
0:00:41.009706963 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12506 will be dropped
0:00:41.035209125 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1456:gst_h265_parse_vps: failed to read uint32, nbits: 32
0:00:41.035218665 16584 0x7f3380005b70 WARN       codecparsers_h265 gsth265parser.c:1486:gst_h265_parse_vps: error parsing "Video parameter set"
0:00:41.035225095 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:547:gst_h265_parse_process_nal:<h265parse0> failed to parse VPS
0:00:41.035232865 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 32 VPS, Size: 23 will be dropped
0:00:41.037009947 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12041 will be dropped
0:00:41.150324495 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11825 will be dropped
0:00:41.211743147 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 11569 will be dropped
0:00:41.259713976 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12137 will be dropped
0:00:41.353839943 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12329 will be dropped
0:00:41.395843233 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12649 will be dropped
0:00:41.460797931 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12833 will be dropped
0:00:41.529030703 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12601 will be dropped
0:00:41.572490006 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13217 will be dropped
0:00:41.641500500 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12537 will be dropped
0:00:41.751028731 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 12809 will be dropped
0:00:41.793347352 16584 0x7f3380005b70 WARN               h265parse gsth265parse.c:1063:gst_h265_parse_handle_frame:<h265parse0> broken/invalid nal Type: 16 SLICE_BLA_W_LP, Size: 13025 will be dropped
0:00:41.839758948 16584 0x5619a2dfe590 WARN               rtspmedia rtsp-media.c:2994:wait_preroll: failed to preroll pipeline
0:00:41.839782308 16584 0x5619a2dfe590 WARN               rtspmedia rtsp-media.c:3298:gst_rtsp_media_prepare: failed to preroll pipeline
0:00:41.840441790 16584 0x5619a2dfe590 ERROR             rtspclient rtsp-client.c:1054:find_media: client 0x5619a2fc70f0: can't prepare media
0:00:41.840586070 16584 0x5619a2dfe590 ERROR             rtspclient rtsp-client.c:2910:handle_describe_request: client 0x5619a2fc70f0: no media

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

@gramilla if you're comfortable recompiling, try @eribr's patch and get another GST_DEBUG log:

I tried a quick hack-attack in src/gst.rs, on my raspberry-pi:

        factory.set_launch(concat!(
            "( ",
            "appsrc name=writesrc is-live=true block=true emit-signals=false max-bytes=0",
            " ! h264parse",
            " ! rtph264pay name=pay0",
            " )"
        ));

But I got the same result (I tried giving gstreamer a completely broken launch as well, just to confirm that it was my code that was executing).
Soon, I'll probably set up some kind of rust-build env on my windows-laptop (Since build-times are really slow on the rpi). I'm happy to try out different troubleshooting builds then.

from neolink.

gramilla avatar gramilla commented on June 6, 2024

@gramilla if you're comfortable recompiling, try @eribr's patch and get another GST_DEBUG log:

I tried a quick hack-attack in src/gst.rs, on my raspberry-pi:

        factory.set_launch(concat!(
            "( ",
            "appsrc name=writesrc is-live=true block=true emit-signals=false max-bytes=0",
            " ! h264parse",
            " ! rtph264pay name=pay0",
            " )"
        ));

But I got the same result (I tried giving gstreamer a completely broken launch as well, just to confirm that it was my code that was executing).
Soon, I'll probably set up some kind of rust-build env on my windows-laptop (Since build-times are really slow on the rpi). I'm happy to try out different troubleshooting builds then.

That work for me but i have onli still image without live stream
log.txt

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Awesome! If you're getting a still image, that means the codec is right and we're 90% of the way there.

So, VLC has issues receiving the livestream - its receive buffer isn't big enough. You can launch VLC with a special command line argument to force it to use TCP RTSP, which works better if I recall (although I haven't tried this in a while).

vlc --rtsp-tcp rtsp://path/to/stream

Getting VLC really working is a separate issue. Can you try to see if VLC can play the video with that command?

from neolink.

gramilla avatar gramilla commented on June 6, 2024

--rtsp-tcp

VLC media player 3.0.8 Vetinari (revision 3.0.8-0-gf350b6b5a7)
[0000558ce04e4630] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
qt5ct: using qt5ct plugin
qt5ct: D-Bus global menu: no
qt5ct: D-Bus system tray: no
Created new TCP socket 25 for connection
MultiFramedRTPSource::doGetNextFrame1(): The total received frame size exceeds the client's buffer size (250000). 35963 bytes of trailing data will be dropped!
[00007f6d7800e030] avcodec decoder: Using NVIDIA VDPAU Driver Shared Library 440.64 Fri Feb 21 00:41:34 UTC 2020 for hardware decoding
[h264 @ 0x7f6d70006200] Invalid NAL unit 8, skipping.


[2020-06-23T19:36:18Z INFO neolink] home: Connected to camera, starting video stream
0:00:05.710362904 29326 0x7f372c005b70 FIXME default gstutils.c:3981:gst_pad_create_stream_id_internal:writesrc:src Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:05.761510691 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 13600 will be dropped
0:00:05.890719825 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 12792 will be dropped
0:00:05.890753835 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 12617 will be dropped
0:00:05.957876873 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 0 Unknown, Size: 22 will be dropped
0:00:06.004032469 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 12168 will be dropped
0:00:06.093480142 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 13520 will be dropped
0:00:06.140040017 29326 0x7f372c005b70 WARN h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame: broken/invalid nal Type: 1 Slice, Size: 13139 will be dropped
0:00:06.445759538 29326 0x55947f843990 FIXME rtspmedia rtsp-media.c:3841:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:06.446257396 29326 0x55947f843990 FIXME rtspmedia rtsp-media.c:3841:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:06.446269876 29326 0x55947f843990 WARN rtspmedia rtsp-media.c:3867:gst_rtsp_media_suspend: media 0x7f373802d1b0 was not prepared
0:00:06.446909153 29326 0x7f3738007c50 FIXME default gstutils.c:3981:gst_pad_create_stream_id_internal:appsrc1:src Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:06.447438612 29326 0x55947f843990 FIXME rtspclient rtsp-client.c:1657:handle_play_request:GstRTSPClient@0x55947fa0e200 Add support for seek style (null)
0:00:06.447501141 29326 0x55947f843990 FIXME rtspmedia rtsp-media.c:2437:gst_rtsp_media_seek_full:GstRTSPMedia@0x7f373802d1b0 Handle going back to 0 for none live not seekable streams.


No luck only still image

from neolink.

gramilla avatar gramilla commented on June 6, 2024

On Celluloid i see 4-10 frames at start and after that freeze on last image

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Hmm. I remember getting very angry at VLC; I had better luck with ffplay:

ffmpeg -rtsp_transport tcp -i "rtsp://your.rtsp.server/url"

(via https://stackoverflow.com/a/23302601)

from neolink.

gramilla avatar gramilla commented on June 6, 2024

ffmpeg version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)
configuration: --prefix=/usr --extra-version=0ubuntu0.18.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
WARNING: library configuration mismatch
avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.18.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared --enable-version3 --disable-doc --disable-programs --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libtesseract --enable-libvo_amrwbenc
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libavresample 3. 7. 0 / 3. 7. 0
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100
[rtsp @ 0x55f5495508c0] Stream #0: not enough frames to estimate rate; consider increasing probesize
Input #0, rtsp, from 'rtsp://127.0.0.1:8554/home':
Metadata:
title : Session streamed with GStreamer
comment : rtsp-server
Duration: N/A, start: 0.000000, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 2304x1296, 90k tbr, 90k tbn, 180k tbc

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024
 Stream #0:0: Video: h264 (High), yuv420p(progressive), 2304x1296, 90k tbr, 90k tbn, 180k tbc

Seems like ffplay is a little happier --- what does the video look like, if anything? (Be patient waiting for a keyframe; the video may take about 5s to start)

from neolink.

gramilla avatar gramilla commented on June 6, 2024

Unfortunately video do not start

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

Alright. Let me work on it with the provided video samples and I'll see if I can figure it out.

from neolink.

rygrass avatar rygrass commented on June 6, 2024

@hh1209 Seems I have the same hardware as you?

ReoCameraBackdoor

Managed to fix the Timeout issue by confirming the time setting multiple times before it would actually stop. Still having no luck with any streams coming through. Also interested to see what software you are using to see these Streams?. Have tried Blue Iris / VLC and even Synology security station. So could be something I am missing or :/

from neolink.

hh1209 avatar hh1209 commented on June 6, 2024

@rygrass I have been using Blue Iris. Haven't tried it on anything else.

In Blue Iris, is your receive buffer set to 20MB?

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

I'll add a README note about receive buffers.

from neolink.

thirtythreeforty avatar thirtythreeforty commented on June 6, 2024

This should now be implemented! For now the stream type is not autodetected (soon it will be!). In the meantime, if you have a D400, B400, or E1, add format = H264 to the camera's config block.

from neolink.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.