Those loglines you are showing are normal loglines, no errors. Is that all you are seeing?
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
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
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)
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)
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.
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)
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/ )One thing i do want to mention is the monitor is 1680x1050 whereas, the stream is set to 1920x1080.
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
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 ?
snx_rtsp_server -W 1280 -H 720 -Q 10 -F 15 -b 2048 -a >$LOG 2>&1 &
Or maybe not.I suspect you are going to try it and let us know!