Search found 25 matches
- Wed Dec 07, 2022 12:55 pm
- Forum: ZoneMinder Hints & Tips
- Topic: Dealing with IP Cam Live streams
- Replies: 0
- Views: 18965
Dealing with IP Cam Live streams
This is a weird requirement I'm trying to achieve with ZM, but here we go I have a public streaming based on IP Cam Live https://www.ipcamlive.com/62a77f39855df I'm trying to pick the m3u8 stream and monitor and record it on my server. But obviously, they are using an auth code that changes ...
- Fri Apr 23, 2021 7:34 am
- Forum: Hardware Compatibility List
- Topic: Checking all the Android App with RTSP server
- Replies: 5
- Views: 23376
Re: Checking all the Android App with RTSP server
Updated with new conclusions
- Sat Apr 17, 2021 8:37 pm
- Forum: ZoneMinder 1.35.x Development Branch
- Topic: [SOLVED] How can I save audio
- Replies: 0
- Views: 1751
[SOLVED] How can I save audio
*** SOLVED: I did not see this section! Whether to store the audio stream when saving an event. How can I save audio with the new 1.35 interface? It used to be in the same tab as Passthrough, but I cannot find it I'm recording through a RTSP Camera Passthrough stream which seends AAC encoded audio.
- Fri Apr 02, 2021 9:13 pm
- Forum: ZoneMinder 1.34.x
- Topic: Timestamps in passthrough mode
- Replies: 1
- Views: 1737
Timestamps in passthrough mode
If I set pass-through recording for the cam, Zoneminder cannot embed any more the timestamps?
- Mon Mar 22, 2021 10:40 am
- Forum: Hardware Compatibility List
- Topic: Checking all the Android App with RTSP server
- Replies: 5
- Views: 23376
Re: Checking all the Android App with RTSP server
Updated with CamON Live Streaming experience.
- Mon Mar 22, 2021 10:29 am
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
- Sat Mar 20, 2021 8:36 pm
- Forum: Hardware Compatibility List
- Topic: Checking all the Android App with RTSP server
- Replies: 5
- Views: 23376
Checking all the Android App with RTSP server
I've been testing so far many apps but any of them are stable enough or have enough functionality 1. RTSP Camera Server : https://play.google.com/store/apps/details?id=com.miv.rtspcamera&hl=en&gl=US Doesn't provide RTSP auth! Useless 2. VXG RTSP Server : https://play.google.com/store/apps/details?id ...
- Sat Mar 20, 2021 3:40 pm
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
Re: Making rounding on Event Length optional
I think I've found the issue I'm using Ubuntu 20.04 focal but 1.34 releases doesn't have focal distro files; therefore it fails when picking them and copying them for compilation process This is legit since the logical understanding here is to use 1.35.X for future development approaches. But since ...
- Sat Mar 20, 2021 2:27 pm
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
Re: Making rounding on Event Length optional
I don’t know the term routes, but suggest looking at cmake -LA I mean, the only path modified is not /etc/zm There are plenty of other paths switched like tmp dirs and others. Basically I have an installation based on the latest Ubuntu PPA and I just want to recompile maintaining the same paths. ...
- Sat Mar 20, 2021 1:57 pm
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
Re: Making rounding on Event Length optional
What about the other routes?
I see that the ubuntu1504_cmake rules do this by default, but I'm not sure how can I force load them on cmake? (have not use cmake in the past)
- Sat Mar 20, 2021 12:57 pm
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
Re: Making rounding on Event Length optional
I'm not a coding grand master, but as expected, this was the code hindering my issue... That "rounding" thing was making things not match what I expected from a "Length" variable. I've recompiled from sources just removing this (i've optinally set the MOCORD since I'm not using it, I could have ...
- Sat Mar 20, 2021 12:50 pm
- Forum: ZoneMinder 1.34.x
- Topic: [SOLVED] Is Section Length parameter a broken functionality?
- Replies: 4
- Views: 1950
- Sat Mar 20, 2021 10:28 am
- Forum: Feature Requests
- Topic: [MERGED] Making rounding on Event Length optional
- Replies: 8
- Views: 28881
[MERGED] Making rounding on Event Length optional
According to my research based on this thread: https://forums.zoneminder.com/viewtopic.php?f=40&t=30598 I've noticed that according to the code, Events on continuous recording are saved on a rounding basis for function RECORD exclusively (this can be bypassed in the Motion Record alternative). Not ...
- Fri Mar 19, 2021 7:04 pm
- Forum: ZoneMinder 1.34.x
- Topic: [SOLVED] Is Section Length parameter a broken functionality?
- Replies: 4
- Views: 1950
Re: Section Lenght wrong?
I'm checking the code in zm_monitor.cpp and this has exploded my mind In the line 1513 there is a conditional that doesn't make any sense: ! ( timestamp->tv_sec % section_length ) Why? Why the timestamp has to be a modulus of section_length???? It doesn't make any sense. As long as this condition is ...
- Fri Mar 19, 2021 5:32 pm
- Forum: ZoneMinder 1.34.x
- Topic: [SOLVED] Is Section Length parameter a broken functionality?
- Replies: 4
- Views: 1950
Re: Section Lenght wrong?
Interesting approach. I'm not sure how to solve this. It's extremely weird. For example when I set up 2 minutes, sections where like 11:01:36am to 11:04:00am then 11:04:00am to 11:06:00am the first section had to forcefully do the extra 24 seconds to round up the first 2 minutes. This is obviously ...