Raspbery Pi2 Camera Monitor w/Rpisurv

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
Those loglines you are showing are normal loglines, no errors. Is that all you are seeing?
 

kasperskie

n3wb
Joined
Jan 2, 2016
Messages
25
Reaction score
1
Tried rpisurv v2.0 and like it very much ...

One thing I noticed is that when I have a screen with 4 cams and one cam disconnects abruptly due to a crash / sudden power off then the screen update which tries to redraw all four camera streams again might sometimes fail to properly display the three other cams.

This seems to be an issue with a race condition.

In the example below I use a config with the default "disable_probing_for_all_streams: False" and I have just killed the rtsp stream used by screen1_cam_stream4. The screen1_cam_stream1 and screen1_cam_stream2 streams will now indefinitely show "connecting to camera.." ..

Code:
2018/12/15 17:25:00 - l_default - DEBUG - ScreenManager:  update_connectable_camera_streams, disable_probing_for_all_streams is off for this screen, so using probes screen1
2018/12/15 17:25:00 - l_default - DEBUG - Screen: screen1 Connectable camera streams changed from 4 to 3 or we change from previous_cached value: False to current cached value: False, screen: screen1 needs update/redraw
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream1 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream2
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream2 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream3
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream3 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream4
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream4 is 1
2018/12/15 17:25:00 - l_default - DEBUG - Screen: screen1 number of fields= 3
2018/12/15 17:25:00 - l_default - DEBUG - blanking the screen
....
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Worker from screen1_cam_stream1 is still alive not starting new worker
...
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Worker from screen1_cam_stream2 is still alive not starting new worker
_cam_stream3
Problem seems to be that the actual stop of the worker threads for the cams 1 & 2 on screen1 however takes place slightly later in time which should not happen :

Code:
2018/12/15 17:25:01 - core.worker - DEBUG - This stream screen1_cam_stream1 is about to be stopped
2018/12/15 17:25:01 - core.worker - INFO - This stream screen1_cam_stream1 has been stopped

2018/12/15 17:25:01 - core.worker - DEBUG - This stream screen1_cam_stream2 is about to be stopped
2018/12/15 17:25:01 - core.worker - INFO - This stream screen1_cam_stream2 has been stopped
Rpisurv doesn't notice anymore now that the omxplayer instances have been stopped so this causes the 'connecting to camera..' problem.

A quick dirty fix is to add a time.sleep(2) in at least one place in the /usr/local/bin/rpisurv/core/screen.py :

Code:
   def update_screen(self):

....

            #Stop all running streams only when some streams are not connectable
            if cmp(self.connectable_camera_streams, self.previous_connectable_camera_streams) != 0 or len( self.previous_connectable_camera_streams) == 0:
                for cam_stream_to_stop in self.cam_streams_to_stop:
                    cam_stream_to_stop.stop_stream()
                time.sleep(2)
I didn't verify whether the following is also really needed, but I simply also added the same sleep here as well:

Code:
    def destroy(self):
        logger.debug("Screen: Destroying screen: " + self.name)

        self.destroy_all_placeholder()
        for cam_stream_to_stop in self.previous_connectable_camera_streams:
            cam_stream_to_stop.stop_stream()
        time.sleep(2)
 
Last edited:

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
Hi,

Thanks for reporting this race condition. I could not simulate it myself, because my worker streams are always stopped quite fast. But when worker streams have some delay during stopping, then it can happen that you are running into this problem. I will add a fix when I find the time.
 

nats

Getting the hang of it
Joined
Oct 22, 2016
Messages
47
Reaction score
40
This is awesome. I've used pi's and python to prototype some pretty complex situations so have some experience with the stack. How can one contribute to the project? id did not see anything about it in github.
 

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
This is awesome. I've used pi's and python to prototype some pretty complex situations so have some experience with the stack. How can one contribute to the project? id did not see anything about it in github.
You can just do a pull requests. If the changes are big, we can discuss going forward on facebook, git issue, ..
 

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
Tried rpisurv v2.0 and like it very much ...

One thing I noticed is that when I have a screen with 4 cams and one cam disconnects abruptly due to a crash / sudden power off then the screen update which tries to redraw all four camera streams again might sometimes fail to properly display the three other cams.

This seems to be an issue with a race condition.

In the example below I use a config with the default "disable_probing_for_all_streams: False" and I have just killed the rtsp stream used by screen1_cam_stream4. The screen1_cam_stream1 and screen1_cam_stream2 streams will now indefinitely show "connecting to camera.." ..

Code:
2018/12/15 17:25:00 - l_default - DEBUG - ScreenManager:  update_connectable_camera_streams, disable_probing_for_all_streams is off for this screen, so using probes screen1
2018/12/15 17:25:00 - l_default - DEBUG - Screen: screen1 Connectable camera streams changed from 4 to 3 or we change from previous_cached value: False to current cached value: False, screen: screen1 needs update/redraw
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream1 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream2
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream2 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream3
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream3 is 1
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Stop stream screen1_cam_stream4
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: MAIN Value of stopworker for screen1_cam_stream4 is 1
2018/12/15 17:25:00 - l_default - DEBUG - Screen: screen1 number of fields= 3
2018/12/15 17:25:00 - l_default - DEBUG - blanking the screen
....
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Worker from screen1_cam_stream1 is still alive not starting new worker
...
2018/12/15 17:25:00 - l_default - DEBUG - CameraStream: Worker from screen1_cam_stream2 is still alive not starting new worker
_cam_stream3
Problem seems to be that the actual stop of the worker threads for the cams 1 & 2 on screen1 however takes place slightly later in time which should not happen :

Code:
2018/12/15 17:25:01 - core.worker - DEBUG - This stream screen1_cam_stream1 is about to be stopped
2018/12/15 17:25:01 - core.worker - INFO - This stream screen1_cam_stream1 has been stopped

2018/12/15 17:25:01 - core.worker - DEBUG - This stream screen1_cam_stream2 is about to be stopped
2018/12/15 17:25:01 - core.worker - INFO - This stream screen1_cam_stream2 has been stopped
Rpisurv doesn't notice anymore now that the omxplayer instances have been stopped so this causes the 'connecting to camera..' problem.

A quick dirty fix is to add a time.sleep(2) in at least one place in the /usr/local/bin/rpisurv/core/screen.py :

Code:
   def update_screen(self):

....

            #Stop all running streams only when some streams are not connectable
            if cmp(self.connectable_camera_streams, self.previous_connectable_camera_streams) != 0 or len( self.previous_connectable_camera_streams) == 0:
                for cam_stream_to_stop in self.cam_streams_to_stop:
                    cam_stream_to_stop.stop_stream()
                time.sleep(2)
I didn't verify whether the following is also really needed, but I simply also added the same sleep here as well:

Code:
    def destroy(self):
        logger.debug("Screen: Destroying screen: " + self.name)

        self.destroy_all_placeholder()
        for cam_stream_to_stop in self.previous_connectable_camera_streams:
            cam_stream_to_stop.stop_stream()
        time.sleep(2)

Should be fixed in Fix for https://github.com/SvenVD/rpisurv/issues/84 · SvenVD/rpisurv@13f74bb

Can you try the fixed version?
Thanks
 
Joined
Dec 30, 2018
Messages
3
Reaction score
0
Location
Vancouver, BC
Having a few issues with my camera setup so hoping for some help.
- I have a single camera running on RPI3 which is connected via PowerLine Adaptor. I was using Wifi before and it kept going to "No Camera Available" or "Connecting". If i tried the stream in VLC, it worked just fine. So wasn't sure if it was a connection issue or not. Anyways once i put int he PowerLine Adaptor, i am still having the same issue. When in reboot the pi, it works for a bit and then goes back to "Connecting". I don't think its a connection issue, so hoping for some help. Not sure how i can view the status info in command line or via putty. Also on a side note, is there a way to bring command line back up with the camera's running. One thing i do want to mention is the monitor is 1680x1050 whereas, the stream is set to 1920x1080. I thought the overscan could handle this, but maybe that is the problem ?
- I had an old PI B+ that i was trying to install v2 on, but not sure what link i use for gitclone to get it to work. Sorry a linux noob, so trying to learn.
 

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
One thing i do want to mention is the monitor is 1680x1050 whereas, the stream is set to 1920x1080.
I have had issues with this before, rasberrypi hardware limitation I guess. Please lower the stream resolution or use a higher res monitor. If that doesn't fix it. Then I need some logging ( Can you show me the log of rpisurv in /var/log/daemon.log and the main.log in /usr/local/bin/rpisurv/logs/ )
 
Joined
Dec 30, 2018
Messages
3
Reaction score
0
Location
Vancouver, BC
See attached log file. I had stopped using the RPI for a few months because of the disconnect.

How do i go about lowering the stream Res ? In the Survellince.yml file ?

Looks like i am running out of memory ?

GPU_Mem was set at 512 before. I changed it to 256 today as i was only running one camera.

