Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Argus 2 and other battery camera #91

Open
surfzoid opened this issue Nov 22, 2020 · 390 comments
Open

Argus 2 and other battery camera #91

surfzoid opened this issue Nov 22, 2020 · 390 comments
Labels
enhancement New feature or request hardware support Support additional hardware

Comments

@surfzoid
Copy link

Hi
I would like to find an solution to watch the video of my reolink argus 2 camera under linux, wath i know is , those came use only an uid , send to an amazon p2p server whose send back video and info to the oficialy reolink windows or android client.
Can you implement an function of connect with only uid ?
If needed, i can provide an wireshark file packet .
thank

@surfzoid surfzoid added the enhancement New feature or request label Nov 22, 2020
@twistedddx
Copy link
Contributor

Duplicate of #30

@QuantumEntangledAndy
Copy link
Collaborator

To summarise #30. Battery cameras use a different protocol (UDP) Which we do not currently support. Not because we can't do it but because none of the developers had a camera to reverse engineer. Someone has kindly sent @thirtythreeforty a camera so we can start work on it. Unfortunately we have yet to really have the time :(.

@Lanwalker
Copy link

Lanwalker commented Nov 23, 2020 via email

@QuantumEntangledAndy
Copy link
Collaborator

Lanwalker is quite right that there must be an ip address else messages will not be route-able in general.

I suspect surfzoid attached his client app via autoconnect, in which case the app only reports the uuid (from the front screen, see pic).
Screenshot 2020-11-23 at 13 13 28

However the ip is still assigned and viewable in the advance setting of the app (see other pic).

Screenshot 2020-11-23 at 13 13 43-masked

What I am not sure about is how the command and control works on the battery model. For example does it shutdown the network card periodically and only wake up to poll the amazon server for updates that have been cached into their server. Perhaps you (lanwalker) can tell me if you can connect a client over ip only maybe even with the camera blocked from accessing the outside network.

@surfzoid
Copy link
Author

surfzoid commented Nov 23, 2020

Hi, if i remember corectly, to connect my first argus 2 i used the sharing wifi of my Phone and then scan the qr code on the Cam with the Android app, but this is only setup for link app and cam, after Wath, the stream use the amazon p2p streaming server, aws

@surfzoid
Copy link
Author

For me that's logical the fact of the Cam have ip, this need to have internet conection and send mail notification, but the main goal is video stream. If there is french People here, can we exchange technical info ? It should be more accurate

@surfzoid
Copy link
Author

it isn't more easy to reverse the android application/apk?

@QuantumEntangledAndy
Copy link
Collaborator

At this point I am not sure reverse engineering the the android application will be any easier. We already have most of the protocol understood.

Regardless only one developer has a battery camera at the moment and they are busy at the moment with other things. If you are interested in helping with the addition of UDP based cameras pull requests and just general discussions are more than welcome. You said you could give us wireshark dumps? If you can connect an official client and give us the dumps during login and streaming that would be good. But please remember that these dumps contains password and things.

@surfzoid
Copy link
Author

oki, so i could send the dump packet file to thirtythreeforty in private

@QuantumEntangledAndy
Copy link
Collaborator

If you want to not send passwords and make the dump public the best way would be to start the dump after the client has logged in and don't press any of the setting just stream and quit

@QuantumEntangledAndy
Copy link
Collaborator

I think we already have a few dumps provided in #30 anyway though so this is more to do with not enough time at the moment

@surfzoid
Copy link
Author

yes the most important packet is the authenticate one, to get amazon acces, i also can set an tempory stupid passwaord, but there is already uuid who is the most important part when conecting to the aws author server
https://support.reolink.com/hc/en-us/articles/360007010033-What-is-Reolink-P2P-Server

@QuantumEntangledAndy
Copy link
Collaborator

Do we have to connect to the aws server is there no way to connect directly over lan

@surfzoid
Copy link
Author

Do we have to connect to the aws server is there no way to connect directly over lan

yep, my usage is cam at work and view at home, with an linux rpm based distro, mageia, so, no reolink client, after, argus2 don't permit to save video in an loacal pc via samba, ftp or other, reolink cloud don't aviable in europe (reolink don't care about the fact they say argus 2 as an security cam but not in fact)

in issue #30 jdillenkofer say is had sucess to view localy the camera

@QuantumEntangledAndy
Copy link
Collaborator

Right neolink works by exposing a camera on the local network to rtsp. It is effectively a reolink to rtsp translator. If you can connect to the camera locally at work then neolink can provide an rtsp link to it. You can then connect through normal rtsp client software. Does this setup satisfy your needs?

@surfzoid
Copy link
Author

well if am i rigth, at this time, neolink don't work with argus 2 camera?

@twistedddx
Copy link
Contributor

It appears jdillenkofer already has UDP BC cameras working.
Under the UDP layer it just looks like standard BC modern protocol.

This python code would need to be re-implemented in Rust in Neolink.
https://github.com/jdillenkofer/camera_proxy/blob/master/src/baichuan_udp_layer.py

@QuantumEntangledAndy
Copy link
Collaborator

Not at the moment no. I am looking over the dumps now actually:

Normal header for tcp is starts with f0 de bc 0a The udp one start like this:

10 cf 87 2a b0 02
00 00 00 00 00 00 00 00 00 00 32 05 00 00 f0 de
bc 0a 01 00 00 00 2c 07 00 00 00 00 00 01 01 dc

You can see the normal magic f0 de bc 0a start a little later. Currently we haven't worked out what these extra bytes do but it is on the todo list.

@twistedddx
Copy link
Contributor

jdillenkofer also modified the dissector for UDP use:
https://github.com/jdillenkofer/camera_proxy/blob/master/wireshark-dissector.lua

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Nov 23, 2020

Oh cool I was just writing a dissector update. jdillenkofer's one needs updating to our new dissector format though so I'll try that

@QuantumEntangledAndy
Copy link
Collaborator

Interesting some of the udp packets have extra obsfucation... Will need more work sigh

@QuantumEntangledAndy
Copy link
Collaborator

Fortuantly jdillenkofer seems to have done most of the heavy lifting so can look into that :)

