QuantumEntangledAndy / neolink

An RTSP bridge to Reolink IP cameras
GNU Affero General Public License v3.0
330 stars 45 forks source link

Windows 10 64bit - neolink.exe crashes when camera is disconnected. #165

Closed bwthor closed 5 months ago

bwthor commented 1 year ago

Describe the bug A clear and concise description of what the bug is. Running this manually from a command prompt, Works fine until any of the cameras are disconnected, then I get the crash.
To Reproduce Steps to reproduce the behavior. Example:

  1. Create this configuration file: see below
    
    bind = "0.0.0.0"

[[cameras]] name = "Ch1" username = "admin" password = "mysecretpass" address = "192.168.0.14"

[[cameras]] name = "Ch2" username = "admin" password = "mysecretpass" address = "192.168.0.15"

[[cameras]] name = "Ch3" username = "admin" password = "mysecretpass" address = "192.168.0.16"

[[cameras]] name = "Ch4" username = "admin" password = "mysecretpass" address = "192.168.0.17"

[[cameras]] name = "Backyard8MP" username = "admin" password = "mysecretpass" address = "192.168.0.13"


2. Launch Neolink manually - neolink.exe rtsp --config=config.toml

3. Disconnect any camera, and neolink crashes 30 or so seconds later.
    Caused by:
        Cannot contact camera at given address
[2023-10-03T16:33:28Z INFO  neolink::common::camthread] Attempt reconnect in 100ms
[2023-10-03T16:33:28Z INFO  neolink::utils] Ch2: Connecting to camera at Address: 192.168.0.15
[2023-10-03T16:33:28Z INFO  neolink_core::bc_protocol] Ch2: Trying TCP discovery
[2023-10-03T16:33:32Z INFO  neolink_core::bc_protocol] Ch2: Discovery failed
[2023-10-03T16:33:32Z WARN  neolink::common::camthread] Connection Lost: Failed to connect to camera Ch2 at Address: 192.168.0.15 on channel 0

    Caused by:
        Cannot contact camera at given address
[2023-10-03T16:33:32Z INFO  neolink::common::camthread] Attempt reconnect in 200ms
[2023-10-03T16:33:32Z INFO  neolink::utils] Ch2: Connecting to camera at Address: 192.168.0.15
[2023-10-03T16:33:32Z INFO  neolink_core::bc_protocol] Ch2: Trying TCP discovery
thread '<unnamed>' panicked at 'Could not build pipeline: channel closed', src\rtsp\gst\factory.rs:132:56
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

**Expected behavior**
A clear and concise description of what you expected to happen.
Expected it not to crash?

**Versions**
0.6.2
NVR software: Blueiris
Neolink software:
Reolink camera model and firmware: Four B800's one RLC-810a

I'd be more than happy to pull logs, just please be specific on where they are and how to gather them.
QuantumEntangledAndy commented 1 year ago

I believe this has already been addressed and should come out with 0.6.3

QuantumEntangledAndy commented 1 year ago

You can test with this build:

https://github.com/QuantumEntangledAndy/neolink/actions/runs/6388831582

There are a few more errors to address in that build involving the new push notifications and the need and enough data callbacks

bwthor commented 12 months ago

You can test with this build:

https://github.com/QuantumEntangledAndy/neolink/actions/runs/6388831582

There are a few more errors to address in that build involving the new push notifications and the need and enough data callbacks

I finally got a chance to try this build, and unfortunately still get the neolink.exe crash if I unplug a camera or two.

QuantumEntangledAndy commented 12 months ago

Could you provide a debug log with the following

set RUST_LOG="neolink=debug"

neolink.exe rtsp --config=config.toml 2&>1 > neolink.log
bwthor commented 12 months ago

Sorry, I'm not sure about these commands.
I entered the first one on the command prompt and hit enter, then entered the second one, and get this syntax error... neolink.exe rtsp --config=config.toml 2&>1 > neolink.log The syntax of the command is incorrect.

QuantumEntangledAndy commented 12 months ago

The first one turns on the debug log and the second one starts neolink but redirects the output to a file

I think I see the issue I made it should be > neolink.log 2>&1 with the & after the >

bwthor commented 12 months ago

Sorry...I'm dumb and don't understand what I'm missing in the log syntax. Get this now, and the neolink.log was not populated.

C:\Users\me\neolink>set RUST_LOG="neolink=debug"

C:\Users\me\neolink>neolink.exe rtsp --config=config.toml 2>&1 > neolink.log warning: invalid logging spec 'debug"', ignoring it I UNPLUGGED CAMERAS AT THIS POINT thread '' panicked at 'Could not build pipeline: channel closed', src\rtsp\gst\factory.rs:132:56 note: run with RUST_BACKTRACE=1 environment variable to display a backtrace

QuantumEntangledAndy commented 12 months ago

It should have made a file in the same folder as neolink called neolink.log was this not the case? I don't use windows so I cannot test your cmd command but perhaps the order is important neolink.exe rtsp --config=config.toml > neolink.log 2>&1

QuantumEntangledAndy commented 12 months ago

Please also try the latest build so I can match up the line numbers easier

QuantumEntangledAndy commented 12 months ago

The could not build pipeline: channel closed comes at the point where gstreamer tries to create a media. It asks my code to make it then errors if there was anything wrong in there.

Channel closed seems to suggest that the issue is happening when it tries to send the appsrc from the media creation code through the channel into the other thread. This should only be closed if the reciever of the channel is close