Code:
2018/12/30 16:10:49 - l_default - DEBUG - Free gpu memory value is 192
2018/12/30 16:10:49 - l_default - DEBUG - Free memory in bytes: 192.0
2018/12/30 16:10:49 - l_default - ERROR - Free gpu mem is 192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:10:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:11:14 - l_default - DEBUG - stats_counter is 568. Only sending every 40
2018/12/30 16:11:14 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:11:14 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:11:14 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:11:39 - l_default - DEBUG - stats_counter is 569. Only sending every 40
2018/12/30 16:11:39 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:11:39 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:11:39 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:11:39 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:12:05 - l_default - DEBUG - stats_counter is 570. Only sending every 40
2018/12/30 16:12:05 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:12:05 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:12:05 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:12:30 - l_default - DEBUG - stats_counter is 571. Only sending every 40
2018/12/30 16:12:30 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:12:30 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:12:30 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:12:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:12:55 - l_default - DEBUG - stats_counter is 572. Only sending every 40
2018/12/30 16:12:55 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:12:55 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:12:55 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:13:20 - l_default - DEBUG - stats_counter is 573. Only sending every 40
2018/12/30 16:13:20 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 16:13:20 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 16:13:20 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:13:20 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:13:45 - l_default - DEBUG - stats_counter is 574. Only sending every 40
2018/12/30 16:13:45 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:13:45 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:13:45 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:13:45 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:14:10 - l_default - DEBUG - stats_counter is 575. Only sending every 40
2018/12/30 16:14:10 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:14:10 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:14:10 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:14:10 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:14:35 - l_default - DEBUG - stats_counter is 576. Only sending every 40
2018/12/30 16:14:35 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:14:35 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:14:35 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:14:35 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:15:00 - l_default - DEBUG - stats_counter is 577. Only sending every 40
2018/12/30 16:15:00 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:15:00 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:15:01 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:15:26 - l_default - DEBUG - stats_counter is 578. Only sending every 40
2018/12/30 16:15:26 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:15:26 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:15:26 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:15:51 - l_default - DEBUG - stats_counter is 579. Only sending every 40
2018/12/30 16:15:51 - l_default - DEBUG - Free gpu memory value is 608
2018/12/30 16:15:51 - l_default - DEBUG - Free memory in bytes: 608.0
2018/12/30 16:15:51 - l_default - ERROR - Free gpu mem is 608.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:15:51 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:16:16 - l_default - DEBUG - stats_counter is 580. Only sending every 40
2018/12/30 16:16:16 - l_default - DEBUG - Free gpu memory value is 992
2018/12/30 16:16:16 - l_default - DEBUG - Free memory in bytes: 992.0
2018/12/30 16:16:16 - l_default - ERROR - Free gpu mem is 992.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:16:16 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:16:41 - l_default - DEBUG - stats_counter is 581. Only sending every 40
2018/12/30 16:16:41 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:16:41 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:16:41 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:16:41 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:17:06 - l_default - DEBUG - stats_counter is 582. Only sending every 40
2018/12/30 16:17:06 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:17:06 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:17:06 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:17:31 - l_default - DEBUG - stats_counter is 583. Only sending every 40
2018/12/30 16:17:31 - l_default - DEBUG - Free gpu memory value is 160
2018/12/30 16:17:31 - l_default - DEBUG - Free memory in bytes: 160.0
2018/12/30 16:17:31 - l_default - ERROR - Free gpu mem is 160.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:17:31 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:17:56 - l_default - DEBUG - stats_counter is 584. Only sending every 40
2018/12/30 16:17:56 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:17:56 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:17:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:18:22 - l_default - DEBUG - stats_counter is 585. Only sending every 40
2018/12/30 16:18:22 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:18:22 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:18:22 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:18:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:18:47 - l_default - DEBUG - stats_counter is 586. Only sending every 40
2018/12/30 16:18:47 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:18:47 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:18:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:19:12 - l_default - DEBUG - stats_counter is 587. Only sending every 40
2018/12/30 16:19:12 - l_default - DEBUG - Free gpu memory value is 864
2018/12/30 16:19:12 - l_default - DEBUG - Free memory in bytes: 864.0
2018/12/30 16:19:12 - l_default - ERROR - Free gpu mem is 864.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:19:12 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:19:37 - l_default - DEBUG - stats_counter is 588. Only sending every 40
2018/12/30 16:19:37 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:19:37 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:19:37 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:19:37 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:20:02 - l_default - DEBUG - stats_counter is 589. Only sending every 40
2018/12/30 16:20:02 - l_default - DEBUG - Free gpu memory value is 704
2018/12/30 16:20:02 - l_default - DEBUG - Free memory in bytes: 704.0
2018/12/30 16:20:02 - l_default - ERROR - Free gpu mem is 704.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:20:02 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:20:27 - l_default - DEBUG - stats_counter is 590. Only sending every 40
2018/12/30 16:20:27 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:20:27 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:20:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:20:52 - l_default - DEBUG - stats_counter is 591. Only sending every 40
2018/12/30 16:20:52 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:20:52 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:20:52 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:20:53 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:21:18 - l_default - DEBUG - stats_counter is 592. Only sending every 40
2018/12/30 16:21:18 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:21:18 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:21:18 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:21:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:21:43 - l_default - DEBUG - stats_counter is 593. Only sending every 40
2018/12/30 16:21:43 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 16:21:43 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 16:21:43 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:21:43 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:22:08 - l_default - DEBUG - stats_counter is 594. Only sending every 40
2018/12/30 16:22:08 - l_default - DEBUG - Free gpu memory value is 512
2018/12/30 16:22:08 - l_default - DEBUG - Free memory in bytes: 512.0
2018/12/30 16:22:08 - l_default - ERROR - Free gpu mem is 512.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:22:08 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:22:33 - l_default - DEBUG - stats_counter is 595. Only sending every 40
2018/12/30 16:22:33 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:22:33 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:22:33 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:22:58 - l_default - DEBUG - stats_counter is 596. Only sending every 40
2018/12/30 16:22:58 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:22:58 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:22:58 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:22:58 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:23:23 - l_default - DEBUG - stats_counter is 597. Only sending every 40
2018/12/30 16:23:23 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 16:23:23 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 16:23:23 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:23:24 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:23:49 - l_default - DEBUG - stats_counter is 598. Only sending every 40
2018/12/30 16:23:49 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:23:49 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:23:49 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:23:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:24:14 - l_default - DEBUG - stats_counter is 599. Only sending every 40
2018/12/30 16:24:14 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:24:14 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:24:14 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:24:14 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:24:39 - l_default - DEBUG - Current time detected is 1546215879.47 runtime calculated is 15269
2018/12/30 16:24:39 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 16:24:39 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 16:24:39 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 16:24:39 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:24:39 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:25:04 - l_default - DEBUG - stats_counter is 601. Only sending every 40
2018/12/30 16:25:04 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:25:04 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:25:04 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:25:04 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:25:29 - l_default - DEBUG - stats_counter is 602. Only sending every 40
2018/12/30 16:25:29 - l_default - DEBUG - Free gpu memory value is 416
2018/12/30 16:25:29 - l_default - DEBUG - Free memory in bytes: 416.0
2018/12/30 16:25:29 - l_default - ERROR - Free gpu mem is 416.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:25:29 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:25:54 - l_default - DEBUG - stats_counter is 603. Only sending every 40
2018/12/30 16:25:54 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:25:54 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:25:54 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:26:20 - l_default - DEBUG - stats_counter is 604. Only sending every 40
2018/12/30 16:26:20 - l_default - DEBUG - Free gpu memory value is 224
2018/12/30 16:26:20 - l_default - DEBUG - Free memory in bytes: 224.0
2018/12/30 16:26:20 - l_default - ERROR - Free gpu mem is 224.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:26:20 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:26:45 - l_default - DEBUG - stats_counter is 605. Only sending every 40
2018/12/30 16:26:45 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:26:45 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:26:45 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:27:10 - l_default - DEBUG - stats_counter is 606. Only sending every 40
2018/12/30 16:27:10 - l_default - DEBUG - Free gpu memory value is 961
2018/12/30 16:27:10 - l_default - DEBUG - Free memory in bytes: 961.0
2018/12/30 16:27:10 - l_default - ERROR - Free gpu mem is 961.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:27:10 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:27:35 - l_default - DEBUG - stats_counter is 607. Only sending every 40
2018/12/30 16:27:35 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:27:35 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:27:35 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:28:00 - l_default - DEBUG - stats_counter is 608. Only sending every 40
2018/12/30 16:28:00 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:28:00 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:28:00 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:28:25 - l_default - DEBUG - stats_counter is 609. Only sending every 40
2018/12/30 16:28:25 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 16:28:25 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 16:28:25 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:28:25 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:28:50 - l_default - DEBUG - stats_counter is 610. Only sending every 40
2018/12/30 16:28:50 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:28:50 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:28:50 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:29:15 - l_default - DEBUG - stats_counter is 611. Only sending every 40
2018/12/30 16:29:15 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 16:29:15 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 16:29:15 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:29:15 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:29:41 - l_default - DEBUG - stats_counter is 612. Only sending every 40
2018/12/30 16:29:41 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 16:29:41 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 16:29:41 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:29:41 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:30:06 - l_default - DEBUG - stats_counter is 613. Only sending every 40
2018/12/30 16:30:06 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:30:06 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:30:06 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:30:31 - l_default - DEBUG - stats_counter is 614. Only sending every 40
2018/12/30 16:30:31 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:30:31 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:30:31 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:30:56 - l_default - DEBUG - stats_counter is 615. Only sending every 40
2018/12/30 16:30:56 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 16:30:56 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 16:30:56 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:30:56 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:31:21 - l_default - DEBUG - stats_counter is 616. Only sending every 40
2018/12/30 16:31:21 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:31:21 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:31:21 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:31:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:31:46 - l_default - DEBUG - stats_counter is 617. Only sending every 40
2018/12/30 16:31:46 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:31:46 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:31:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:32:11 - l_default - DEBUG - stats_counter is 618. Only sending every 40
2018/12/30 16:32:11 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:32:11 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:32:11 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:32:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:32:36 - l_default - DEBUG - stats_counter is 619. Only sending every 40
2018/12/30 16:32:36 - l_default - DEBUG - Free gpu memory value is 896
2018/12/30 16:32:37 - l_default - DEBUG - Free memory in bytes: 896.0
2018/12/30 16:32:37 - l_default - ERROR - Free gpu mem is 896.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:32:37 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:33:02 - l_default - DEBUG - stats_counter is 620. Only sending every 40
2018/12/30 16:33:02 - l_default - DEBUG - Free gpu memory value is 192
2018/12/30 16:33:02 - l_default - DEBUG - Free memory in bytes: 192.0
2018/12/30 16:33:02 - l_default - ERROR - Free gpu mem is 192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:33:02 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:33:27 - l_default - DEBUG - stats_counter is 621. Only sending every 40
2018/12/30 16:33:27 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:33:27 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:33:27 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:33:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:33:52 - l_default - DEBUG - stats_counter is 622. Only sending every 40
2018/12/30 16:33:52 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:33:52 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:33:52 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:33:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:34:17 - l_default - DEBUG - stats_counter is 623. Only sending every 40
2018/12/30 16:34:17 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:34:17 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:34:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:34:42 - l_default - DEBUG - stats_counter is 624. Only sending every 40
2018/12/30 16:34:42 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:34:42 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:34:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:35:07 - l_default - DEBUG - stats_counter is 625. Only sending every 40
2018/12/30 16:35:07 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:35:07 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:35:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:35:32 - l_default - DEBUG - stats_counter is 626. Only sending every 40
2018/12/30 16:35:32 - l_default - DEBUG - Free gpu memory value is 64
2018/12/30 16:35:32 - l_default - DEBUG - Free memory in bytes: 64.0
2018/12/30 16:35:32 - l_default - ERROR - Free gpu mem is 64.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:35:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:35:57 - l_default - DEBUG - stats_counter is 627. Only sending every 40
2018/12/30 16:35:58 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:35:58 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:35:58 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:35:58 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:36:23 - l_default - DEBUG - stats_counter is 628. Only sending every 40
2018/12/30 16:36:23 - l_default - DEBUG - Free gpu memory value is 640
2018/12/30 16:36:23 - l_default - DEBUG - Free memory in bytes: 640.0
2018/12/30 16:36:23 - l_default - ERROR - Free gpu mem is 640.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:36:23 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:36:48 - l_default - DEBUG - stats_counter is 629. Only sending every 40
2018/12/30 16:36:48 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 16:36:48 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 16:36:48 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:36:48 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:37:13 - l_default - DEBUG - stats_counter is 630. Only sending every 40
2018/12/30 16:37:13 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:37:13 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:37:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:37:38 - l_default - DEBUG - stats_counter is 631. Only sending every 40
2018/12/30 16:37:38 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:37:38 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:37:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:38:03 - l_default - DEBUG - stats_counter is 632. Only sending every 40
2018/12/30 16:38:03 - l_default - DEBUG - Free gpu memory value is 640
2018/12/30 16:38:03 - l_default - DEBUG - Free memory in bytes: 640.0
2018/12/30 16:38:03 - l_default - ERROR - Free gpu mem is 640.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:38:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:38:28 - l_default - DEBUG - stats_counter is 633. Only sending every 40
2018/12/30 16:38:28 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:38:28 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:38:28 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:38:53 - l_default - DEBUG - stats_counter is 634. Only sending every 40
2018/12/30 16:38:53 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:38:53 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:38:54 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:39:19 - l_default - DEBUG - stats_counter is 635. Only sending every 40
2018/12/30 16:39:19 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:39:19 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:39:19 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:39:19 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:39:44 - l_default - DEBUG - stats_counter is 636. Only sending every 40
2018/12/30 16:39:44 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:39:44 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:39:44 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:40:09 - l_default - DEBUG - stats_counter is 637. Only sending every 40
2018/12/30 16:40:09 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:40:09 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:40:09 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:40:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:40:34 - l_default - DEBUG - stats_counter is 638. Only sending every 40
2018/12/30 16:40:34 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:40:34 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:40:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:40:59 - l_default - DEBUG - stats_counter is 639. Only sending every 40
2018/12/30 16:40:59 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:40:59 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:40:59 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:41:24 - l_default - DEBUG - Current time detected is 1546216884.69 runtime calculated is 16274
2018/12/30 16:41:24 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 16:41:24 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 16:41:24 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 16:41:24 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:41:24 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:41:49 - l_default - DEBUG - stats_counter is 641. Only sending every 40
2018/12/30 16:41:49 - l_default - DEBUG - Free gpu memory value is 992
2018/12/30 16:41:49 - l_default - DEBUG - Free memory in bytes: 992.0
2018/12/30 16:41:49 - l_default - ERROR - Free gpu mem is 992.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:41:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:42:14 - l_default - DEBUG - stats_counter is 642. Only sending every 40
2018/12/30 16:42:15 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 16:42:15 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 16:42:15 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:42:15 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:42:40 - l_default - DEBUG - stats_counter is 643. Only sending every 40
2018/12/30 16:42:40 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 16:42:40 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 16:42:40 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:42:40 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:43:05 - l_default - DEBUG - stats_counter is 644. Only sending every 40
2018/12/30 16:43:05 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 16:43:05 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 16:43:05 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:43:05 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:43:30 - l_default - DEBUG - stats_counter is 645. Only sending every 40
2018/12/30 16:43:30 - l_default - DEBUG - Free gpu memory value is 64
2018/12/30 16:43:30 - l_default - DEBUG - Free memory in bytes: 64.0
2018/12/30 16:43:30 - l_default - ERROR - Free gpu mem is 64.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:43:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:43:55 - l_default - DEBUG - stats_counter is 646. Only sending every 40
2018/12/30 16:43:55 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:43:55 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:43:55 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:44:21 - l_default - DEBUG - stats_counter is 647. Only sending every 40
2018/12/30 16:44:21 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:44:21 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:44:21 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:44:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:44:46 - l_default - DEBUG - stats_counter is 648. Only sending every 40
2018/12/30 16:44:46 - l_default - DEBUG - Free gpu memory value is 0K
2018/12/30 16:44:46 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:44:46 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:44:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:45:11 - l_default - DEBUG - stats_counter is 649. Only sending every 40
2018/12/30 16:45:11 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 16:45:11 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 16:45:11 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:45:12 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:45:37 - l_default - DEBUG - stats_counter is 650. Only sending every 40
2018/12/30 16:45:37 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:45:37 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:45:37 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:46:02 - l_default - DEBUG - stats_counter is 651. Only sending every 40
2018/12/30 16:46:02 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:46:02 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:46:02 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:46:27 - l_default - DEBUG - stats_counter is 652. Only sending every 40
2018/12/30 16:46:27 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:46:27 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:46:27 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:46:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:46:52 - l_default - DEBUG - stats_counter is 653. Only sending every 40
2018/12/30 16:46:52 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:46:52 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:46:52 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:46:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:47:17 - l_default - DEBUG - stats_counter is 654. Only sending every 40
2018/12/30 16:47:17 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:47:17 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:47:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:47:43 - l_default - DEBUG - stats_counter is 655. Only sending every 40
2018/12/30 16:47:43 - l_default - DEBUG - Free gpu memory value is 480
2018/12/30 16:47:43 - l_default - DEBUG - Free memory in bytes: 480.0
2018/12/30 16:47:43 - l_default - ERROR - Free gpu mem is 480.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:47:43 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:48:08 - l_default - DEBUG - stats_counter is 656. Only sending every 40
2018/12/30 16:48:08 - l_default - DEBUG - Free gpu memory value is 448
2018/12/30 16:48:08 - l_default - DEBUG - Free memory in bytes: 448.0
2018/12/30 16:48:08 - l_default - ERROR - Free gpu mem is 448.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:48:08 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:48:33 - l_default - DEBUG - stats_counter is 657. Only sending every 40
2018/12/30 16:48:33 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 16:48:33 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 16:48:33 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:48:33 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:48:58 - l_default - DEBUG - stats_counter is 658. Only sending every 40
2018/12/30 16:48:58 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:48:58 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:48:58 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:48:58 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:49:23 - l_default - DEBUG - stats_counter is 659. Only sending every 40
2018/12/30 16:49:23 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:49:23 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:49:23 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:49:23 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:49:48 - l_default - DEBUG - stats_counter is 660. Only sending every 40
2018/12/30 16:49:48 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:49:48 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:49:48 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:50:13 - l_default - DEBUG - stats_counter is 661. Only sending every 40
2018/12/30 16:50:13 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:50:13 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:50:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:50:38 - l_default - DEBUG - stats_counter is 662. Only sending every 40
2018/12/30 16:50:38 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:50:38 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:50:39 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:51:04 - l_default - DEBUG - stats_counter is 663. Only sending every 40
2018/12/30 16:51:04 - l_default - DEBUG - Free gpu memory value is 160
2018/12/30 16:51:04 - l_default - DEBUG - Free memory in bytes: 160.0
2018/12/30 16:51:04 - l_default - ERROR - Free gpu mem is 160.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:51:04 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:51:29 - l_default - DEBUG - stats_counter is 664. Only sending every 40
2018/12/30 16:51:29 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:51:29 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:51:29 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:51:29 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:51:54 - l_default - DEBUG - stats_counter is 665. Only sending every 40
2018/12/30 16:51:54 - l_default - DEBUG - Free gpu memory value is 864
2018/12/30 16:51:54 - l_default - DEBUG - Free memory in bytes: 864.0
2018/12/30 16:51:54 - l_default - ERROR - Free gpu mem is 864.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:51:54 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:52:19 - l_default - DEBUG - stats_counter is 666. Only sending every 40
2018/12/30 16:52:19 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:52:19 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:52:19 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:52:44 - l_default - DEBUG - stats_counter is 667. Only sending every 40
2018/12/30 16:52:44 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:52:44 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:52:44 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:53:09 - l_default - DEBUG - stats_counter is 668. Only sending every 40
2018/12/30 16:53:09 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 16:53:09 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 16:53:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:53:34 - l_default - DEBUG - stats_counter is 669. Only sending every 40
2018/12/30 16:53:34 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 16:53:34 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 16:53:34 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:53:36 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 16:53:36 - l_default - DEBUG - Stop stream cam_stream1
2018/12/30 16:53:36 - l_default - DEBUG - MAIN Value of stopworker for cam_stream1 is 1
2018/12/30 16:53:38 - l_default - ERROR - No connectable streams detected
2018/12/30 16:53:38 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 16:53:39 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 16:54:04 - l_default - DEBUG - stats_counter is 670. Only sending every 40
2018/12/30 16:54:04 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 16:54:04 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 16:54:04 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:54:04 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:54:05 - l_default - DEBUG - number of fields= 1
2018/12/30 16:54:05 - l_default - DEBUG - cam stream name =cam_stream1
2018/12/30 16:54:05 - l_default - DEBUG - start stream cam_stream1
2018/12/30 16:54:05 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 16:54:30 - l_default - DEBUG - stats_counter is 671. Only sending every 40
2018/12/30 16:54:30 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:54:30 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:54:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:54:55 - l_default - DEBUG - stats_counter is 672. Only sending every 40
2018/12/30 16:54:56 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 16:54:56 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 16:54:56 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:54:56 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:55:21 - l_default - DEBUG - stats_counter is 673. Only sending every 40
2018/12/30 16:55:21 - l_default - DEBUG - Free gpu memory value is 353
2018/12/30 16:55:21 - l_default - DEBUG - Free memory in bytes: 353.0
2018/12/30 16:55:21 - l_default - ERROR - Free gpu mem is 353.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:55:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:55:46 - l_default - DEBUG - stats_counter is 674. Only sending every 40
2018/12/30 16:55:46 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:55:46 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:55:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:56:11 - l_default - DEBUG - stats_counter is 675. Only sending every 40
2018/12/30 16:56:11 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:56:11 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:56:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:56:36 - l_default - DEBUG - stats_counter is 676. Only sending every 40
2018/12/30 16:56:36 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:56:36 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:56:36 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:57:01 - l_default - DEBUG - stats_counter is 677. Only sending every 40
2018/12/30 16:57:01 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:57:01 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:57:01 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:57:26 - l_default - DEBUG - stats_counter is 678. Only sending every 40
2018/12/30 16:57:26 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:57:26 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:57:26 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:57:51 - l_default - DEBUG - stats_counter is 679. Only sending every 40
2018/12/30 16:57:51 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 16:57:51 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 16:57:51 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:57:51 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:58:16 - l_default - DEBUG - Current time detected is 1546217896.91 runtime calculated is 17286
2018/12/30 16:58:16 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 16:58:16 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:58:16 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:58:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:58:42 - l_default - DEBUG - stats_counter is 681. Only sending every 40
2018/12/30 16:58:42 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:58:42 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:58:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:59:07 - l_default - DEBUG - stats_counter is 682. Only sending every 40
2018/12/30 16:59:07 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 16:59:07 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 16:59:07 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:59:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:59:32 - l_default - DEBUG - stats_counter is 683. Only sending every 40
2018/12/30 16:59:32 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 16:59:32 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 16:59:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 16:59:57 - l_default - DEBUG - stats_counter is 684. Only sending every 40
2018/12/30 16:59:57 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 16:59:57 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 16:59:57 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 16:59:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:00:22 - l_default - DEBUG - stats_counter is 685. Only sending every 40
2018/12/30 17:00:22 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:00:22 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:00:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:00:47 - l_default - DEBUG - stats_counter is 686. Only sending every 40
2018/12/30 17:00:47 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:00:47 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:00:47 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:00:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:01:12 - l_default - DEBUG - stats_counter is 687. Only sending every 40
2018/12/30 17:01:12 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:01:12 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:01:12 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:01:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:01:38 - l_default - DEBUG - stats_counter is 688. Only sending every 40
2018/12/30 17:01:38 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:01:38 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:01:38 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:01:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:02:03 - l_default - DEBUG - stats_counter is 689. Only sending every 40
2018/12/30 17:02:03 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:02:03 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:02:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:02:28 - l_default - DEBUG - stats_counter is 690. Only sending every 40
2018/12/30 17:02:28 - l_default - DEBUG - Free gpu memory value is 512
2018/12/30 17:02:28 - l_default - DEBUG - Free memory in bytes: 512.0
2018/12/30 17:02:28 - l_default - ERROR - Free gpu mem is 512.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:02:28 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:02:53 - l_default - DEBUG - stats_counter is 691. Only sending every 40
2018/12/30 17:02:53 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:02:53 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:02:53 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:03:18 - l_default - DEBUG - stats_counter is 692. Only sending every 40
2018/12/30 17:03:18 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:03:18 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:03:18 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:03:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:03:43 - l_default - DEBUG - stats_counter is 693. Only sending every 40
2018/12/30 17:03:43 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:03:43 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:03:43 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:04:08 - l_default - DEBUG - stats_counter is 694. Only sending every 40
2018/12/30 17:04:08 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:04:08 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:04:08 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:04:33 - l_default - DEBUG - stats_counter is 695. Only sending every 40
2018/12/30 17:04:34 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:04:34 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:04:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:04:49 - l_default - DEBUG - autodetected resolution of['1680', '1050']
2018/12/30 17:04:49 - l_default - DEBUG - nr_of_columns = 2
2018/12/30 17:04:49 - l_default - DEBUG - interval_check_status = 25
2018/12/30 17:04:49 - l_default - DEBUG - camera_streams config option exist, using this one
2018/12/30 17:04:49 - l_default - INFO - Unique id of this installation is 78a3884c7e693c537d49af4e48ff1d443b9cf4f1992dc4f47797dd7fccede92a
2018/12/30 17:04:49 - l_default - DEBUG - Start_time is 1546218289.26
2018/12/30 17:04:49 - l_default - DEBUG - Current time detected is 1546218289.27 runtime calculated is 0
2018/12/30 17:04:49 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:04:49 - l_default - DEBUG - Free gpu memory value is 741M
2018/12/30 17:04:49 - l_default - DEBUG - Free memory in bytes: 776994816.0
2018/12/30 17:04:49 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 17:04:49 - l_default - ERROR - No connectable streams detected
2018/12/30 17:04:49 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 17:04:50 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 17:05:16 - l_default - DEBUG - stats_counter is 1. Only sending every 40
2018/12/30 17:05:16 - l_default - DEBUG - Free gpu memory value is 320
2018/12/30 17:05:16 - l_default - DEBUG - Free memory in bytes: 320.0
2018/12/30 17:05:16 - l_default - ERROR - Free gpu mem is 320.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:05:16 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:05:17 - l_default - DEBUG - number of fields= 1
2018/12/30 17:05:17 - l_default - DEBUG - cam stream name =cam_stream1
2018/12/30 17:05:17 - l_default - DEBUG - start stream cam_stream1
2018/12/30 17:05:17 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 17:05:52 - l_default - DEBUG - stats_counter is 2. Only sending every 40
2018/12/30 17:05:52 - l_default - DEBUG - Free gpu memory value is 832
2018/12/30 17:05:52 - l_default - DEBUG - Free memory in bytes: 832.0
2018/12/30 17:05:52 - l_default - ERROR - Free gpu mem is 832.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:05:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:06:17 - l_default - DEBUG - stats_counter is 3. Only sending every 40
2018/12/30 17:06:17 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:06:17 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:06:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:06:42 - l_default - DEBUG - stats_counter is 4. Only sending every 40
2018/12/30 17:06:42 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:06:42 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:06:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:07:07 - l_default - DEBUG - stats_counter is 5. Only sending every 40
2018/12/30 17:07:07 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:07:07 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:07:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:07:32 - l_default - DEBUG - stats_counter is 6. Only sending every 40
2018/12/30 17:07:32 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:07:32 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:07:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:07:57 - l_default - DEBUG - stats_counter is 7. Only sending every 40
2018/12/30 17:07:57 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:07:57 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:07:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:08:22 - l_default - DEBUG - stats_counter is 8. Only sending every 40
2018/12/30 17:08:22 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 17:08:22 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 17:08:22 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:08:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:08:47 - l_default - DEBUG - stats_counter is 9. Only sending every 40
2018/12/30 17:08:48 - l_default - DEBUG - Free gpu memory value is 576
2018/12/30 17:08:48 - l_default - DEBUG - Free memory in bytes: 576.0
2018/12/30 17:08:48 - l_default - ERROR - Free gpu mem is 576.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:08:48 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:09:13 - l_default - DEBUG - stats_counter is 10. Only sending every 40
2018/12/30 17:09:13 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 17:09:13 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 17:09:13 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:09:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:09:38 - l_default - DEBUG - stats_counter is 11. Only sending every 40
2018/12/30 17:09:38 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:09:38 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:09:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:10:03 - l_default - DEBUG - stats_counter is 12. Only sending every 40
2018/12/30 17:10:04 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:10:04 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:10:04 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:10:29 - l_default - DEBUG - stats_counter is 13. Only sending every 40
2018/12/30 17:10:29 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:10:29 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:10:29 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:10:29 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:10:54 - l_default - DEBUG - stats_counter is 14. Only sending every 40
2018/12/30 17:10:54 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:10:54 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:10:54 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:11:19 - l_default - DEBUG - stats_counter is 15. Only sending every 40
2018/12/30 17:11:19 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:11:19 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:11:19 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:11:44 - l_default - DEBUG - stats_counter is 16. Only sending every 40
2018/12/30 17:11:44 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 17:11:44 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 17:11:44 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:11:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:12:11 - l_default - DEBUG - stats_counter is 17. Only sending every 40
2018/12/30 17:12:11 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 17:12:11 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 17:12:11 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:12:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:12:36 - l_default - DEBUG - stats_counter is 18. Only sending every 40
2018/12/30 17:12:36 - l_default - DEBUG - Free gpu memory value is 709M
2018/12/30 17:12:36 - l_default - DEBUG - Free memory in bytes: 743440384.0
2018/12/30 17:12:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:13:03 - l_default - DEBUG - stats_counter is 19. Only sending every 40
2018/12/30 17:13:03 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 17:13:03 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 17:13:03 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:13:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:13:28 - l_default - DEBUG - stats_counter is 20. Only sending every 40
2018/12/30 17:13:28 - l_default - DEBUG - Free gpu memory value is 741M
2018/12/30 17:13:28 - l_default - DEBUG - Free memory in bytes: 776994816.0
2018/12/30 17:13:29 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:13:54 - l_default - DEBUG - stats_counter is 21. Only sending every 40
2018/12/30 17:13:54 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:13:54 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:13:54 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:13:54 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:14:19 - l_default - DEBUG - stats_counter is 22. Only sending every 40
2018/12/30 17:14:19 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 17:14:19 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 17:14:19 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:14:19 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:14:44 - l_default - DEBUG - stats_counter is 23. Only sending every 40
2018/12/30 17:14:44 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 17:14:44 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 17:14:44 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:14:44 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:15:09 - l_default - DEBUG - stats_counter is 24. Only sending every 40
2018/12/30 17:15:09 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:15:09 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:15:09 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:15:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:15:34 - l_default - DEBUG - stats_counter is 25. Only sending every 40
2018/12/30 17:15:34 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 17:15:34 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 17:15:34 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:15:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:15:59 - l_default - DEBUG - stats_counter is 26. Only sending every 40
2018/12/30 17:16:00 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:16:00 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:16:00 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:16:25 - l_default - DEBUG - stats_counter is 27. Only sending every 40
2018/12/30 17:16:25 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:16:25 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:16:25 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:16:50 - l_default - DEBUG - stats_counter is 28. Only sending every 40
2018/12/30 17:16:50 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:16:50 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:16:50 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:17:15 - l_default - DEBUG - stats_counter is 29. Only sending every 40
2018/12/30 17:17:15 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:17:15 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:17:15 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:17:15 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:17:40 - l_default - DEBUG - stats_counter is 30. Only sending every 40
2018/12/30 17:17:40 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:17:40 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:17:40 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:17:40 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:18:05 - l_default - DEBUG - stats_counter is 31. Only sending every 40
2018/12/30 17:18:05 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:18:05 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:18:05 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:18:30 - l_default - DEBUG - stats_counter is 32. Only sending every 40
2018/12/30 17:18:30 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 17:18:30 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 17:18:30 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:18:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:18:55 - l_default - DEBUG - stats_counter is 33. Only sending every 40
2018/12/30 17:18:55 - l_default - DEBUG - Free gpu memory value is 864
2018/12/30 17:18:55 - l_default - DEBUG - Free memory in bytes: 864.0
2018/12/30 17:18:55 - l_default - ERROR - Free gpu mem is 864.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:18:55 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:19:21 - l_default - DEBUG - stats_counter is 34. Only sending every 40
2018/12/30 17:19:21 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 17:19:21 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 17:19:21 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:19:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:19:46 - l_default - DEBUG - stats_counter is 35. Only sending every 40
2018/12/30 17:19:46 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:19:46 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:19:46 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:19:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:20:11 - l_default - DEBUG - stats_counter is 36. Only sending every 40
2018/12/30 17:20:11 - l_default - DEBUG - Free gpu memory value is 800
2018/12/30 17:20:11 - l_default - DEBUG - Free memory in bytes: 800.0
2018/12/30 17:20:11 - l_default - ERROR - Free gpu mem is 800.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:20:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:20:36 - l_default - DEBUG - stats_counter is 37. Only sending every 40
2018/12/30 17:20:36 - l_default - DEBUG - Free gpu memory value is 0K
2018/12/30 17:20:36 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:20:36 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:20:36 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:21:01 - l_default - DEBUG - stats_counter is 38. Only sending every 40
2018/12/30 17:21:01 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:21:01 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:21:01 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:21:01 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:21:27 - l_default - DEBUG - stats_counter is 39. Only sending every 40
2018/12/30 17:21:27 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:21:27 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:21:27 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:21:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:21:52 - l_default - DEBUG - Current time detected is 1546219312.13 runtime calculated is 1023
2018/12/30 17:21:52 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:21:52 - l_default - DEBUG - Free gpu memory value is 768
2018/12/30 17:21:52 - l_default - DEBUG - Free memory in bytes: 768.0
2018/12/30 17:21:52 - l_default - ERROR - Free gpu mem is 768.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:21:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:22:17 - l_default - DEBUG - stats_counter is 41. Only sending every 40
2018/12/30 17:22:17 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:22:17 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:22:17 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:22:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:22:42 - l_default - DEBUG - stats_counter is 42. Only sending every 40
2018/12/30 17:22:42 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:22:42 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:22:42 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:22:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:23:07 - l_default - DEBUG - stats_counter is 43. Only sending every 40
2018/12/30 17:23:07 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:23:07 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:23:07 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:23:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:23:32 - l_default - DEBUG - stats_counter is 44. Only sending every 40
2018/12/30 17:23:32 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:23:32 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:23:32 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:23:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:23:57 - l_default - DEBUG - stats_counter is 45. Only sending every 40
2018/12/30 17:23:58 - l_default - DEBUG - Free gpu memory value is 0K
2018/12/30 17:23:58 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:23:58 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:23:58 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:24:24 - l_default - DEBUG - stats_counter is 46. Only sending every 40
2018/12/30 17:24:24 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:24:24 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:24:24 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:24:24 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:24:49 - l_default - DEBUG - stats_counter is 47. Only sending every 40
2018/12/30 17:24:49 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:24:49 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:24:49 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:24:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:25:14 - l_default - DEBUG - stats_counter is 48. Only sending every 40
2018/12/30 17:25:14 - l_default - DEBUG - Free gpu memory value is 736
2018/12/30 17:25:14 - l_default - DEBUG - Free memory in bytes: 736.0
2018/12/30 17:25:14 - l_default - ERROR - Free gpu mem is 736.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:25:15 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:25:40 - l_default - DEBUG - stats_counter is 49. Only sending every 40
2018/12/30 17:25:40 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:25:40 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:25:40 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:26:05 - l_default - DEBUG - stats_counter is 50. Only sending every 40
2018/12/30 17:26:05 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 17:26:05 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 17:26:05 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:26:05 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:26:30 - l_default - DEBUG - stats_counter is 51. Only sending every 40
2018/12/30 17:26:30 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:26:30 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:26:30 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:26:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:26:55 - l_default - DEBUG - stats_counter is 52. Only sending every 40
2018/12/30 17:26:56 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:26:56 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:26:56 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:26:56 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:27:21 - l_default - DEBUG - stats_counter is 53. Only sending every 40
2018/12/30 17:27:21 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:27:21 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:27:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:27:46 - l_default - DEBUG - stats_counter is 54. Only sending every 40
2018/12/30 17:27:46 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:27:46 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:27:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:28:11 - l_default - DEBUG - stats_counter is 55. Only sending every 40
2018/12/30 17:28:11 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:28:11 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:28:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:28:36 - l_default - DEBUG - stats_counter is 56. Only sending every 40
2018/12/30 17:28:36 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:28:36 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:28:36 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:29:01 - l_default - DEBUG - stats_counter is 57. Only sending every 40
2018/12/30 17:29:01 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 17:29:01 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 17:29:01 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:29:01 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:29:26 - l_default - DEBUG - stats_counter is 58. Only sending every 40
2018/12/30 17:29:26 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:29:26 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:29:26 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:29:26 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:29:51 - l_default - DEBUG - stats_counter is 59. Only sending every 40
2018/12/30 17:29:51 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:29:51 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:29:51 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:29:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:30:17 - l_default - DEBUG - stats_counter is 60. Only sending every 40
2018/12/30 17:30:17 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:30:17 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:30:17 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:30:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:30:42 - l_default - DEBUG - stats_counter is 61. Only sending every 40
2018/12/30 17:30:42 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:30:42 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:30:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:31:07 - l_default - DEBUG - stats_counter is 62. Only sending every 40
2018/12/30 17:31:07 - l_default - DEBUG - Free gpu memory value is 0K
2018/12/30 17:31:07 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:31:07 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:31:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:31:32 - l_default - DEBUG - stats_counter is 63. Only sending every 40
2018/12/30 17:31:32 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:31:32 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:31:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:31:57 - l_default - DEBUG - stats_counter is 64. Only sending every 40
2018/12/30 17:31:57 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:31:57 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:31:57 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:31:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:32:22 - l_default - DEBUG - stats_counter is 65. Only sending every 40
2018/12/30 17:32:22 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:32:22 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:32:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:32:47 - l_default - DEBUG - stats_counter is 66. Only sending every 40
2018/12/30 17:32:47 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:32:47 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:32:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:33:12 - l_default - DEBUG - stats_counter is 67. Only sending every 40
2018/12/30 17:33:13 - l_default - DEBUG - Free gpu memory value is 711M
2018/12/30 17:33:13 - l_default - DEBUG - Free memory in bytes: 745537536.0
2018/12/30 17:33:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:33:45 - l_default - DEBUG - autodetected resolution of['592', '448']
2018/12/30 17:33:45 - l_default - DEBUG - nr_of_columns = 2
2018/12/30 17:33:45 - l_default - DEBUG - interval_check_status = 25
2018/12/30 17:33:45 - l_default - DEBUG - camera_streams config option exist, using this one
2018/12/30 17:33:45 - l_default - INFO - Unique id of this installation is d36b6a8bca6cf26cb92cbe7f304e40bc37c6ad4a4795f76bd0ad26545a7f3db7
2018/12/30 17:33:45 - l_default - DEBUG - Start_time is 1546220025.12
2018/12/30 17:33:45 - l_default - DEBUG - Current time detected is 1546220025.12 runtime calculated is 0
2018/12/30 17:33:45 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:33:45 - l_default - DEBUG - Free gpu memory value is 4080M
2018/12/30 17:33:45 - l_default - DEBUG - Free memory in bytes: 4278190080.0
2018/12/30 17:33:45 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 17:33:45 - l_default - ERROR - No connectable streams detected
2018/12/30 17:33:45 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 17:33:46 - l_default - DEBUG - autodetected resolution of['640', '480']
2018/12/30 17:33:46 - l_default - DEBUG - nr_of_columns = 2
2018/12/30 17:33:46 - l_default - DEBUG - interval_check_status = 25
2018/12/30 17:33:46 - l_default - DEBUG - camera_streams config option exist, using this one
2018/12/30 17:33:46 - l_default - INFO - Unique id of this installation is 656bfdd739c929447e1561b5fb3e2fbc3bed276603b9dac9bf11e6909f4d65a0
2018/12/30 17:33:46 - l_default - DEBUG - Start_time is 1546220026.73
2018/12/30 17:33:46 - l_default - DEBUG - Current time detected is 1546220026.73 runtime calculated is 0
2018/12/30 17:33:46 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:33:46 - l_default - DEBUG - Free gpu memory value is 235M
2018/12/30 17:33:46 - l_default - DEBUG - Free memory in bytes: 246415360.0
2018/12/30 17:33:46 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 17:33:46 - l_default - ERROR - No connectable streams detected
2018/12/30 17:33:46 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 17:40:49 - l_default - DEBUG - autodetected resolution of['1680', '1050']
2018/12/30 17:40:49 - l_default - DEBUG - nr_of_columns = 2
2018/12/30 17:40:49 - l_default - DEBUG - interval_check_status = 25
2018/12/30 17:40:49 - l_default - DEBUG - camera_streams config option exist, using this one
2018/12/30 17:40:49 - l_default - INFO - Unique id of this installation is 07b9f1910c8e4b2fcc16453b5a206e6c763d46210cbb9553a2b07f6496a3e53e
2018/12/30 17:40:49 - l_default - DEBUG - Start_time is 1546220449.74
2018/12/30 17:40:49 - l_default - DEBUG - Current time detected is 1546220449.74 runtime calculated is 0
2018/12/30 17:40:49 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:40:49 - l_default - DEBUG - Free gpu memory value is 229M
2018/12/30 17:40:49 - l_default - DEBUG - Free memory in bytes: 240123904.0
2018/12/30 17:40:49 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 17:40:49 - l_default - ERROR - No connectable streams detected
2018/12/30 17:40:49 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 17:40:51 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 17:41:25 - l_default - DEBUG - stats_counter is 1. Only sending every 40
2018/12/30 17:41:25 - l_default - DEBUG - Free gpu memory value is 704
2018/12/30 17:41:25 - l_default - DEBUG - Free memory in bytes: 704.0
2018/12/30 17:41:25 - l_default - ERROR - Free gpu mem is 704.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:41:26 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:41:26 - l_default - DEBUG - number of fields= 1
2018/12/30 17:41:26 - l_default - DEBUG - cam stream name =cam_stream1
2018/12/30 17:41:26 - l_default - DEBUG - start stream cam_stream1
2018/12/30 17:41:26 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 17:41:51 - l_default - DEBUG - stats_counter is 2. Only sending every 40
2018/12/30 17:41:51 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 17:41:51 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 17:41:51 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:41:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:42:17 - l_default - DEBUG - stats_counter is 3. Only sending every 40
2018/12/30 17:42:17 - l_default - DEBUG - Free gpu memory value is 288
2018/12/30 17:42:17 - l_default - DEBUG - Free memory in bytes: 288.0
2018/12/30 17:42:17 - l_default - ERROR - Free gpu mem is 288.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:42:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:42:42 - l_default - DEBUG - stats_counter is 4. Only sending every 40
2018/12/30 17:42:42 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:42:42 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:42:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:43:07 - l_default - DEBUG - stats_counter is 5. Only sending every 40
2018/12/30 17:43:07 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:43:07 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:43:07 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:43:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:43:32 - l_default - DEBUG - stats_counter is 6. Only sending every 40
2018/12/30 17:43:32 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:43:32 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:43:32 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:43:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:43:57 - l_default - DEBUG - stats_counter is 7. Only sending every 40
2018/12/30 17:43:57 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:43:57 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:43:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:44:22 - l_default - DEBUG - stats_counter is 8. Only sending every 40
2018/12/30 17:44:22 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:44:22 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:44:22 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:44:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:44:47 - l_default - DEBUG - stats_counter is 9. Only sending every 40
2018/12/30 17:44:47 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:44:47 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:44:47 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:44:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:45:12 - l_default - DEBUG - stats_counter is 10. Only sending every 40
2018/12/30 17:45:12 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:45:12 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:45:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:45:38 - l_default - DEBUG - stats_counter is 11. Only sending every 40
2018/12/30 17:45:38 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:45:38 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:45:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:46:03 - l_default - DEBUG - stats_counter is 12. Only sending every 40
2018/12/30 17:46:03 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:46:03 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:46:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:46:28 - l_default - DEBUG - stats_counter is 13. Only sending every 40
2018/12/30 17:46:28 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:46:28 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:46:28 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:46:28 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:46:53 - l_default - DEBUG - stats_counter is 14. Only sending every 40
2018/12/30 17:46:53 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:46:53 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:46:53 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:46:53 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:47:18 - l_default - DEBUG - stats_counter is 15. Only sending every 40
2018/12/30 17:47:18 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 17:47:18 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 17:47:18 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:47:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:47:43 - l_default - DEBUG - stats_counter is 16. Only sending every 40
2018/12/30 17:47:44 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:47:44 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:47:44 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:47:44 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:48:09 - l_default - DEBUG - stats_counter is 17. Only sending every 40
2018/12/30 17:48:09 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:48:09 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:48:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:48:34 - l_default - DEBUG - stats_counter is 18. Only sending every 40
2018/12/30 17:48:34 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:48:34 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:48:34 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:48:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:48:59 - l_default - DEBUG - stats_counter is 19. Only sending every 40
2018/12/30 17:48:59 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:48:59 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:48:59 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:49:24 - l_default - DEBUG - stats_counter is 20. Only sending every 40
2018/12/30 17:49:24 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 17:49:24 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 17:49:24 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:49:24 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:49:49 - l_default - DEBUG - stats_counter is 21. Only sending every 40
2018/12/30 17:49:49 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:49:49 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:49:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:50:14 - l_default - DEBUG - stats_counter is 22. Only sending every 40
2018/12/30 17:50:14 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:50:14 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:50:14 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:50:14 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:50:39 - l_default - DEBUG - stats_counter is 23. Only sending every 40
2018/12/30 17:50:40 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 17:50:40 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 17:50:40 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:50:40 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:51:05 - l_default - DEBUG - stats_counter is 24. Only sending every 40
2018/12/30 17:51:05 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:51:05 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:51:05 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:51:30 - l_default - DEBUG - stats_counter is 25. Only sending every 40
2018/12/30 17:51:30 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 17:51:30 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 17:51:30 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:51:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:51:55 - l_default - DEBUG - stats_counter is 26. Only sending every 40
2018/12/30 17:51:55 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:51:55 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:51:55 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:52:20 - l_default - DEBUG - stats_counter is 27. Only sending every 40
2018/12/30 17:52:21 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:52:21 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:52:21 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:52:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:52:46 - l_default - DEBUG - stats_counter is 28. Only sending every 40
2018/12/30 17:52:46 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:52:46 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:52:46 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:53:11 - l_default - DEBUG - stats_counter is 29. Only sending every 40
2018/12/30 17:53:11 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 17:53:11 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 17:53:11 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:53:11 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:53:36 - l_default - DEBUG - stats_counter is 30. Only sending every 40
2018/12/30 17:53:36 - l_default - DEBUG - Free gpu memory value is 7K
2018/12/30 17:53:36 - l_default - DEBUG - Free memory in bytes: 7168.0
2018/12/30 17:53:36 - l_default - ERROR - Free gpu mem is 7168.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:53:36 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:54:01 - l_default - DEBUG - stats_counter is 31. Only sending every 40
2018/12/30 17:54:01 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:54:01 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:54:01 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:54:26 - l_default - DEBUG - stats_counter is 32. Only sending every 40
2018/12/30 17:54:26 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:54:26 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:54:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:54:52 - l_default - DEBUG - stats_counter is 33. Only sending every 40
2018/12/30 17:54:52 - l_default - DEBUG - Free gpu memory value is 320
2018/12/30 17:54:52 - l_default - DEBUG - Free memory in bytes: 320.0
2018/12/30 17:54:52 - l_default - ERROR - Free gpu mem is 320.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:54:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:55:17 - l_default - DEBUG - stats_counter is 34. Only sending every 40
2018/12/30 17:55:17 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:55:17 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:55:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:55:42 - l_default - DEBUG - stats_counter is 35. Only sending every 40
2018/12/30 17:55:42 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:55:42 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:55:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:56:07 - l_default - DEBUG - stats_counter is 36. Only sending every 40
2018/12/30 17:56:07 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:56:07 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:56:07 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:56:32 - l_default - DEBUG - stats_counter is 37. Only sending every 40
2018/12/30 17:56:32 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:56:32 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:56:32 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:56:57 - l_default - DEBUG - stats_counter is 38. Only sending every 40
2018/12/30 17:56:57 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:56:57 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:56:57 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:57:22 - l_default - DEBUG - stats_counter is 39. Only sending every 40
2018/12/30 17:57:22 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 17:57:22 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 17:57:22 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:57:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:57:47 - l_default - DEBUG - Current time detected is 1546221468.0 runtime calculated is 1018
2018/12/30 17:57:48 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 17:57:48 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:57:48 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:57:48 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:58:13 - l_default - DEBUG - stats_counter is 41. Only sending every 40
2018/12/30 17:58:13 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:58:13 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:58:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:58:38 - l_default - DEBUG - stats_counter is 42. Only sending every 40
2018/12/30 17:58:38 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 17:58:38 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 17:58:38 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:58:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:59:03 - l_default - DEBUG - stats_counter is 43. Only sending every 40
2018/12/30 17:59:03 - l_default - DEBUG - Free gpu memory value is 448
2018/12/30 17:59:03 - l_default - DEBUG - Free memory in bytes: 448.0
2018/12/30 17:59:03 - l_default - ERROR - Free gpu mem is 448.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 17:59:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:59:28 - l_default - DEBUG - stats_counter is 44. Only sending every 40
2018/12/30 17:59:28 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:59:28 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:59:28 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 17:59:53 - l_default - DEBUG - stats_counter is 45. Only sending every 40
2018/12/30 17:59:53 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 17:59:53 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 17:59:53 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:00:18 - l_default - DEBUG - stats_counter is 46. Only sending every 40
2018/12/30 18:00:18 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 18:00:18 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 18:00:18 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:00:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:00:43 - l_default - DEBUG - stats_counter is 47. Only sending every 40
2018/12/30 18:00:43 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 18:00:43 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 18:00:44 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:01:09 - l_default - DEBUG - stats_counter is 48. Only sending every 40
2018/12/30 18:01:09 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 18:01:09 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 18:01:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:01:34 - l_default - DEBUG - stats_counter is 49. Only sending every 40
2018/12/30 18:01:34 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 18:01:34 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:01:34 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:01:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:01:59 - l_default - DEBUG - stats_counter is 50. Only sending every 40
2018/12/30 18:01:59 - l_default - DEBUG - Free gpu memory value is 191M
2018/12/30 18:01:59 - l_default - DEBUG - Free memory in bytes: 200278016.0
2018/12/30 18:01:59 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:02:19 - l_default - DEBUG - autodetected resolution of['1680', '1050']
2018/12/30 18:02:19 - l_default - DEBUG - nr_of_columns = 2
2018/12/30 18:02:19 - l_default - DEBUG - interval_check_status = 25
2018/12/30 18:02:19 - l_default - DEBUG - camera_streams config option exist, using this one
2018/12/30 18:02:19 - l_default - INFO - Unique id of this installation is edada494510ad0fa8089f0f28dac3619bc47c0a5cfa9ac20de7e21504d6929d8
2018/12/30 18:02:19 - l_default - DEBUG - Start_time is 1546221739.07
2018/12/30 18:02:19 - l_default - DEBUG - Current time detected is 1546221739.08 runtime calculated is 0
2018/12/30 18:02:19 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 18:02:19 - l_default - DEBUG - Free gpu memory value is 229M
2018/12/30 18:02:19 - l_default - DEBUG - Free memory in bytes: 240123904.0
2018/12/30 18:02:19 - l_default - ERROR - 192.168.1.113 : 554 Not Connectable (failed socket connect)
2018/12/30 18:02:19 - l_default - ERROR - No connectable streams detected
2018/12/30 18:02:19 - l_default - DEBUG - pygame_noconnectable_surface does not exist, draw it
2018/12/30 18:02:20 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 18:02:45 - l_default - DEBUG - stats_counter is 1. Only sending every 40
2018/12/30 18:02:46 - l_default - DEBUG - Free gpu memory value is 576
2018/12/30 18:02:46 - l_default - DEBUG - Free memory in bytes: 576.0
2018/12/30 18:02:46 - l_default - ERROR - Free gpu mem is 576.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:02:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:02:48 - l_default - DEBUG - number of fields= 1
2018/12/30 18:02:48 - l_default - DEBUG - cam stream name =cam_stream1
2018/12/30 18:02:48 - l_default - DEBUG - start stream cam_stream1
2018/12/30 18:02:48 - l_default - DEBUG - Drawing placeholder with coordinates: 0, 0 and width: 1680 height: 1050
2018/12/30 18:03:22 - l_default - DEBUG - stats_counter is 2. Only sending every 40
2018/12/30 18:03:22 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:03:22 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:03:22 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:03:47 - l_default - DEBUG - stats_counter is 3. Only sending every 40
2018/12/30 18:03:47 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:03:47 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:03:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:04:13 - l_default - DEBUG - stats_counter is 4. Only sending every 40
2018/12/30 18:04:13 - l_default - DEBUG - Free gpu memory value is 961
2018/12/30 18:04:13 - l_default - DEBUG - Free memory in bytes: 961.0
2018/12/30 18:04:13 - l_default - ERROR - Free gpu mem is 961.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:04:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:04:38 - l_default - DEBUG - stats_counter is 5. Only sending every 40
2018/12/30 18:04:38 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:04:38 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:04:38 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:05:03 - l_default - DEBUG - stats_counter is 6. Only sending every 40
2018/12/30 18:05:03 - l_default - DEBUG - Free gpu memory value is 1K
2018/12/30 18:05:03 - l_default - DEBUG - Free memory in bytes: 1024.0
2018/12/30 18:05:03 - l_default - ERROR - Free gpu mem is 1024.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:05:03 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:05:28 - l_default - DEBUG - stats_counter is 7. Only sending every 40
2018/12/30 18:05:28 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 18:05:28 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 18:05:28 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:05:28 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:05:53 - l_default - DEBUG - stats_counter is 8. Only sending every 40
2018/12/30 18:05:53 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 18:05:53 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:05:53 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:05:53 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:06:18 - l_default - DEBUG - stats_counter is 9. Only sending every 40
2018/12/30 18:06:18 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:06:18 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:06:18 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:06:43 - l_default - DEBUG - stats_counter is 10. Only sending every 40
2018/12/30 18:06:43 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 18:06:43 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 18:06:43 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:06:43 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:07:08 - l_default - DEBUG - stats_counter is 11. Only sending every 40
2018/12/30 18:07:09 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 18:07:09 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:07:09 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:07:09 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:07:34 - l_default - DEBUG - stats_counter is 12. Only sending every 40
2018/12/30 18:07:34 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 18:07:34 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:07:34 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:07:34 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:07:59 - l_default - DEBUG - stats_counter is 13. Only sending every 40
2018/12/30 18:07:59 - l_default - DEBUG - Free gpu memory value is 2K
2018/12/30 18:07:59 - l_default - DEBUG - Free memory in bytes: 2048.0
2018/12/30 18:07:59 - l_default - ERROR - Free gpu mem is 2048.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:07:59 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:08:24 - l_default - DEBUG - stats_counter is 14. Only sending every 40
2018/12/30 18:08:24 - l_default - DEBUG - Free gpu memory value is 480
2018/12/30 18:08:24 - l_default - DEBUG - Free memory in bytes: 480.0
2018/12/30 18:08:24 - l_default - ERROR - Free gpu mem is 480.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:08:24 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:08:49 - l_default - DEBUG - stats_counter is 15. Only sending every 40
2018/12/30 18:08:49 - l_default - DEBUG - Free gpu memory value is 8K
2018/12/30 18:08:49 - l_default - DEBUG - Free memory in bytes: 8192.0
2018/12/30 18:08:49 - l_default - ERROR - Free gpu mem is 8192.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:08:49 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:09:14 - l_default - DEBUG - stats_counter is 16. Only sending every 40
2018/12/30 18:09:14 - l_default - DEBUG - Free gpu memory value is 0K
2018/12/30 18:09:14 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:09:14 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:09:14 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:09:39 - l_default - DEBUG - stats_counter is 17. Only sending every 40
2018/12/30 18:09:39 - l_default - DEBUG - Free gpu memory value is 96
2018/12/30 18:09:39 - l_default - DEBUG - Free memory in bytes: 96.0
2018/12/30 18:09:39 - l_default - ERROR - Free gpu mem is 96.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:09:39 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:10:04 - l_default - DEBUG - stats_counter is 18. Only sending every 40
2018/12/30 18:10:04 - l_default - DEBUG - Free gpu memory value is 480
2018/12/30 18:10:04 - l_default - DEBUG - Free memory in bytes: 480.0
2018/12/30 18:10:04 - l_default - ERROR - Free gpu mem is 480.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:10:04 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:10:30 - l_default - DEBUG - stats_counter is 19. Only sending every 40
2018/12/30 18:10:30 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 18:10:30 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 18:10:30 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:10:30 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:10:55 - l_default - DEBUG - stats_counter is 20. Only sending every 40
2018/12/30 18:10:55 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:10:55 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:10:55 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:11:20 - l_default - DEBUG - stats_counter is 21. Only sending every 40
2018/12/30 18:11:20 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:11:20 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:11:20 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:11:45 - l_default - DEBUG - stats_counter is 22. Only sending every 40
2018/12/30 18:11:45 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:11:45 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:11:45 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:12:10 - l_default - DEBUG - stats_counter is 23. Only sending every 40
2018/12/30 18:12:10 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:12:10 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:12:10 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:12:35 - l_default - DEBUG - stats_counter is 24. Only sending every 40
2018/12/30 18:12:35 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:12:35 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:12:35 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:13:00 - l_default - DEBUG - stats_counter is 25. Only sending every 40
2018/12/30 18:13:00 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:13:00 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:13:00 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:13:25 - l_default - DEBUG - stats_counter is 26. Only sending every 40
2018/12/30 18:13:25 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 18:13:25 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 18:13:25 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:13:26 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:13:51 - l_default - DEBUG - stats_counter is 27. Only sending every 40
2018/12/30 18:13:51 - l_default - DEBUG - Free gpu memory value is 9K
2018/12/30 18:13:51 - l_default - DEBUG - Free memory in bytes: 9216.0
2018/12/30 18:13:51 - l_default - ERROR - Free gpu mem is 9216.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:13:51 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:14:16 - l_default - DEBUG - stats_counter is 28. Only sending every 40
2018/12/30 18:14:16 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:14:16 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:14:16 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:14:41 - l_default - DEBUG - stats_counter is 29. Only sending every 40
2018/12/30 18:14:41 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 18:14:41 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 18:14:41 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:14:41 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:15:06 - l_default - DEBUG - stats_counter is 30. Only sending every 40
2018/12/30 18:15:06 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:15:06 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:15:06 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:15:31 - l_default - DEBUG - stats_counter is 31. Only sending every 40
2018/12/30 18:15:31 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:15:31 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:15:31 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:15:56 - l_default - DEBUG - stats_counter is 32. Only sending every 40
2018/12/30 18:15:56 - l_default - DEBUG - Free gpu memory value is 6K
2018/12/30 18:15:56 - l_default - DEBUG - Free memory in bytes: 6144.0
2018/12/30 18:15:56 - l_default - ERROR - Free gpu mem is 6144.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:15:56 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:16:21 - l_default - DEBUG - stats_counter is 33. Only sending every 40
2018/12/30 18:16:21 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 18:16:21 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 18:16:21 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:16:21 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:16:46 - l_default - DEBUG - stats_counter is 34. Only sending every 40
2018/12/30 18:16:47 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:16:47 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:16:47 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:17:12 - l_default - DEBUG - stats_counter is 35. Only sending every 40
2018/12/30 18:17:12 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:17:12 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:17:12 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:17:37 - l_default - DEBUG - stats_counter is 36. Only sending every 40
2018/12/30 18:17:37 - l_default - DEBUG - Free gpu memory value is 3K
2018/12/30 18:17:37 - l_default - DEBUG - Free memory in bytes: 3072.0
2018/12/30 18:17:37 - l_default - ERROR - Free gpu mem is 3072.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:17:37 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:18:02 - l_default - DEBUG - stats_counter is 37. Only sending every 40
2018/12/30 18:18:02 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:18:02 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:18:02 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:18:27 - l_default - DEBUG - stats_counter is 38. Only sending every 40
2018/12/30 18:18:27 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:18:27 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:18:27 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:18:52 - l_default - DEBUG - stats_counter is 39. Only sending every 40
2018/12/30 18:18:52 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:18:52 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:18:52 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:19:17 - l_default - DEBUG - Current time detected is 1546222757.7 runtime calculated is 1019
2018/12/30 18:19:17 - l_default - INFO - Sending stats is disabled, not sending stats
2018/12/30 18:19:17 - l_default - DEBUG - Free gpu memory value is 4K
2018/12/30 18:19:17 - l_default - DEBUG - Free memory in bytes: 4096.0
2018/12/30 18:19:17 - l_default - ERROR - Free gpu mem is 4096.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:19:17 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:19:42 - l_default - DEBUG - stats_counter is 41. Only sending every 40
2018/12/30 18:19:42 - l_default - DEBUG - Free gpu memory value is 0
2018/12/30 18:19:42 - l_default - DEBUG - Free memory in bytes: 0.0
2018/12/30 18:19:42 - l_default - ERROR - Free gpu mem is 0.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:19:42 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:20:07 - l_default - DEBUG - stats_counter is 42. Only sending every 40
2018/12/30 18:20:08 - l_default - DEBUG - Free gpu memory value is 5K
2018/12/30 18:20:08 - l_default - DEBUG - Free memory in bytes: 5120.0
2018/12/30 18:20:08 - l_default - ERROR - Free gpu mem is 5120.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:20:08 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:20:33 - l_default - DEBUG - stats_counter is 43. Only sending every 40
2018/12/30 18:20:33 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:20:33 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:20:33 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:20:58 - l_default - DEBUG - stats_counter is 44. Only sending every 40
2018/12/30 18:20:58 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:20:58 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:20:58 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:21:23 - l_default - DEBUG - stats_counter is 45. Only sending every 40
2018/12/30 18:21:23 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:21:23 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:21:23 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:21:48 - l_default - DEBUG - stats_counter is 46. Only sending every 40
2018/12/30 18:21:48 - l_default - DEBUG - Free gpu memory value is 256
2018/12/30 18:21:48 - l_default - DEBUG - Free memory in bytes: 256.0
2018/12/30 18:21:48 - l_default - ERROR - Free gpu mem is 256.0 bytes which is less than 80000000 bytes. Streams might fail to start. Consider assigning more memory to gpu in /boot/config.txt with the gpu_mem option
2018/12/30 18:21:48 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
2018/12/30 18:22:13 - l_default - DEBUG - stats_counter is 47. Only sending every 40
2018/12/30 18:22:13 - l_default - DEBUG - Free gpu memory value is 197M
2018/12/30 18:22:13 - l_default - DEBUG - Free memory in bytes: 206569472.0
2018/12/30 18:22:13 - l_default - DEBUG - 192.168.1.113 : 554 Connectable
 