@surfzoid
Copy link
Author

surfzoid commented Nov 23, 2020

Fortuantly jdillenkofer seems to have done most of the heavy lifting so can look into that :)

jdillenkofer as say in his comment of issue #30 fell free to use his code in neolink
add an option to conected bridge to cam through internet should be good, take also in consideration, the setting file of jdillenkofer don't need ip, uid is enought

@Lanwalker
Copy link

Lanwalker commented Nov 23, 2020 via email

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Nov 24, 2020

I rather do not like the UUID, it works only because it phones home to the reolink server. The client connects to the server and then the server sets up the hole punched connection. I rather prefer to setup home assistant or similar software on my local network to at act as the gateway to the WAN with reolink cameras only able to talk to neolink. But to each their own method.

Anyways I shall try and get the udp working at some point jdillenkofer work will help for sure. But I have other commitments too.

@Lanwalker
Copy link

Lanwalker commented Nov 24, 2020 via email

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Nov 24, 2020 via email

@surfzoid
Copy link
Author

I rather do not like the UUID, it works only because it phones home to the reolink server. The client connects to the server and then the server sets up the hole punched connection. I rather prefer to setup home assistant or similar software on my local network to at act as the gateway to the WAN with reolink cameras only able to talk to neolink. But to each their own method.

Anyways I shall try and get the udp working at some point jdillenkofer work will help for sure. But I have other commitments too.

I don't know how, but he use only uuid and send broadcast to local network only, 255.255.255.255 see for that his udp layer code file

@QuantumEntangledAndy
Copy link
Collaborator

255.255.255.255 is broadcast to everything on the local network. It will work something like this:

Client broadcast 255.255.255.255 on some port: "Hello I am looking for UUID=AUUID please respond to me if its you"
Camera: "Oh that's me I have this IP = MY.IP.IS.THIS please contact me there"

I'd have to look at the details of the code for its exact code but its usually a broadcast to learn the ip and then use that from then on

@twistedddx
Copy link
Contributor

@luizbon was the PC running Neolink on bare metal or was it in Docker?

It seems the common story is Neolink in Docker has poor performance and unstable.
Once Neolink is on bare metal most all problems go away.

@QuantumEntangledAndy
Copy link
Collaborator

Rust is quite nice in that it makes it obvious when you do a copy (it calls it a clone) and a share (a reference). Most of the time it is shared and not copied. On the neolink side there will probably only be 1 copy at a time (maybe two if it needs buffering but I still try to keep it at one where ever possible), on the gstreamer side I am not too sure.

@luizbon
Copy link

luizbon commented Aug 27, 2021

@luizbon was the PC running Neolink on bare metal or was it in Docker?

It seems the common story is Neolink in Docker has poor performance and unstable.
Once Neolink is on bare metal most all problems go away.

I was running on bare metal as well.
Never made it to connect running from Docker, probably due to the broadcast.

@Morphy99
Copy link
Contributor

Hmm what if we remove rtsp and network from the equation... I might be able to make a build that saves to file and sends to rtsp at the same time. Then we can load up that file and see what it looks like from there

That sounds like a great idea.

I would certainly suggest Neolink should be tested on full desktop which likely destroys a Pi in performance.

It would also be good to test outside of Docker.
A desktop bare metal Windows, Mac or Linux would be best for testing.

Just tried with a laptop running Ubuntu 18.04 live connected via LAN (100mb only but should be enough), and still the same.

@VikeDragon
Copy link

I am really not interested in solving your docker issue for you. Please just use the binary if you want to use neolink

sudo docker run --rm -p 8559:8554 --volume=/usr/local/etc/neolink_config.toml:/etc/neolink.toml quantumentangledandy/neolink:rpi-docker

sudo docker run --rm -p 8559:8554 --volume=/usr/local/etc/neolink_config.toml:/etc/neolink.toml quantumentangledandy/neolink:udp_docker

root@raspberrypi:/home/super# docker run --rm quantumentangledandy/neolink:rpi-docker date
Fri Aug 27 15:18:57 UTC 2021
root@raspberrypi:/home/super# docker run --rm quantumentangledandy/neolink:udp_docker date
Thu Jan 1 00:00:00 UTC 1970
root@raspberrypi:/home/super#

Of course, you are not interested in dealing with the problems of configuring someone else's Docker, but answer the question - if the problem is in my Docker, then how are two releases installed so strangely, with rpi-docker, the time of image is correct, but not with udp_docker?

Maybe the variables of these assemblies are described differently in the Dockerfile?

@thirtythreeforty
Copy link
Owner

thirtythreeforty commented Aug 27, 2021

Everyone stay civil please... Reverse engineering is difficult enough, everyone is working in good faith, we're all on the same team here.

@VikeDragon I think you're either running an outdated image (remember to pull - run will happily run outdated images!) or have some other issue with your setup:

$ docker run --rm quantumentangledandy/neolink:udp_docker date
Unable to find image 'quantumentangledandy/neolink:udp_docker' locally
udp_docker: Pulling from quantumentangledandy/neolink
4c25b3090c26: Pull complete
583abb62a101: Pull complete
89c5e8c10a76: Pull complete
61cc14c8e279: Pull complete
Digest: sha256:6c639c9187a108d7cd6071cfdf736a097caa73563888fdbea0fbcbcdc233ce2b
Status: Downloaded newer image for quantumentangledandy/neolink:udp_docker
Fri Aug 27 15:41:04 UTC 2021