The other end of the channel should not be closed. I keep that channel alive in another thread, if there is no camera it either sends cached data or a repeat of he last IFrame.

This is why i want the debug logs. The debug logs will print out useful info to tell me when the channel might be lost

bwthor commented 12 months ago

New build, same results... neolink.log is created, but nothing is entered into the file. I still think the RUST log capture may not be right, I get that bold message after starting neolink.

C:\Users\me\neolink>set RUST_LOG="neolink=debug"

C:\Users\me\neolink>neolink.exe rtsp --config=config.toml 2>&1 > neolink.log warning: invalid logging spec 'debug"', ignoring it Cameras unplugged here thread '' panicked at 'Could not build pipeline: channel closed', src\rtsp\gst\factory.rs:136:56 note: run with RUST_BACKTRACE=1 environment variable to display a backtrace

bwthor commented 12 months ago

Also noticed when running the new build, the main stream is just an all gray screen in Blueiris. Substream looks normal, but when clicking to view the Main stream, it switches, then goes all gray. Switched back to 62, and camera streams are back to normal.

QuantumEntangledAndy commented 12 months ago

Ah another BI user... Currently having issues with that client on the main stream. Not sure why

QuantumEntangledAndy commented 12 months ago

I am wondering if BI and frigate are going to conflict with each other. To get frigate to work over pause I made it so that it repeats a keyframe if no frame was sent for over 1s, this is to stop frigate form thinking we are disconnected. But perhaps the way BI decodes the stream it dosen't like the extra keyframe out of place

QuantumEntangledAndy commented 12 months ago

Lets get those log working first. I am just googling here, coz no windows, so if you can try to also find out how to do this things will go much faster.

This is what I do on bash in macos

export RUST_LOG="neolink=debug"
neolink rtsp --config=neolink.toml 2>&1 >neolink.log

When I do this all output is directed to file so I cannot see it

In macos and linux I can do this to see the log and print to file

export RUST_LOG="neolink=debug"
neolink rtsp --config=neolink.toml 2>&1 | tee neolink.log

Which has the nice benifit of letting me see the log in the terminal and write it to file

If the 2>&1 is missnig then the log will be empty, which I think is what you are reporting. Perhaps you can screen shot what you typed so I can double check it

QuantumEntangledAndy commented 12 months ago

BTW are you using powershell or CMD?

QuantumEntangledAndy commented 12 months ago

Power shell has a tee like command it seems https://superuser.com/questions/74127/tee-for-windows

bwthor commented 12 months ago

Sorry, had to run out for a bit. I was using CMD, but can certainly try Powershel. I'll report back.

QuantumEntangledAndy commented 12 months ago

Powershell might be more trouble then it is worth.

Send me the screen shot of your cmd command and I will check them

bwthor commented 12 months ago

OK, I hope this is correct. From Widnows Command Prompt.

set RUST_LOG=neolink=debug neolink.exe rtsp --config=config.toml > neolink.log 2>&1