Attachments

Last edited:

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
See attached log file. I had stopped using the RPI for a few months because of the disconnect.

How do i go about lowering the stream Res ? In the Survellince.yml file ?
Lowering stream res should can be done by selecting substream of camera or lowering res on main stream in camera.

In your log file I can see omxplayer is crashing all the time. Please report result of lowering the res
 
Joined
Dec 30, 2018
Messages
3
Reaction score
0
Location
Vancouver, BC
I added the main log to the post above. Not sure if you noticed that.

I am using a XioFang Camera and the camera RTSP stream is set to 1280 x 720 @ 2048.

Code:
 snx_rtsp_server -W 1280 -H 720 -Q 10 -F 15 -b 2048 -a >$LOG 2>&1 &
 

alastairstevenson

Staff member
Joined
Oct 28, 2014
Messages
15,929
Reaction score
6,777
Location
Scotland
I suspect you are going to try it and let us know!

**edit**
The comment above could be confusing if you didn't know it was a response to a spammer post, since erased. Spammer and posts.
 
Last edited:

HEVNBND

Getting the hang of it
Joined
Feb 15, 2017
Messages
144
Reaction score
14
Are you still working on this project? I could use a little help getting it running on my pi
 

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
Yes off course this project is still alive and getting more popular.
 

HEVNBND

