Hi All,
A sort of follow on from this link: https://hummy.tv/forum/threads/fox-t2-and-webcam.7118/
I came across an FFMPEG thread (https://superuser.com/questions/142...live-stream-into-one-minute-stand-alone-files) that talked about using an FFMPEG command line to record minute interval video files from an IP camera using RSTP transport / protocol. I have an old IP camera (640 x 480 pixels) which I think would do this that I used to use with a PC when stop motion screen shots but wonder if this could be used via the Humax. I ask this as the Humax most of the time remains powered whilst my PCs don't.
This was the final command line the user in the thread gave. I am assuming that the FFMPEG version installed in the humax includes the commands?
I'd guess instead of recording 30 fps, I could reduce that to 1fps or something?
Other than getting the command line working and making sure it restarts itself if the humax reboots, is there enough power / system resource to do this? I'm not asking it to convert to MPEG4 or anything, just save what comes down the line as it were.
Thanks
Rodp
A sort of follow on from this link: https://hummy.tv/forum/threads/fox-t2-and-webcam.7118/
I came across an FFMPEG thread (https://superuser.com/questions/142...live-stream-into-one-minute-stand-alone-files) that talked about using an FFMPEG command line to record minute interval video files from an IP camera using RSTP transport / protocol. I have an old IP camera (640 x 480 pixels) which I think would do this that I used to use with a PC when stop motion screen shots but wonder if this could be used via the Humax. I ask this as the Humax most of the time remains powered whilst my PCs don't.
This was the final command line the user in the thread gave. I am assuming that the FFMPEG version installed in the humax includes the commands?
Code:
ffmpeg -rtsp_transport tcp -reorder_queue_size 8000 -vsync drop -i rtsp://192.168.10.203:554/11 -map 0 -r 30 -vcodec copy -acodec copy -f segment -segment_time 60 -reset_timestamps 1 -strftime 1 "/path/%d-%m-%Y__%H_%M_test.avi"
I'd guess instead of recording 30 fps, I could reduce that to 1fps or something?
Other than getting the command line working and making sure it restarts itself if the humax reboots, is there enough power / system resource to do this? I'm not asking it to convert to MPEG4 or anything, just save what comes down the line as it were.
Thanks
Rodp