log ``` [2023-10-10T01:55:55Z INFO neolink] Neolink 6e8c744025608d33596a27ef167e13dbb0e55ccb release [2023-10-10T01:55:55Z INFO neolink::rtsp] Starting RTSP Server at 0.0.0.0:8554 [2023-10-10T01:55:55Z INFO neolink::rtsp] Ch4: Rtsp Staring [2023-10-10T01:55:55Z INFO neolink::rtsp] Ch1: Rtsp Staring [2023-10-10T01:55:55Z INFO neolink::rtsp] Ch3: Rtsp Staring [2023-10-10T01:55:55Z INFO neolink::rtsp] Backyard8MP: Rtsp Staring [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Inserting new insance [2023-10-10T01:55:55Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] New instance created [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Got instance from reactor [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Inserting new insance [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main::Loop [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main::Select Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] New instance created [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Got instance from reactor [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Inserting new insance [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main::Select Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main::Select Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Camera Main::Select Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Loop [2023-10-10T01:55:55Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:55:55Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Preparing at /Ch1/main, /Ch1/Main, /Ch1/mainStream, /Ch1/MainStream, /Ch1/Mainstream, /Ch1/mainstream, /Ch1 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Substream [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Preparing at /Ch1/sub, /Ch1/Sub, /Ch1/subStream, /Ch1/SubStream, /Ch1/Substream, /Ch1/substream [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/externStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/ExternStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/Externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch1/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch1: Preparing at /Ch1/extern, /Ch1/Extern, /Ch1/externStream, /Ch1/ExternStream, /Ch1/Externstream, /Ch1/externstream [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] New instance created [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Got instance from reactor [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Inserting new insance [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main::Loop [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main::Select Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Extern [2023-10-10T01:55:55Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main::Select Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main::Select Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Camera Main::Select Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/MainStream [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/externStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/ExternStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/main, /Backyard8MP/Main, /Backyard8MP/mainStream, /Backyard8MP/MainStream, /Backyard8MP/Mainstream, /Backyard8MP/mainstream, /Backyard8MP [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Preparing at /Ch3/extern, /Ch3/Extern, /Ch3/externStream, /Ch3/ExternStream, /Ch3/Externstream, /Ch3/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/main [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] New instance created [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Main [2023-10-10T01:55:55Z DEBUG neolink::common::reactor] Got instance from reactor [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main::Loop [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/sub, /Backyard8MP/Sub, /Backyard8MP/subStream, /Backyard8MP/SubStream, /Backyard8MP/Substream, /Backyard8MP/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main::Select Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/externStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/ExternStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/Externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main::Select Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Backyard8MP/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main::Select Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/extern, /Backyard8MP/Extern, /Backyard8MP/externStream, /Backyard8MP/ExternStream, /Backyard8MP/Externstream, /Backyard8MP/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Camera Main::Select Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Preparing at /Ch3/main, /Ch3/Main, /Ch3/mainStream, /Ch3/MainStream, /Ch3/Mainstream, /Ch3/mainstream, /Ch3 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Extern [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/externStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/ExternStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch3/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch3: Preparing at /Ch3/sub, /Ch3/Sub, /Ch3/subStream, /Ch3/SubStream, /Ch3/Substream, /Ch3/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Preparing at /Ch4/extern, /Ch4/Extern, /Ch4/externStream, /Ch4/ExternStream, /Ch4/Externstream, /Ch4/externstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Preparing at /Ch4/main, /Ch4/Main, /Ch4/mainStream, /Ch4/MainStream, /Ch4/Mainstream, /Ch4/mainstream, /Ch4 [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Path: /Ch4/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp] Ch4: Preparing at /Ch4/sub, /Ch4/Sub, /Ch4/subStream, /Ch4/SubStream, /Ch4/Substream, /Ch4/substream [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch3: TCP Discovery success at 192.168.0.16:9000 [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch1: TCP Discovery success at 192.168.0.14:9000 [2023-10-10T01:55:55Z INFO neolink::utils] Ch3: Logging in [2023-10-10T01:55:55Z INFO neolink::utils] Ch1: Logging in [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Backyard8MP: TCP Discovery success at 192.168.0.13:9000 [2023-10-10T01:55:55Z INFO neolink::utils] Backyard8MP: Logging in [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T01:55:55Z INFO neolink::utils] Ch1: Connected and logged in [2023-10-10T01:55:55Z INFO neolink::common::camthread] Ch1: Camera time is already set: 2023-10-09 20:55:55.0 +06:00:00 [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T01:55:55Z INFO neolink::utils] Ch3: Connected and logged in [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch1: Model D800 [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch1: Firmware Version v3.0.0.183_21012801 [2023-10-10T01:55:55Z INFO neolink::common::camthread] Ch3: Camera time is already set: 2023-10-09 20:55:55.0 +06:00:00 [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch3: Model D800 [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch3: Firmware Version v3.0.0.183_21012801 [2023-10-10T01:55:55Z DEBUG neolink::common::neocam] Ch1: Listing Camera Supported Streams mainStream: 3840x2160 subStream: 640x360 mainStream: 2560x1440 subStream: 640x360 mainStream: 2304x1296 subStream: 640x360 [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: None, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::common::neocam] Ch3: Listing Camera Supported Streams mainStream: 3840x2160 subStream: 640x360 mainStream: 2560x1440 subStream: 640x360 mainStream: 2304x1296 subStream: 640x360 [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: None, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Streaming START [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: None, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: None, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ftp_rw, ftpSchedule_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T01:55:55Z INFO neolink::utils] Backyard8MP: Connected and logged in [2023-10-10T01:55:55Z INFO neolink::common::camthread] Backyard8MP: Camera time is already set: 2023-10-09 20:55:55.0 +06:00:00 [2023-10-10T01:55:55Z INFO neolink::common::neocam] Backyard8MP: Model RLC-810A [2023-10-10T01:55:55Z INFO neolink::common::neocam] Backyard8MP: Firmware Version v3.1.0.956_22041503 [2023-10-10T01:55:55Z DEBUG neolink::common::neocam] Backyard8MP: Listing Camera Supported Streams mainStream: 3840x2160 subStream: 640x360 mainStream: 2560x1440 subStream: 640x360 mainStream: 2304x1296 subStream: 640x360 [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: None, aud_format: None, bitrate: 262144 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: None, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T01:55:55Z INFO neolink_core::bc_protocol] Ch4: TCP Discovery success at 192.168.0.17:9000 [2023-10-10T01:55:55Z INFO neolink::utils] Ch4: Logging in [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 262144 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 262144 } [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T01:55:55Z INFO neolink::utils] Ch4: Connected and logged in [2023-10-10T01:55:55Z INFO neolink::common::camthread] Ch4: Camera time is already set: 2023-10-09 20:55:55.0 +06:00:00 [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch4: Model B800 [2023-10-10T01:55:55Z INFO neolink::common::neocam] Ch4: Firmware Version v3.0.0.183_21012800 [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: None, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::common::neocam] Ch4: Listing Camera Supported Streams mainStream: 3840x2160 subStream: 640x360 mainStream: 2560x1440 subStream: 640x360 mainStream: 2304x1296 subStream: 640x360 [2023-10-10T01:55:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Activating Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Waiting for Valid Stream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: None, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: Aac, bitrate: 262144 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/substream [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Backyard8MP: Avaliable at /Backyard8MP/sub, /Backyard8MP/Sub, /Backyard8MP/subStream, /Backyard8MP/SubStream, /Backyard8MP/Substream, /Backyard8MP/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: Aac, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/substream [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Ch3: Avaliable at /Ch3/sub, /Ch3/Sub, /Ch3/subStream, /Ch3/SubStream, /Ch3/Substream, /Ch3/substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch1: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch1 [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Ch1: Avaliable at /Ch1/main, /Ch1/Main, /Ch1/mainStream, /Ch1/MainStream, /Ch1/Mainstream, /Ch1/mainstream, /Ch1 [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Backyard8MP: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Backyard8MP: Avaliable at /Backyard8MP/main, /Backyard8MP/Main, /Backyard8MP/mainStream, /Backyard8MP/MainStream, /Backyard8MP/Mainstream, /Backyard8MP/mainstream, /Backyard8MP [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch3: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch3 [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Ch3: Avaliable at /Ch3/main, /Ch3/Main, /Ch3/mainStream, /Ch3/MainStream, /Ch3/Mainstream, /Ch3/mainstream, /Ch3 [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 291 (number: 0) [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/Main [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/mainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/MainStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/Mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/mainstream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4 [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Ch4: Avaliable at /Ch4/main, /Ch4/Main, /Ch4/mainStream, /Ch4/MainStream, /Ch4/Mainstream, /Ch4/mainstream, /Ch4 [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Waiting for Valid Audio [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: Aac, bitrate: 163840 } [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Creating Client Counters [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Ch4: Stream Activated [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:55:55Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/Sub [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/subStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/SubStream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/Substream [2023-10-10T01:55:55Z DEBUG neolink::rtsp::stream] Path: /Ch4/substream [2023-10-10T01:55:55Z INFO neolink::rtsp::stream] Ch4: Avaliable at /Ch4/sub, /Ch4/Sub, /Ch4/subStream, /Ch4/SubStream, /Ch4/Substream, /Ch4/substream [2023-10-10T01:55:56Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T01:55:56Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T01:55:58Z DEBUG neolink::common::pushnoti] Push notification details are saved to Some("C:\\Users\\bthorvil\\AppData\\Roaming\\./neolink_token.toml") [2023-10-10T01:55:58Z DEBUG neolink::common::pushnoti] Loaded push notification token [2023-10-10T01:55:58Z DEBUG neolink::common::pushnoti] registration.fcm_token: cGTlKwL3gl4:APA91bEMb7bHT9H1LgpEyeDMEtOJPonU_m2ETzOpJ7IDdZa33pgVrty-AYxqE2psdqJeaG2I4adD9gt-3fa8bQBZa5W2Iw4QleaA6EouJQWeOajA2yKWn_uk1OYeDM5fvYNS1it1VcNH [2023-10-10T01:55:58Z DEBUG neolink::common::pushnoti] push notification UID: ABD959A191B232AA4214F25325952788 [2023-10-10T01:55:58Z DEBUG neolink::common::pushnoti] Push notification Listening [2023-10-10T01:55:58Z DEBUG neolink::common::neocam] Push notification thread ended; Err(Camera responded with Service Unavaliable) [2023-10-10T01:55:58Z DEBUG neolink::common::neocam] Push notification thread ended; Err(Camera responded with Service Unavaliable) [2023-10-10T01:55:58Z DEBUG neolink::common::neocam] Push notification thread ended; Err(Camera responded with Service Unavaliable) [2023-10-10T01:55:59Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:00Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Ch1: Waiting for Valid Audio [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 163840 } [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: Aac, bitrate: 163840 } [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Ch1: Creating Client Counters [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Ch1: Stream Activated [2023-10-10T01:56:00Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T01:56:00Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/sub [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/Sub [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/subStream [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/SubStream [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/Substream [2023-10-10T01:56:00Z DEBUG neolink::rtsp::stream] Path: /Ch1/substream [2023-10-10T01:56:00Z INFO neolink::rtsp::stream] Ch1: Avaliable at /Ch1/sub, /Ch1/Sub, /Ch1/subStream, /Ch1/SubStream, /Ch1/Substream, /Ch1/substream [2023-10-10T01:56:08Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:08Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:08Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:56:08Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:08Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:08Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:08Z DEBUG neolink::rtsp::stream] Ch4: Number of rtsp clients: 1 [2023-10-10T01:56:13Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:13Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:13Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T01:56:13Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:13Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:13Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:13Z DEBUG neolink::rtsp::stream] Ch3: Number of rtsp clients: 1 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:15Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:15Z DEBUG neolink::rtsp::stream] Ch4: Number of rtsp clients: 1 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:15Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:15Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:15Z DEBUG neolink::rtsp::stream] Ch3: Number of rtsp clients: 1 [2023-10-10T01:56:19Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:19Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:19Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:56:19Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:19Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:19Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:19Z DEBUG neolink::rtsp::stream] Ch1: Number of rtsp clients: 1 [2023-10-10T01:56:20Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:20Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:20Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T01:56:20Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:20Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:20Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:20Z DEBUG neolink::rtsp::stream] Ch1: Number of rtsp clients: 1 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:22Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:22Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:22Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:22Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:22Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:39Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Aud Thread End: Err(App source is closed) [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Vid Thread End: Err(App source is closed) [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 0 [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Aud Thread End: Err(App source is closed) [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Vid Thread End: Err(App source is closed) [2023-10-10T01:56:42Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 0 [2023-10-10T01:56:43Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:44Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:45Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:45Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:45Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T01:56:45Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T01:56:45Z DEBUG neolink::rtsp::stream] New media [2023-10-10T01:56:45Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T01:56:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::mdthread] Error in MD task Restarting: Err(Send Error) [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::camthread] Camera Join: Err(Io(Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." })) [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z WARN neolink::common::camthread] Connection Lost: IO Error: Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." } Caused by: An existing connection was forcibly closed by the remote host. (os error 10054) [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::connection::bcconn] BcConnection::shutdown Cancel [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z INFO neolink::common::camthread] Attempt reconnect in 50ms [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::camthread] Camera Join: Err(Io(Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." })) [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z WARN neolink::common::camthread] Connection Lost: IO Error: Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." } Caused by: An existing connection was forcibly closed by the remote host. (os error 10054) [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z INFO neolink::common::camthread] Attempt reconnect in 50ms [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::connection::bcconn] BcConnection::shutdown Cancel [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T01:56:54Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:56:54Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:56:54Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:56:54Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::mdthread] Error in MD task Restarting: Err(Send Error) [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::camthread] Camera Join: Err(Io(Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." })) [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z WARN neolink::common::camthread] Connection Lost: IO Error: Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." } Caused by: An existing connection was forcibly closed by the remote host. (os error 10054) [2023-10-10T01:56:54Z INFO neolink::common::camthread] Attempt reconnect in 50ms [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::connection::bcconn] BcConnection::shutdown Cancel [2023-10-10T01:56:54Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:56:54Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:56:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink::common::instance] Std IO Error [2023-10-10T01:56:54Z DEBUG neolink::common::mdthread] Error in MD task Restarting: Err(Send Error) [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::stream] SteamData::get_data Cancel3 [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Video Stream Restarting Due to Error: Dropped connection [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z DEBUG neolink::common::streamthread] Streaming STOP [2023-10-10T01:56:54Z DEBUG neolink::common::camthread] Camera Join: Err(Io(Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." })) [2023-10-10T01:56:54Z WARN neolink::common::camthread] Connection Lost: IO Error: Os { code: 10054, kind: ConnectionReset, message: "An existing connection was forcibly closed by the remote host." } Caused by: An existing connection was forcibly closed by the remote host. (os error 10054) [2023-10-10T01:56:54Z INFO neolink::common::camthread] Attempt reconnect in 50ms [2023-10-10T01:56:54Z DEBUG neolink_core::bc_protocol::connection::bcconn] BcConnection::shutdown Cancel [2023-10-10T01:56:54Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:56:54Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:56:58Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:56:58Z INFO neolink::common::camthread] Attempt reconnect in 100ms [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:56:58Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:56:58Z INFO neolink::common::camthread] Attempt reconnect in 100ms [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:56:58Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:56:58Z INFO neolink::common::camthread] Attempt reconnect in 100ms [2023-10-10T01:56:58Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:56:58Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:56:58Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:56:58Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:56:58Z INFO neolink::common::camthread] Attempt reconnect in 100ms [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:56:58Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:56:58Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:57:02Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:02Z INFO neolink::common::camthread] Attempt reconnect in 200ms [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:57:02Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:02Z INFO neolink::common::camthread] Attempt reconnect in 200ms [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:57:02Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:02Z INFO neolink::common::camthread] Attempt reconnect in 200ms [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:57:02Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:02Z INFO neolink::common::camthread] Attempt reconnect in 200ms [2023-10-10T01:57:02Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:57:02Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:57:02Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:57:02Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:57:02Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:57:06Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:06Z INFO neolink::common::camthread] Attempt reconnect in 400ms [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:57:06Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:06Z INFO neolink::common::camthread] Attempt reconnect in 400ms [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:57:06Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:06Z INFO neolink::common::camthread] Attempt reconnect in 400ms [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:57:06Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:06Z INFO neolink::common::camthread] Attempt reconnect in 400ms [2023-10-10T01:57:06Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:57:06Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:57:06Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:57:07Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:57:07Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:57:07Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:57:07Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:10Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:57:10Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:10Z INFO neolink::common::camthread] Attempt reconnect in 800ms [2023-10-10T01:57:10Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:57:10Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:10Z INFO neolink::common::camthread] Attempt reconnect in 800ms [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:57:11Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:11Z INFO neolink::common::camthread] Attempt reconnect in 800ms [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:57:11Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:11Z INFO neolink::common::camthread] Attempt reconnect in 800ms [2023-10-10T01:57:11Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:57:11Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:57:11Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:57:11Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:57:11Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:15Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:57:15Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:15Z INFO neolink::common::camthread] Attempt reconnect in 1.6s [2023-10-10T01:57:15Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:57:15Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:15Z INFO neolink::common::camthread] Attempt reconnect in 1.6s [2023-10-10T01:57:15Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:57:15Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:15Z INFO neolink::common::camthread] Attempt reconnect in 1.6s [2023-10-10T01:57:16Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:57:16Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:16Z INFO neolink::common::camthread] Attempt reconnect in 1.6s [2023-10-10T01:57:17Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:57:17Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:57:17Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:57:17Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:57:17Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:57:17Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:57:17Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:57:17Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:21Z INFO neolink_core::bc_protocol] Ch1: Discovery failed [2023-10-10T01:57:21Z INFO neolink_core::bc_protocol] Ch3: Discovery failed [2023-10-10T01:57:21Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch3 at Address: 192.168.0.16 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:21Z INFO neolink::common::camthread] Attempt reconnect in 3.2s [2023-10-10T01:57:21Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch1 at Address: 192.168.0.14 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:21Z INFO neolink::common::camthread] Attempt reconnect in 3.2s [2023-10-10T01:57:21Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T01:57:21Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:21Z INFO neolink::common::camthread] Attempt reconnect in 3.2s [2023-10-10T01:57:21Z INFO neolink_core::bc_protocol] Ch4: Discovery failed [2023-10-10T01:57:21Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Ch4 at Address: 192.168.0.17 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T01:57:21Z INFO neolink::common::camthread] Attempt reconnect in 3.2s [2023-10-10T01:57:24Z INFO neolink::utils] Ch3: Connecting to camera at Address: 192.168.0.16 [2023-10-10T01:57:24Z INFO neolink::utils] Ch1: Connecting to camera at Address: 192.168.0.14 [2023-10-10T01:57:24Z INFO neolink_core::bc_protocol] Ch3: Trying TCP discovery [2023-10-10T01:57:24Z INFO neolink_core::bc_protocol] Ch1: Trying TCP discovery [2023-10-10T01:57:24Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T01:57:24Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T01:57:24Z INFO neolink::utils] Ch4: Connecting to camera at Address: 192.168.0.17 [2023-10-10T01:57:24Z INFO neolink_core::bc_protocol] Ch4: Trying TCP discovery [2023-10-10T01:57:25Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T01:57:25Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:57:25Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T01:57:25Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T01:57:25Z DEBUG neolink::rtsp::factory] Building Aac pipeline thread '' panicked at 'Could not build pipeline: channel closed', src\rtsp\gst\factory.rs:136:56 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ```
QuantumEntangledAndy commented 12 months ago