Getting the hang of it
Joined
Feb 15, 2017
Messages
144
Reaction score
14
I have ran through all the steps in SvenVD/rpisurv and can not get any video to display. I used to be able to see a GUI with the HDMI out but now I just have text. Any help would be greatly appreciated. I can open the one stream in VLC without any issue. I just can't seem to get anything to load on the PI that would play the stream.


Here is what my surveillance.yml looks like

#THIS IS A YAML FILE, INDENTATION IS IMPORTANT. ALSO DO NOT USE TABS FOR INDENTATION, BUT USE SPACES
#THE FOLLOWING ARE EXAMPLES WITH ALL OPTIONS EXPLAINED, REMOVE OR ADAPT THEM WITH YOUR REAL CONFIG

essentials:
#rpisurv will rotate over the following screens in the order they are configured here, if you only define one screen no rotation will happen

#If you enable this option no auto rotation will happen, but you will still be able to select a screen by pressing and holding a Function Key (F1-F12)
#Defaults to False
#disable_autorotation: False

screens:
#Start config for example screen one, this is the minimal config. This will show a 2x2 if all streams are connectable,
#otherwise rpisurv, by default, rearranges the screen to only show the connectable streams. To disable the latter set disable_probing_for_all_streams=True
#Force this screen to be shown by pressing and holding F1 or keypad 0
- camera_streams:
- url: "rtsp://192.168.16.162:554/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/videoMain"
#You can also configure http or https streams like for mjpeg streams
- url: "http://<ip or dnsname>:<port>/suffix"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/play1.sdp"

