You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to break output video file(camera recorder) into segments based on time(like 30 minutes) . We can do this in ffmpeg command line by using the below command.
I would like to break output video file(camera recorder) into segments based on time(like 30 minutes) . We can do this in ffmpeg command line by using the below command.
ffmpeg -i rtsp://:@xxx.xxx.xxx.xxx:xxx/play1.sdp -c copy -map 0 -f segment -strftime 1 -segment_time 1800 -segment_format mp4 out-%d_%m_%Y-%H_%M_%S.mp4
Could you please tell me how to do it in javacv in frame recorder module(FrameRecorder.java ).
The text was updated successfully, but these errors were encountered: