saving mp4s #919
-
Hi, I want to save long videos (>24 hours) and uncompressed avi format videos are way too large. Is there a way to save them as mp4s? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
You can use To save in .mp4, the following settings have worked for me in the past: |
Beta Was this translation helpful? Give feedback.
You can use
ffmpeg
to save your videos in a variety of formats.How to install ffmpeg
To save the videos you can use the attached workflow or you can play around with the recent
VideoWriter(ffmpeg)
node that takes care of all the pipeline for you :)To save in .mp4, the following settings have worked for me in the past:
-y -f rawvideo -vcodec rawvideo -s 640x480 -r 30 -pix_fmt bgr24 -i \\.\pipe\video -c:v libx264 -b:v 2M -maxrate 2M -bufsize 1M output.mp4
ffmpegmp4.zip