#Start of config for example screen two.
#Force this screen to be shown by pressing and holding F2 or keypad 1
- camera_streams:
#Dlink dcs-5222l example
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/play1.sdp"
#OPTIONAL AND ADVANCED PER CAMERASTREAM OPTIONS, IF NOT CONFIGURED A DEFAULT VALUE WILL BE USED
#Increase probe_timeout if you have streams that are slow to connect to. If they longer then probe_timeout seconds then rpisurv will consider them unconnectable
#Default to 4 seconds
probe_timeout: 10
#Enable this option if you want the rtsp stream to stream over tcp instead of udp, this may solve a "smearing" effect on some setups. Defaults to false
#Note that you need a version of omxplayer older then 14 March 2016 for this option to work
rtsp_over_tcp: true
#Foscam-fi9821w example
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/videoMain"
#Dahua IPC-HDW4200S example or IPC-HDW4300S
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/cam/realmonitor?channel=1&subtype=1"

#OPTIONAL AND ADVANCED PER SCREEN OPTIONS, YOU CAN CONFIGURE THIS PER SCREEN, IF NOT CONFIGURED A DEFAULT VALUE WILL BE USED
#NOT recommendeded to enable disable_probing_for_all_streams, it disables some autohealing functions of rpisurv
#Also if using multiple screens, enabling this will slow down rotation of one screen to the next if there are unconnectable screens
#This also disabled rpisurv only drawing the connectable screens using up all pixels. In other words, you will get a placeholder for an unconnectable stream instead of not showing at all
#Roughly the same as the obsoleted keep_first_screen_layout in rpisurv v1.0
#Defaults to False
disable_probing_for_all_streams: False