(Side note, issues like these are why Docker can be frustrating to support (hence the readme disclaimer) even though it's more convenient for users.)

@VikeDragon
Copy link

Everyone stay civil please... Reverse engineering is difficult enough, everyone is working in good faith, we're all on the same team here.

I'm sorry, I didn't mean to offend anyone. Perhaps it is translation difficulties. I'm just trying to figure out how it works. I understand you perfectly, because I myself earn my bread by programming, however, I have a different specialization and I don't understand everything with Docker. And I realize how difficult it is to switch from the main task to all sorts of distracting questions.I interviewed all my friends and climbed many forums with this problem - everyone does not understand how this can happen. While I'm not distracting you anymore, I'll try to use your recommendations. I am very grateful to you for your work! This is really a great job! I really wish that everything turned out as you planned!

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Aug 28, 2021

Sorry if that came over a little strongly. The docker image is just a standard Debian:bullseye image that we put neolink on. I don't think we do anything with it to brake the datetime. There are various things that can be done to force the time to be in sync with the host. Things like mounting /etc/localtime. But I don't remeber all the details. I also remember reading somewhere awhile ago that some of the pagkages on rasbian should be updated to the newer debian ones or else docker time does not get set properly. But I don't remeber the details as it was awhile ago.

Perhaps we should see if it's something to do with the base image.

docker run --rm debian:bullseye date

The reason I do not think it is to do with the docker variable used in the DockerFile is that it works on my own rpi with the same image. But maybe we should try a clean setup:

  • Stop all relevent docker containers
    • Learn what's running
      docker ps -a
    • Stop the containers
      docker container stop <CONTIANER_ID>
    • Remove the containers
      docker container rm <CONTIANER_ID>
  • Remove images
    • Learn the image ids
      docker image ls
    • Remove the images
      docker image rm <IMAGE_ID>
  • Remove caches and unused data for the docker system
docker system prune
  • Now repull the image
docker pull quantumentangledandy/neolink:udp_docker

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Aug 28, 2021

@Morphy99 Here's a build that will save the stream to file too. (Build will be available in about 15mins available now)

It will save to the current working directory (of neolink) a mkv file named video_timestamp.mkv so please make sure that neolink's cwd is writable.

It will only save this write while an rtsp client is connected.

This is a debug feature so it is quite inflexible and the place it saves to is not configurable. Might write an export command at some point to do this properly but not until this is all done

@Morphy99
Copy link
Contributor

@QuantumEntangledAndy you have the patience of a saint, kudos for taking the time to explain things out of the remit of this project, for myself included!

The recorded file is the same as the stream I'm afraid. Here are samples of both apps.
Reolink:
https://user-images.githubusercontent.com/5853979/131218749-a1962b1f-60f1-4a41-857a-75bc84ea083b.mp4

Neolink:
https://user-images.githubusercontent.com/5853979/131218914-57860fe9-0b6e-42aa-8cde-53f137590a0c.mp4

I had to change the extension of the neolink.mkv to mp4 so I could upload it.

@QuantumEntangledAndy
Copy link
Collaborator

QuantumEntangledAndy commented Aug 28, 2021

Thanks I'm glad we manage eliminate the network component it helps pin down the error.

I've been thinking about it the last day and I have a theory for its source. But it's not UDP related (although udp makes it have a stronger effect than TCP)

I'll try and explain

UDP packets can come in any order. Because of this we buffer and rearrange. But we have to read from the buffer sequentially.

Let's says we have up to packet 50 sequentially.

We also have got packets 54-60 and 68-90

We send resend requests for packets 51-53 and 61-67.

Camera resends these packets and also 91-100

During all this time we are effectively paused because we timestamp based on the clock as it leaves the rtsp pipeline and we can't add to the rtsp payloads until 51 arrives.

Then when the missing packets finally arrive we now have all pakcets 50-100 without any delay. They all get pushed into the rtsp as fast as we can read bytes. These frames all get nearly identical timestamps on the clock.

I've exaggerated a bit because it probably only 5-10 frames out of sync at a time. But this might be our source.

It's not strictly speaking the UDP layer that is wrong. Udp layer is doing its job fine. Timestamping should be handled in the Bc layer that these packets represent.

I had a go at making neolink use the timestamps the camera gave us a year ago but it didn't work as expected because of how we share the same rtsp media across all clients.

If I use automatical timestamping (from the clock) then each client gets its own clock based timestamps. If I do it manually this happens:

Client 1 connects and the timestamping starts at 0:00

5 mins later client 2 connects. But they don't get packets timestamped at 0:00 the pakcets they get are shared with client 1 so the stamps are 5:00. Client 2 gets these frames timestamped thinking they are future frames it needs to play later. Client 2 complains for 5 mins about no data until 5 mins have passed and it now thinks it's time to start playing that frame it got 5 mins ago.

To do this I need to change how neolink sends and configurs the rtsp layer. So we don't share the buffers and I need to keep track of each client's starttime so I can stamp the buffers differently for everyone.

It's not a small job

I'll see what I can do but it might take me while and it won't be a part of the UDP PR but a separate timestamp related PR

@luizbon
Copy link

luizbon commented Aug 28, 2021

Another behaviour I notice is when neolink can connect to the cameras straight away, the stream works.
When it needs to retry a few times and then connect, the stream doesn't work.
Not sure if that information can help with anything.

@QuantumEntangledAndy
Copy link
Collaborator

Not sure what's causing that issue with the relogin. The camera and gstreamer parts are kept quite independent so that the source of gstreamer data should not really matter. It's just bytes coming from somewhere as far as the rtsp is concerned. I'll have a think about it and review the pipeline.

@QuantumEntangledAndy
Copy link
Collaborator

What error do you get with the rtsp connection when it's a relogin?

You could try it with

export GST_DEBUG=3

Set so that gstreamer prints out it's logs. But gstreamer prints a lot of logs which makes it difficult to read.

@luizbon
Copy link

luizbon commented Aug 30, 2021

Sorry for the late reply
I'm trying to make it fail again, but my network is working too well and I could only capture a success stream.
Not sure if it'll be valuable for you.
Both streams are working.

[2021-08-30T21:12:11Z INFO  neolink] Neolink fd2532436c9914bcd3fc79e71ac7383c8a67b21d release
[2021-08-30T21:12:11Z DEBUG neolink::rtsp::gst] Permitting anonymous to access /argus-eco, /argus-eco/mainStream
[2021-08-30T21:12:11Z DEBUG neolink::rtsp::gst] Permitting anonymous to access /argus-eco/subStream
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol::resolution] Trying as uid
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol::resolution] Trying as uid
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol] Trying uid 95270002CKLG8WI5
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol] Trying uid 95270002CKLG8WI5
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol::connection::udpconn::discover] Broadcasting to: [(255.255.255.255, 2015), (255.255.255.255, 2018), (192.168.86.255, 2015), (192.168.86.255, 2018), (192.168.86.255, 2015), (192.168.86.255, 2018)]
[2021-08-30T21:12:11Z DEBUG neolink_core::bc_protocol::connection::udpconn::discover] Broadcasting to: [(255.255.255.255, 2015), (255.255.255.255, 2018), (192.168.86.255, 2015), (192.168.86.255, 2018), (192.168.86.255, 2015), (192.168.86.255, 2018)]
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:12Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(-1859976321)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(-365938574)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(929)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:12Z DEBUG neolink_core::bc_protocol] Success
[2021-08-30T21:12:12Z INFO  neolink::rtsp] argus-eco: Connecting to camera at 95270002CKLG8WI5
[2021-08-30T21:12:12Z DEBUG neolink_core::bc_protocol] Success
[2021-08-30T21:12:12Z INFO  neolink::rtsp] argus-eco: Connecting to camera at 95270002CKLG8WI5
[2021-08-30T21:12:12Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG neolink_core::bc::xml] Struct: start to parse "Encryption"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(Encryption, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(md5)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(nonce, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(0-AhnEZyUg6eG3KLZF7yOy)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(nonce)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(Encryption)
[2021-08-30T21:12:12Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG neolink_core::bc::xml] Struct: start to parse "Encryption"
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(Encryption, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(md5)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched StartElement(nonce, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched Characters(0-AhnEZyUg6eL5Bw5Y7KWk)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(nonce)
[2021-08-30T21:12:12Z DEBUG yaserde::de] Fetched EndElement(Encryption)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "DeviceInfo"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(DeviceInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(firmVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(00000000000000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(firmVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(IOInputPortNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(IOInputPortNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(IOOutputPortNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(IOOutputPortNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(diskNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(diskNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(wifi_solo_ipc)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(audioNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(audioNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(ipChannel, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(ipChannel)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "resolution"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolutionName, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080P)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolutionName)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1920)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(language, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(English)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(language)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(sdCard, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(sdCard)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(ptzMode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(none)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(ptzMode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(typeInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(IPC)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(typeInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(softVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(softVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hardVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hardVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(panelVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(panelVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel1, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel2, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel3, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel3)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel4, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel4)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(norm, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(NTSC)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(norm)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(osdFormat, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(DMY)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(osdFormat)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(B485, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(B485)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(userVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(userVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rfNumber, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rfNumber)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(firmwareVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1030_671_488_41)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(firmwareVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(devName, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(Gate Camera)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(devName)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(secretCode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(abda6750248c60ea)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(secretCode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(authMode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(authMode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(DeviceInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cfgGetByLogin, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rfAlarmAction, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(516)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rfAlarmAction)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(mainFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(mainFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(subFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(subFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(extenFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(extenFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cfgGetByLogin)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfoList, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelBits, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelBits)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(mainStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1920)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1536)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(256,512,768,1024,1536,2048)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(subStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(640)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(360)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(160)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(64,128,160,192,256,384,512)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(externStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(540)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(768)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(192,256,384,512,768,1024)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelBits, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelBits)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(mainStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1280)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(720)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1536)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(256,512,768,1024,1536,2048)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(subStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(640)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(360)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(160)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(64,128,160,192,256,384,512)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(externStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(540)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(768)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(192,256,384,512,768,1024)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfoList)
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Connected and logged in
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Starting video stream subStream
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(-1859976321)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::udpconn::transmit] Got unexpected discovery packet: UdpDiscovery { tid: 244, payload: UdpXml { c2d_s: None, c2d_c: None, d2c_c_r: Some(D2cCr { timer: Timer { def: 3000, hb: 10000, hbt: 60000 }, rsp: 0, cid: -1859976321, did: 928 }), d2c_t: None, c2d_t: None, d2c_cfm: None, c2d_disc: None, d2c_disc: None, c2m_q: None, m2c_q_r: None, c2r_c: None, r2c_t: None, c2r_cfm: None } }
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(-365938574)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(929)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::udpconn::transmit] Got unexpected discovery packet: UdpDiscovery { tid: 192, payload: UdpXml { c2d_s: None, c2d_c: None, d2c_c_r: Some(D2cCr { timer: Timer { def: 3000, hb: 10000, hbt: 60000 }, rsp: 0, cid: -365938574, did: 929 }), d2c_t: None, c2d_t: None, d2c_cfm: None, c2d_disc: None, d2c_disc: None, c2m_q: None, m2c_q_r: None, c2r_c: None, r2c_t: None, c2r_cfm: None } }
[2021-08-30T21:12:13Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:02.012453317 13695   0x55899c9e30 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:02.022107155 13695   0x55899c9e30 ERROR             rtspclient rtsp-client.c:1695:handle_play_request: client 0x5589a92150: no session
0:00:02.025543462 13695   0x55899c9e30 ERROR             rtspclient rtsp-client.c:1247:handle_teardown_request: client 0x5589a92150: no session
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "DeviceInfo"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(DeviceInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(firmVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(00000000000000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(firmVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(IOInputPortNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(IOInputPortNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(IOOutputPortNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(IOOutputPortNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(diskNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(diskNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(wifi_solo_ipc)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(audioNum, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(audioNum)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(ipChannel, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(ipChannel)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "resolution"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolutionName, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080P)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolutionName)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1920)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(language, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(English)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(language)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(sdCard, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(sdCard)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(ptzMode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(none)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(ptzMode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(typeInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(IPC)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(typeInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(softVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(softVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hardVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hardVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(panelVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(panelVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel1, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel2, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel3, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel3)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hdChannel4, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hdChannel4)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(norm, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(NTSC)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(norm)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(osdFormat, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(DMY)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(osdFormat)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(B485, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(B485)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(userVer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(userVer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rfNumber, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rfNumber)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(firmwareVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1030_671_488_41)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(firmwareVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(devName, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(Gate Camera)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(devName)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(secretCode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(abda6750248c60ea)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(secretCode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(authMode, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(authMode)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(DeviceInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cfgGetByLogin, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rfAlarmAction, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(516)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rfAlarmAction)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(mainFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(mainFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(subFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(subFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(extenFrameRate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(extenFrameRate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cfgGetByLogin)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfoList, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelBits, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelBits)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(mainStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1920)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1080)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1536)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(256,512,768,1024,1536,2048)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(subStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(640)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(360)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(160)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(64,128,160,192,256,384,512)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(externStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(540)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(768)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(192,256,384,512,768,1024)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(StreamInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelBits, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelBits)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(mainStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1280)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(720)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1536)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(256,512,768,1024,1536,2048)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(subStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(640)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(360)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(5)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(160)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(64,128,160,192,256,384,512)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(encodeTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(externStream)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(resolution, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(width, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(width)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(height, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(540)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(height)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(resolution)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultFramerate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultFramerate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(defaultBitrate, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(768)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(defaultBitrate)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(framerateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(15,10,5,2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(framerateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bitrateTable, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(192,256,384,512,768,1024)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bitrateTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(encodeTable)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(StreamInfoList)
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Connected and logged in
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(VideoInput, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelId, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelId)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bright, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bright)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(contrast, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(contrast)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(saturation, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(saturation)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hue, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hue)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(VideoInput)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message ID 78
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(BatteryList, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(BatteryInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelId, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelId)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(chargeStatus, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(none)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(chargeStatus)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(adapterStatus, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(solarPanel)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(adapterStatus)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(voltage, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3980)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(voltage)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(current, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(current)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(temperature, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(4)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(temperature)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(batteryPercent, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(98)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(batteryPercent)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(lowPower, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(lowPower)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(batteryVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(batteryVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(BatteryInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(BatteryList)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message ID 252
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "Extension"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(Extension, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(binaryData, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(binaryData)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(VideoInput, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelId, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelId)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(bright, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(bright)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(contrast, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(contrast)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(saturation, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(saturation)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hue, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(128)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hue)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(VideoInput)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message ID 78
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(BatteryList, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(BatteryInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(channelId, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(channelId)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(chargeStatus, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(none)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(chargeStatus)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(adapterStatus, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(solarPanel)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(adapterStatus)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(voltage, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3980)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(voltage)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(current, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(current)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(temperature, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(4)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(temperature)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(batteryPercent, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(98)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(batteryPercent)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(lowPower, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(lowPower)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(batteryVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(2)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(batteryVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(BatteryInfo)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(BatteryList)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message ID 252
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "SystemGeneral"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(SystemGeneral, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timeZone, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(-36000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timeZone)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(osdFormat, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(DMY)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(osdFormat)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timeFormat, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timeFormat)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(year, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(2021)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(year)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(month, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(8)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(month)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(day, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(31)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(day)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hour, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(7)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hour)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(minute, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(12)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(minute)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(second, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(10)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(second)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(deviceId, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(deviceId)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(language, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(English)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(language)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(deviceName, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(Gate Camera)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(deviceName)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(SystemGeneral)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "Norm"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(Norm, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(norm, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(NTSC)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(norm)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(Norm)
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Camera time is already set: 2021-08-31 7:12:10 +10
0:00:02.241668788 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.285892363 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.286003176 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.286096786 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.286189896 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.295820012 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "body"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(body, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "VersionInfo"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(VersionInfo, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(name, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(Gate Camera)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(name)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(type, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(Reolink Argus Eco)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(type)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(serialNumber, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(00004295032832)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(serialNumber)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(buildDay, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(build 20103001)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(buildDay)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hardwareVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(BIPC_36S3216MGUN)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hardwareVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cfgVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(v2.0.0.0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cfgVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(firmwareVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1030_671_488_41)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(firmwareVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(detail, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(BIPC_36S3216MGUN110000000100000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(detail)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(IEClient, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(IEClient)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(IEClient)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cc3200Version, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1028_488_1140)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cc3200Version)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(spVersion, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1.0.1.6-2.7.0.0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(spVersion)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(VersionInfo)
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Camera reports firmware version 1030_671_488_41
[2021-08-30T21:12:13Z INFO  neolink::rtsp] argus-eco: Starting video stream mainStream
0:00:02.443594613 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.443708278 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(-1859976321)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(928)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::udpconn::transmit] Got unexpected discovery packet: UdpDiscovery { tid: 244, payload: UdpXml { c2d_s: None, c2d_c: None, d2c_c_r: Some(D2cCr { timer: Timer { def: 3000, hb: 10000, hbt: 60000 }, rsp: 0, cid: -1859976321, did: 928 }), d2c_t: None, c2d_t: None, d2c_cfm: None, c2d_disc: None, d2c_disc: None, c2m_q: None, m2c_q_r: None, c2r_c: None, r2c_t: None, c2r_cfm: None } }
0:00:02.483996274 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "P2P"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(P2P, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "D2C_C_R"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(D2C_C_R, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG neolink_core::bcudp::xml] Struct: start to parse "timer"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(timer, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(def, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(3000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(def)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hb, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(10000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hb)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(hbt, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(60000)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(hbt)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(timer)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(rsp, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(0)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(rsp)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(cid, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(-365938574)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(cid)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(did, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(929)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(did)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(D2C_C_R)
[2021-08-30T21:12:13Z DEBUG neolink_core::bc_protocol::connection::udpconn::transmit] Got unexpected discovery packet: UdpDiscovery { tid: 192, payload: UdpXml { c2d_s: None, c2d_c: None, d2c_c_r: Some(D2cCr { timer: Timer { def: 3000, hb: 10000, hbt: 60000 }, rsp: 0, cid: -365938574, did: 929 }), d2c_t: None, c2d_t: None, d2c_cfm: None, c2d_disc: None, d2c_disc: None, c2m_q: None, m2c_q_r: None, c2r_c: None, r2c_t: None, c2r_cfm: None } }
0:00:02.497178122 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:13Z DEBUG neolink_core::bc::xml] Struct: start to parse "Extension"
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(Extension, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"}, [version -> 1.1])
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched StartElement(binaryData, {"": "", "xml": "http://www.w3.org/XML/1998/namespace", "xmlns": "http://www.w3.org/2000/xmlns/"})
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched Characters(1)
[2021-08-30T21:12:13Z DEBUG yaserde::de] Fetched EndElement(binaryData)
0:00:02.734134326 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.837111768 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.837184748 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.837250988 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.861215270 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.861271047 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.939911509 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.939961545 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:02.955397030 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.092971727 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.093034115 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.138418082 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.159497846 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.302149366 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.302242809 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.339963709 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.367215985 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.468701409 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.468772890 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.536281662 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.569747284 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.660588069 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.660651216 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.746676156 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.796036719 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.850285405 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.850365978 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:03.989090975 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.017390663 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.057793584 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.057856231 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.139536116 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.181387388 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.243095014 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.243141273 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.342323690 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.404816991 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.438728458 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.438853234 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.537656435 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.537765211 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.569428930 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.740717320 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.740860929 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.740953724 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.783755576 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.874902302 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.874964245 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.930230769 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:04.982572480 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.076354467 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.076418892 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.138899415 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.167500656 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.292284556 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.292401462 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.348000778 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.388077147 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.463358078 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.463580483 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.547250898 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.564622469 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.651326807 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.651445435 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.681117884 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.692402478 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.891841189 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.898427029 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.898593268 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:05.944140011 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.032344515 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.032607771 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.094572504 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.695643192 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.746506181 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.746790159 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.747022952 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.747298782 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.747531871 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.747760887 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.747997291 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.748260640 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.748492118 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.748717338 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.748940909 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.761688299 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.761999999 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.859023722 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.859309700 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.888856410 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.998476859 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:06.998771096 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.082967171 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.083241834 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.193486942 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.193760105 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.288286175 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.288533857 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.341091509 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.449181275 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.449528270 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.485521748 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.549001332 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.654256523 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.654514983 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.685259121 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.703242740 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.860403406 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.880616737 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.880858530 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:07.907212651 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:19Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:08.008363173 13695   0x7f98025940 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<audsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:08.008552819 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.008823797 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.010334277 13695   0x7f980258a0 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<vidsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:08.087378242 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.108249286 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.204548334 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.204680425 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.291507114 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.305859335 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.392952484 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.393075445 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.485318157 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.500569256 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.594312929 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.594451779 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.693701011 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.693832621 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.704206319 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.856383921 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.856564233 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.882411732 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:08.894589629 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.130855974 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.130981213 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.143861621 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.165124178 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.236464661 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.236625159 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.293350479 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.316906174 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.429918283 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.430059096 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.480273390 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.494342670 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.611420208 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.611580632 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.683277517 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.706919378 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.803418886 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.803546366 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.894002157 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.905000088 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.997738108 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:09.997849051 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.103579940 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.764330951 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.767517243 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.767636834 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.767731277 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.774835500 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.808525822 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.815412159 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.815517806 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.815603656 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.833706218 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.859783047 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.859884971 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.859976452 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.879698363 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.884544633 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.884633466 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.884747223 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:10.930862904 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.019229369 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.019361368 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.112044759 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.130883441 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.208790635 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.208898948 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.285876618 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.311631173 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.401723376 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.401843967 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.492612605 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.515906377 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.603696277 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.603816386 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.686085246 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.704146641 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.785247794 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.785441792 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.886111469 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.886230523 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:11.899574479 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.046297282 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.046403318 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.081696286 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.084767969 13695   0x7f98014f70 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:12.101752082 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.249507686 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.249671184 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.281770897 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.295875900 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.433307211 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.433492320 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.518780826 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.518976694 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.625544443 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.625681885 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.684013278 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.710831949 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.813411657 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.813537247 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.920522139 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:12.920725673 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.002069120 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.002184488 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.098433501 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.128907069 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.221997270 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.222123379 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.282630947 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.302806334 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.388113025 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.388243801 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.523028740 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.523152849 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.542186158 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.647223798 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.647403740 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.685165861 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.736470808 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.846880655 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.846999135 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.886608252 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:13.902652470 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.029503511 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.029682102 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.102559972 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.825323035 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.825567143 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.825695548 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.825788214 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.835175241 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.851385271 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.851685064 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.851926783 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.868843601 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.880693466 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.880943037 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.881140645 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.899567629 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.906899774 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.907110735 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.911623028 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.927319565 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.991637380 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:14.991899729 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.128761511 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.129015934 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.145085152 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.250072625 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.250344548 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.339061898 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.339393487 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.434558995 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.434842639 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.484041428 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.493544119 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.633952560 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.634230519 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.685122841 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.722478820 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.770410163 13695   0x7f9803fb80 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.782203454 13695   0x7f9803fb80 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.821128876 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.821438372 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.912037069 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:15.912397083 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.011995422 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.012272622 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.131906128 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.132200995 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.200935123 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.201191509 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.289077556 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.289498180 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.394076696 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.394349729 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.533152394 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.533500556 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.584743633 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.584979204 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.688541789 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.688798063 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.741654545 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.848343127 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.848628419 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.984486289 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:16.984839877 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.038311944 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.038624533 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.128816827 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.129177323 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.235186098 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.235450743 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.320091850 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.320423031 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.422921037 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.423191774 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.505085862 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.505509356 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.611134859 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.611447947 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.685464192 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.701927960 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.807197023 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.807466149 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.891737243 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:17.898730115 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<vidsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:18.038103274 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:18.038389918 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
0:00:18.138323902 13695   0x7f98030330 WARN                  appsrc gstappsrc.c:1802:gst_app_src_push_internal:<audsrc> do-timestamp=TRUE but buffers are provided before reaching the PLAYING state and having a clock. Timestamps will not be accurate!
[2021-08-30T21:12:29Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:18.224461823 13695   0x7f7c032d40 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<audsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:18.225940156 13695   0x7f70004630 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<vidsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:18.933682546 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
[2021-08-30T21:12:30Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:18.948243969 13695   0x7f7c028770 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<audsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:18.949806226 13695   0x7f7c032ca0 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<vidsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:19.076047073 13695   0x7f7c028540 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse2> broken/invalid nal Type: 1 Slice, Size: 9704 will be dropped
0:00:20.688792432 13695   0x7f7c028540 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse2> broken/invalid nal Type: 1 Slice, Size: 9127 will be dropped
0:00:20.789251817 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:20.791496455 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:20.793853517 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:3861:gst_rtsp_media_suspend: media 0x7fa801f220 was not prepared
0:00:20.796886366 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:20.796977902 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:3861:gst_rtsp_media_suspend: media 0x7fa403d1b0 was not prepared
0:00:20.800408469 13695   0x7f980259e0 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<appsrc8:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:20.803068027 13695   0x7f7c032770 FIXME             rtspclient rtsp-client.c:1646:handle_play_request:<GstRTSPClient@0x5589a92370> Add support for seek style (null)
0:00:20.803386652 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:2434:gst_rtsp_media_seek_full:<GstRTSPMedia@0x7fa801f220> Handle going back to 0 for none live not seekable streams.
0:00:20.807747652 13695   0x7f60001630 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<appsrc9:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:20.812336648 13695   0x7f7c032770 FIXME             rtspclient rtsp-client.c:1646:handle_play_request:<GstRTSPClient@0x5589a92480> Add support for seek style (null)
0:00:20.812595552 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:2434:gst_rtsp_media_seek_full:<GstRTSPMedia@0x7fa403d1b0> Handle going back to 0 for none live not seekable streams.
0:00:24.176181309 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:4143:gst_rtsp_media_set_state: media 0x7fa801f220 was not prepared
[2021-08-30T21:12:35Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:24.194589367 13695   0x7f7c032d40 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<audsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:24.195301210 13695   0x7f70004630 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<vidsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:24.498058013 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 812 will be dropped
0:00:24.940402215 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 1203 will be dropped
0:00:25.129490453 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 791 will be dropped
0:00:25.383318002 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 755 will be dropped
0:00:25.520945610 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 743 will be dropped
0:00:25.521170699 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 689 will be dropped
0:00:25.900090815 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 1141 will be dropped
0:00:26.838742002 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 937 will be dropped
0:00:26.839030369 13695   0x7f70004400 WARN               h264parse gsth264parse.c:1237:gst_h264_parse_handle_frame:<h264parse3> broken/invalid nal Type: 1 Slice, Size: 792 will be dropped
0:00:26.879298200 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:26.890677997 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:26.890783014 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:3861:gst_rtsp_media_suspend: media 0x7fa403d720 was not prepared
0:00:26.906563514 13695   0x7f980259e0 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<appsrc12:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:26.910074802 13695   0x7f7c032770 FIXME             rtspclient rtsp-client.c:1646:handle_play_request:<GstRTSPClient@0x5589a92590> Add support for seek style (null)
0:00:26.910356965 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:2434:gst_rtsp_media_seek_full:<GstRTSPMedia@0x7fa403d720> Handle going back to 0 for none live not seekable streams.
0:00:32.507230959 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:4143:gst_rtsp_media_set_state: media 0x7fa403d1b0 was not prepared
[2021-08-30T21:12:43Z DEBUG neolink::rtsp::gst] RTSP: media was configured
0:00:32.531744068 13695   0x7f7c028770 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<audsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:32.533436620 13695   0x7f7c032ca0 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<vidsrc:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:33.603702244 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:33.610099365 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:3835:gst_rtsp_media_suspend: suspend for dynamic pipelines needs fixing
0:00:33.610201586 13695   0x7f7c032770 WARN               rtspmedia rtsp-media.c:3861:gst_rtsp_media_suspend: media 0x7fa801f790 was not prepared
0:00:33.617424233 13695   0x7f6c007590 FIXME                default gstutils.c:3981:gst_pad_create_stream_id_internal:<appsrc15:src> Creating random stream-id, consider implementing a deterministic way of creating a stream-id
0:00:33.619132600 13695   0x7f7c032770 FIXME             rtspclient rtsp-client.c:1646:handle_play_request:<GstRTSPClient@0x5589a926a0> Add support for seek style (null)
0:00:33.619477966 13695   0x7f7c032770 FIXME              rtspmedia rtsp-media.c:2434:gst_rtsp_media_seek_full:<GstRTSPMedia@0x7fa801f790> Handle going back to 0 for none live not seekable streams.
0:00:45.869278991 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.869542265 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.898632038 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.898763555 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.898839294 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.898912275 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.898984144 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.976262480 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.976381960 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.976452366 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.976520236 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:45.976586402 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.145548757 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.145704088 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.145785180 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.145864512 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.145943585 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.146085398 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.146166656 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.146242951 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396278371 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396432998 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396513849 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396592256 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396671403 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396751624 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396830901 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396910381 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.396987825 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.397066027 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.397144508 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650420681 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650577087 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650657919 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650799214 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650880139 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.650958656 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651035692 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651114191 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651192153 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651270022 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651347521 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651425020 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651502130 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651580352 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651657443 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651734479 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.651812886 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965400448 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965561205 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965638574 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965711832 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965841849 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965915348 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.965984810 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966051680 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966118568 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966185437 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966252048 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966319176 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:46.966387324 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.075971335 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076113740 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076185739 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076254535 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076322497 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076389996 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076457551 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076524031 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076644622 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076713084 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076779824 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076846453 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076912878 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.076979414 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.077046413 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.077111857 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.077178060 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.077244207 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.077310410 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250119568 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250278658 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250361268 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250441600 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250519933 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250597728 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250675875 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250814559 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250894780 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100
0:00:47.250973353 13695   0x7f7c028540 WARN                 default gstrtspconnection.c:3879:gst_rtsp_watch_write_data: too much backlog: max_bytes 0, current 139907, max_messages 100, current 100

@luizbon
Copy link

luizbon commented Aug 31, 2021

After getting a stable connection I setup a daemon and let it run for a whole day.
My Argus Eco is running from a solar panel and yet it ran out of battery.
I'm not sure if neolink can parse motion sensor messages but surely not part of this thread.

@QuantumEntangledAndy
Copy link
Collaborator

currently neolink is setup to connect all the time and for it to stream the video all the time even when your not watching it. We can parse motion detection just fine. Neolink can be set up to post messages to an mqtt server when motion is detected but this feature is not in stable neolink yet.

@QuantumEntangledAndy
Copy link
Collaborator

I've created an issue to track the power usage at #204. Is there anything else that might need addressing?

@luizbon
Copy link

luizbon commented Sep 1, 2021

Thanks @QuantumEntangledAndy.
From my current experience, neolink is working as expected for UDP streaming.
I could not reproduce the issue I was having when the connection fails on the first time. Probably this could be another issue when it happens and other people experience it as well.

@helpless-automaton
Copy link

@luizbon and any other folks who have been running this software for the past month--how has the battery life fared on your cameras? And has the software been stable with the connections and the streams? Any feedback would be appreciated, thanks.

@thibaultmol
Copy link

I'm thinking of getting an Argus 3 Pro, was wondering what the current status is on support?

@Dinth
Copy link

Dinth commented Aug 20, 2022

Im also wondering what is the state. According to the documentation, battery powered cameras should now work.
I have tried setting up one but im constantly getting this:

[2022-08-20T18:04:07Z INFO  neolink] Neolink 0.4.0 (unknown commit) release
[2022-08-20T18:04:08Z WARN  neolink::rtsp] Without a server certificate, usernames and passwords will be exchanged in plaintext!
[2022-08-20T18:04:13Z INFO  neolink_core::bc_protocol::connection::udpconn::discover] Trying remote discovery against reolink servers
[2022-08-20T18:04:13Z INFO  neolink_core::bc_protocol::connection::udpconn::discover] Trying remote discovery against reolink servers
[2022-08-20T18:04:13Z INFO  neolink_core::bc_protocol::connection::udpconn::discover] Trying remote discovery against reolink servers
[2022-08-20T18:04:13Z INFO  neolink_core::bc_protocol::connection::udpconn::discover] Trying remote discovery against reolink servers
[2022-08-20T18:04:18Z ERROR neolink::rtsp] Error streaming from camera mailbox, will retry in 1s: Failed to connect to camera mailbox at UID: 9527000125994LYR on channel 0
    
    Caused by:
        0: Connection error
        1: Timeout
[2022-08-20T18:04:18Z ERROR neolink::rtsp] Error streaming from camera mailbox, will retry in 1s: Failed to connect to camera mailbox at UID: 9527000125994LYR on channel 0
    
    Caused by:
        0: Connection error
        1: Timeout
[2022-08-20T18:04:19Z INFO  neolink::rtsp] mailbox: Connecting to camera at UID: 9527000125994LYR
[2022-08-20T18:04:19Z INFO  neolink::rtsp] mailbox: Logging in
[2022-08-20T18:04:19Z INFO  neolink::rtsp] mailbox: Connecting to camera at UID: 9527000125994LYR
[2022-08-20T18:04:19Z INFO  neolink::rtsp] mailbox: Logging in
[2022-08-20T18:04:21Z ERROR neolink::rtsp] Authentication failed to camera mailbox, not retrying
[2022-08-20T18:04:21Z ERROR neolink_core::bc_protocol::connection::udpconn] Udp read poll aborted
[2022-08-20T18:04:21Z ERROR neolink_core::bc_protocol::connection::udpconn] Udp write poll aborted
[2022-08-20T18:04:21Z ERROR neolink::rtsp] Authentication failed to camera mailbox, not retrying
[2022-08-20T18:04:21Z ERROR neolink_core::bc_protocol::connection::udpconn] Udp read poll aborted
[2022-08-20T18:04:21Z ERROR neolink_core::bc_protocol::connection::udpconn] Udp write poll aborted

@revellion
Copy link

Tested today with an argus pt but no luck. I made a wireshark dump of a login with the windows Client to try to see if I can figure it out

@psipika
Copy link

psipika commented May 31, 2023

Im also wondering what is the state. According to the documentation, battery powered cameras should now work. I have tried setting up one but im constantly getting this:

I'm in the same boat. Going to take a look at the initial exchange on the network using the dissector when I have time to try and figure out what's missing.
Thanks for a great project!

@Dinth
Copy link

Dinth commented May 31, 2023

Im also wondering what is the state. According to the documentation, battery powered cameras should now work. I have tried setting up one but im constantly getting this:

I'm in the same boat. Going to take a look at the initial exchange on the network using the dissector when I have time to try and figure out what's missing. Thanks for a great project!

Try this fork: quantumentangledandy/neolink:refractor-gts_rework. Still some battery drain issues, but its almost there.

@QuantumEntangledAndy
Copy link
Collaborator

If you have any contribution please do add it on my fork. This original repo is mostly unmaintained now. We have more features and support more cameras there.

@psipika
Copy link

psipika commented May 31, 2023

Try this fork: quantumentangledandy/neolink:refractor-gts_rework. Still some battery drain issues, but its almost there.

Nope, same connection issue. I've verified the UID and u/p to make sure it's not that, but it looks like I'll have to take the time to debug the connection...

@QuantumEntangledAndy
Copy link
Collaborator

The feature I think you need isn't in that branch. Gts_rework is quite far behind. Please try with latest. And ensure you put in both uid and the addr. If you supply a uid and an addr using latest it will enable an extra connection mode that will bypass the need for local discovery. Also be aware that by using docker you have extra complications because of the network bridges may block the udp broadcasts.

@Dinth
Copy link

Dinth commented Jun 1, 2023

The feature I think you need isn't in that branch. Gts_rework is quite far behind.

@QuantumEntangledAndy Sorry for the OT, but has the issue with cameras not waking up from sleep been fixed in the main branch (i needed to switch from main to gts_rework to fix that a few weeks ago)?

@QuantumEntangledAndy
Copy link
Collaborator

I think so. You'd need to check it yourself to be sure.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request hardware support Support additional hardware
Projects
None yet
Development

No branches or pull requests