I don't suppose you can repeat that with just one camera. All of those overlapping error messages make it hard to work out the order of events.

Also you seem to be getting the Cancel 3 error message. I have another user who is getting this but I cannot seem to replicate it. Can you let me know what you are doing to replicate? Are you disconnecting at a certain point in the setup? I am hoping its not a windows only type of error

p.s. put logs in spoilers like this

<details>
<summary>log</summary>

LOG HERE


</details>

The blank lines between the ``` are important

QuantumEntangledAndy commented 12 months ago

Ok so this build likely fixes the issue with Cancel3 (which was your first error). I'll see what else your log might suggest

QuantumEntangledAndy commented 12 months ago

And this build turns the panic into a soft error instead. The rtsp client will get a 500 error instead.

QuantumEntangledAndy commented 12 months ago

Updated build coz of typo

bwthor commented 11 months ago

OK, running new build with only one camera configured. When I unplugged the camera, I did not see the error. Attached log is this config. I am still seeing the gray screen on the Main Stream.

I set the config back to all cams, and unplugged the entire group, and still no error. LMK if you would like me to test anything else.

log ``` [2023-10-10T14:34:40Z INFO neolink] Neolink 8067ffc30dcaa5acd2a0c35f996f62be13e7e5b1 release [2023-10-10T14:34:40Z INFO neolink::rtsp] Starting RTSP Server at 0.0.0.0:8554 [2023-10-10T14:34:40Z INFO neolink::rtsp] Backyard8MP: Rtsp Staring [2023-10-10T14:34:40Z DEBUG neolink::common::reactor] Inserting new insance [2023-10-10T14:34:40Z DEBUG neolink::common::reactor] New instance created [2023-10-10T14:34:40Z DEBUG neolink::common::reactor] Got instance from reactor [2023-10-10T14:34:40Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Loop [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Stream [2023-10-10T14:34:40Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T14:34:40Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Main [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Sub [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Camera Main::Select Extern [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/sub [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Sub [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/subStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/SubStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Substream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/substream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/sub, /Backyard8MP/Sub, /Backyard8MP/subStream, /Backyard8MP/SubStream, /Backyard8MP/Substream, /Backyard8MP/substream [2023-10-10T14:34:40Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/extern [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Extern [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/externStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/ExternStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Externstream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/externstream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/extern, /Backyard8MP/Extern, /Backyard8MP/externStream, /Backyard8MP/ExternStream, /Backyard8MP/Externstream, /Backyard8MP/externstream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/main [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Main [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/mainStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/MainStream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/Mainstream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP/mainstream [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Path: /Backyard8MP [2023-10-10T14:34:40Z DEBUG neolink::rtsp] Backyard8MP: Preparing at /Backyard8MP/main, /Backyard8MP/Main, /Backyard8MP/mainStream, /Backyard8MP/MainStream, /Backyard8MP/Mainstream, /Backyard8MP/mainstream, /Backyard8MP [2023-10-10T14:34:40Z INFO neolink_core::bc_protocol] Backyard8MP: TCP Discovery success at 192.168.0.13:9000 [2023-10-10T14:34:40Z INFO neolink::utils] Backyard8MP: Logging in [2023-10-10T14:34:40Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T14:34:40Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ftp_rw, ftpSchedule_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T14:34:40Z INFO neolink::utils] Backyard8MP: Connected and logged in [2023-10-10T14:34:40Z INFO neolink::common::camthread] Backyard8MP: Camera time is already set: 2023-10-10 9:34:43.0 +06:00:00 [2023-10-10T14:34:40Z INFO neolink::common::neocam] Backyard8MP: Model RLC-810A [2023-10-10T14:34:40Z INFO neolink::common::neocam] Backyard8MP: Firmware Version v3.1.0.956_22041503 [2023-10-10T14:34:40Z DEBUG neolink::common::neocam] Backyard8MP: Listing Camera Supported Streams mainStream: 3840x2160 subStream: 640x360 mainStream: 2560x1440 subStream: 640x360 mainStream: 2304x1296 subStream: 640x360 [2023-10-10T14:34:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] Backyard8MP: Activating Stream [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Stream [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: None, aud_format: None, bitrate: 6291456 } [2023-10-10T14:34:40Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] Backyard8MP: Activating Stream [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Stream [2023-10-10T14:34:40Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: None, aud_format: None, bitrate: 262144 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Audio [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: None, bitrate: 6291456 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [3840, 2160], vid_format: H265, aud_format: Aac, bitrate: 6291456 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Creating Client Counters [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Stream Activated [2023-10-10T14:34:41Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T14:34:41Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/main [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Main [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/mainStream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/MainStream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Mainstream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/mainstream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP [2023-10-10T14:34:41Z INFO neolink::rtsp::stream] Backyard8MP: Avaliable at /Backyard8MP/main, /Backyard8MP/Main, /Backyard8MP/mainStream, /Backyard8MP/MainStream, /Backyard8MP/Mainstream, /Backyard8MP/mainstream, /Backyard8MP [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 262144 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Waiting for Valid Audio [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: None, bitrate: 262144 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] StreamConfig { resolution: [640, 360], vid_format: H264, aud_format: Aac, bitrate: 262144 } [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Creating Client Counters [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Backyard8MP: Stream Activated [2023-10-10T14:34:41Z DEBUG neolink::rtsp::gst::factory] Constructing Factor Impl [2023-10-10T14:34:41Z DEBUG neolink::rtsp::gst::factory] Adding anonymous as permitted user [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/sub [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Sub [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/subStream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/SubStream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/Substream [2023-10-10T14:34:41Z DEBUG neolink::rtsp::stream] Path: /Backyard8MP/substream [2023-10-10T14:34:41Z INFO neolink::rtsp::stream] Backyard8MP: Avaliable at /Backyard8MP/sub, /Backyard8MP/Sub, /Backyard8MP/subStream, /Backyard8MP/SubStream, /Backyard8MP/Substream, /Backyard8MP/substream [2023-10-10T14:34:41Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T14:34:41Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T14:34:41Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 291 (number: 0) [2023-10-10T14:34:43Z DEBUG neolink::common::pushnoti] Push notification details are saved to Some("C:\\Users\\bthorvil\\AppData\\Roaming\\./neolink_token.toml") [2023-10-10T14:34:43Z DEBUG neolink::common::pushnoti] Loaded push notification token [2023-10-10T14:34:43Z DEBUG neolink::common::pushnoti] registration.fcm_token: cGTlKwL3gl4:APA91bEMb7bHT9H1LgpEyeDMEtOJPonU_m2ETzOpJ7IDdZa33pgVrty-AYxqE2psdqJeaG2I4adD9gt-3fa8bQBZa5W2Iw4QleaA6EouJQWeOajA2yKWn_uk1OYeDM5fvYNS1it1VcNH [2023-10-10T14:34:43Z DEBUG neolink::common::pushnoti] push notification UID: ABD959A191B232AA4214F25325952788 [2023-10-10T14:34:43Z DEBUG neolink::common::pushnoti] Push notification Listening [2023-10-10T14:35:04Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T14:35:04Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T14:35:04Z DEBUG neolink::rtsp::factory] Building H264 Pipeline [2023-10-10T14:35:04Z DEBUG neolink::rtsp::factory] buffer_size: 4194304 [2023-10-10T14:35:04Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T14:35:04Z DEBUG neolink::rtsp::stream] New media [2023-10-10T14:35:04Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T14:35:05Z DEBUG neolink::rtsp::factory] Clearing old elements [2023-10-10T14:35:05Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T14:35:05Z DEBUG neolink::rtsp::factory] Building H265 Pipeline [2023-10-10T14:35:05Z DEBUG neolink::rtsp::factory] buffer_size: 11796480 [2023-10-10T14:35:05Z DEBUG neolink::rtsp::factory] Building Aac pipeline [2023-10-10T14:35:05Z DEBUG neolink::rtsp::stream] New media [2023-10-10T14:35:05Z DEBUG neolink::rtsp::stream] Backyard8MP: Number of rtsp clients: 1 [2023-10-10T14:35:43Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:43Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:45Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:49Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:50Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:54Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:55Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:35:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:55Z WARN neolink::common::camthread] Connection Lost: Timed out waiting for camera ping reply Caused by: deadline has elapsed [2023-10-10T14:35:55Z INFO neolink::common::camthread] Attempt reconnect in 50ms [2023-10-10T14:35:55Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:35:55Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:35:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:59Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:59Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:35:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:35:59Z DEBUG neolink_core::bc_protocol::connection::bcconn] BcConnection::shutdown Cancel [2023-10-10T14:35:59Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:35:59Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:35:59Z INFO neolink::common::camthread] Attempt reconnect in 100ms [2023-10-10T14:35:59Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:35:59Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:03Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:03Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:03Z INFO neolink::common::camthread] Attempt reconnect in 200ms [2023-10-10T14:36:04Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:04Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:06Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:06Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:07Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:07Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:08Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:08Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:08Z INFO neolink::common::camthread] Attempt reconnect in 400ms [2023-10-10T14:36:08Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:08Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:08Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:08Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:09Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:09Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:10Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:10Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:11Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:11Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:12Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:12Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:12Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:12Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:12Z INFO neolink::common::camthread] Attempt reconnect in 800ms [2023-10-10T14:36:13Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:13Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:13Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:13Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:14Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:14Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:15Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:15Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:15Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:15Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:16Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:16Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:17Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:17Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:17Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:17Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:17Z INFO neolink::common::camthread] Attempt reconnect in 1.6s [2023-10-10T14:36:18Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:18Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:19Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:19Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:19Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:19Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:20Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:20Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:21Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:21Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:22Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:22Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:23Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:23Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:23Z INFO neolink::common::camthread] Attempt reconnect in 3.2s [2023-10-10T14:36:23Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:23Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:24Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:24Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:25Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:25Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:26Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:26Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:26Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:26Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:27Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:27Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:28Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:28Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:29Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:29Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:30Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:30Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:30Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:36:30Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:30Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:31Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:31Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:31Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:31Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:32Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:32Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:33Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:33Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:34Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:34Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:35Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:35Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:35Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:35Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:36Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:36Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:37Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:37Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:38Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:38Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:39Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:39Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:39Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:36:39Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:39Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:40Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:40Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:41Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:41Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:42Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:42Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:43Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:43Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:44Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:44Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:44Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:44Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:45Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:45Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:47Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:47Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:36:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:48Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:48Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:48Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:36:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:53Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:36:53Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:36:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:57Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:36:57Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:36:57Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:36:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:36:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:02Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:02Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:03Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:03Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:06Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:06Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:06Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:06Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:06Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:07Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:07Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:08Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:08Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:09Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:09Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:10Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:10Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:11Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:11Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:11Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:11Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:12Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:12Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:13Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:13Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:14Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:14Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:15Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:15Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:15Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:15Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:15Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:16Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:16Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:17Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:17Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:18Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:18Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:19Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:19Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:19Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:19Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:20Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:20Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:20Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:20Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:21Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:21Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:22Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:22Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:24Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:24Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:24Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:24Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:24Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:25Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:25Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:26Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:26Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:27Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:27Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:28Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:28Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:29Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:29Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:29Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:29Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:30Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:30Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:31Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:31Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:32Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:32Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:33Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:33Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:33Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:33Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:33Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:34Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:34Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:35Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:35Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:35Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:35Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:36Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:36Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:37Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:37Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:38Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:38Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:38Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:38Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:39Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:39Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:40Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:40Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:41Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:41Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:42Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:42Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:42Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:42Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:42Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:43Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:43Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:44Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:44Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:45Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:45Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:46Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:47Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:47Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:47Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:48Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:49Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:50Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:51Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:51Z DEBUG neolink::common::streamthread] Watchdog kicking the stream [2023-10-10T14:37:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:51Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:51Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:37:51Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:37:51Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:37:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:52Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:53Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:54Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:55Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:56Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:56Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:37:56Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:37:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:57Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:58Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:37:59Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:00Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:00Z INFO neolink_core::bc_protocol] Backyard8MP: Discovery failed [2023-10-10T14:38:00Z WARN neolink::common::camthread] Connection Lost: Failed to connect to camera Backyard8MP at Address: 192.168.0.13 on channel 0 Caused by: Cannot contact camera at given address [2023-10-10T14:38:00Z INFO neolink::common::camthread] Attempt reconnect in 5s [2023-10-10T14:38:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:01Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:02Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:03Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:04Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:05Z DEBUG neolink::rtsp::stream] Inserting Skip Frame [2023-10-10T14:38:05Z INFO neolink::utils] Backyard8MP: Connecting to camera at Address: 192.168.0.13 [2023-10-10T14:38:05Z INFO neolink_core::bc_protocol] Backyard8MP: Trying TCP discovery [2023-10-10T14:38:05Z INFO neolink_core::bc_protocol] Backyard8MP: TCP Discovery success at 192.168.0.13:9000 [2023-10-10T14:38:05Z INFO neolink::utils] Backyard8MP: Logging in [2023-10-10T14:38:05Z DEBUG neolink_core::bc_protocol::login] Populating abilities [2023-10-10T14:38:05Z DEBUG neolink_core::bc_protocol::abilityinfo] Abilities: admingeneral_rw, norm_rw, version_ro, uid_ro, autoReboot_rw, restore_rw, reboot_rw, shutdown_rw, dst_rw, log_ro, performance_ro, upgrade_rw, export_rw, import_rw, bootPwd_rwport_rw, dns_rw, email_rw, ftp_rw, ftpSchedule_rw, ipFilter_rw, localLink_rw, pppoe_rw, upnp_rw, ntp_rw, netStatus_rw, ptop_rw, autontp_rw0motion_rw0ispBasic_rw, ispAdvance_rw, ledState_rwuser_rw, userOnline_rw, bootPwd_rwcontrol_rw, preset_rw, cruise_rw, track_rw, decoder_rw, ptzInfo_ro0preview_rw, compress_rw, snap_rw, rtsp_rw, streamTable_ro [2023-10-10T14:38:05Z INFO neolink::utils] Backyard8MP: Connected and logged in [2023-10-10T14:38:05Z INFO neolink::common::camthread] Backyard8MP: Camera time is already set: 2023-10-10 9:38:06.0 +06:00:00 [2023-10-10T14:38:05Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:38:05Z DEBUG neolink::common::streamthread] Running Stream Instance Task [2023-10-10T14:38:06Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 78 (number: 0) [2023-10-10T14:38:06Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 79 (number: 0) [2023-10-10T14:38:06Z DEBUG neolink_core::bc_protocol::connection::bcconn] Ignoring uninteresting message id 291 (number: 0) ^C ```
martorell-jpg commented 6 months ago

Updated build coz of typo

Hello, I have the exact same issue under the latest release, but this build's link the expired. Would you be able to link either a Windows build that doesn't have the pipeline issue, or a Linux one that doesn't end up on a memory leak?

I'm afraid I cannot set up a cron job or something to automatically restart the process in any OS, because my only NVR, a Lorex 4k one, randomly deletes RTSP channels after they go down, no matter what I do, so in order to minimize the manual labour of remapping the cannels every day, I'd like Reolink to be constantly running.

Thank you very much in advance.

QuantumEntangledAndy commented 5 months ago

@martorell-jpg memory leak should be fixed in master now and on next release. Could you test one of those and open a new issue about memory leak (or post on one of the issues actually on the memory leak where we have active discussion)

I am closing this for inactivity and because the code based has changed a lot since this issue