#How many columns you want the program to use, it will autocalculate the amount of row needed based on the resolution of your screen
#Default = 2
nr_of_columns: "2"

#Autostretching makes sures all of your pixels will be uses to display streams, so you have a maximum surveillance area.
#But this will probably destroy the aspect ratio of your last stream.
#Defaults to False
autostretch: False

#This is how long this screen will be shown each rotation.
#If this is set to a very low value then it can happen that building up the active and/or the cached screen takes longer then this duration,
#in that case the building and caching needs to finish first before timer will be expired and next screen is shown
#Defaults to 20
duration: 60


#Start config for example screen three, this is the minimal config. This will show a 2x2
#Force this screen to be shown by pressing and holding F3 or keypad 2
- camera_streams:
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/cam/realmonitor?channel=1&subtype=1"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/videoMain"
- url: "http://<ip or dnsname>:<port>/suffix"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/play1.sdp"

#Start config for example screen four. This will show a 1x3 on first row + 1 stretched screen on second row if all streams are connectable
#otherwise rpisurv, by default, rearranges the screen to only show the connectable streams. To disable the latter set disable_probing_for_all_streams=True
#Force this screen to be shown by pressing and holding F4 or keypad 3
- camera_streams:
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/cam/realmonitor?channel=1&subtype=1"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/videoMain"
- url: "http://<ip or dnsname>:<port>/suffix"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/play1.sdp"
nr_of_columns: "3"
autostretch: True

#Start config for example screen five. This will show a 2x2 with one placeholder if all streams are connectable
#otherwise rpisurv, by default, rearranges the screen to only show the connectable streams. To disable the latter set disable_probing_for_all_streams=True
#Force this screen to be shown by pressing and holding F5 or keypad 4
- camera_streams:
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/cam/realmonitor?channel=1&subtype=1"
- url: "http://<ip or dnsname>:<port>/suffix"
- url: "rtsp://<user>:<password>@<ip or dnsname>:<port>/videoMain"
nr_of_columns: "2"
autostretch: False

#DEFINE AS MANY SCREENS AS YOU WANT
#When reaching last defined screen, rotate will start at the beginning again
#You can have as many screens as you want, they are dynamically loaded offscreen and only the next one is loaded, so this is not limited on hardware


#!!!Normal users do not need to edit this section!!!
advanced:
##Enable this option if you want to have a fixed width of all your camera streams,
##By default rpisurv autocalculates this value, this can cause streams to get "stretched",
##if this value exceeds the available width, rpisurv will fallback to autocalculation
#fixed_width: 500

##Enable this option if you want to have a fixed height for all your camera streams,
##By default rpisurv autocalculates this value, this can cause streams to get "stretched",
##if this value exceeds the available height, rpisurv will fallback to autocalculation
#fixed_height: 500

#Rpisurv sends usage stats to it's statistics server to give the rpisurv community an idea how widespread this software is being used
#No performance impact is measured when using this option, no sensitive data is being sent. All data is anonymised.
#By default this is false
#update_stats: False

#By default rpisurv will cache the next screen in the rotation (if more than one screen is configured), to speed up rotation events.
#However, this action takes up some resources of the raspberry pi.
#If you do not mind a slower rotate event (slower building up of the screen during a rotate event) and you want to free up some resources, then set this to False
#This will also speed up first start since no cached screen needs to be started at boot time.
#cache_next_screen: True

#By default rpisurv checks every 19 seconds since start of rpisurv if it needs to redraw the current running screen
#interval_check_status: 19

#By default rpisurv will check memory usage, set to False to skip memory usage check
#memory_usage_check: True

#These are fallbacks if autodetection fails;
#Normally you do not need to configure these
fallbacks:
resolution:
width: "1920"
height: "1080"
 
Last edited:

SvenVD

Getting the hang of it
Joined
Mar 5, 2016
Messages
61
Reaction score
31
Hi please do read the first lines of the config file

#THE FOLLOWING ARE EXAMPLES WITH ALL OPTIONS EXPLAINED, REMOVE OR ADAPT THEM WITH YOUR REAL CONFIG

In your config file all the examples are still there, please remove them first
 
Top