Change the frame rate of a video.
video-framerate [--frame-rate <fps>] --input <input.mp4> --output <output.mp4>List options:
video-framerate --helpChange the frame rate of ./assets/vid/big_buck_bunny_trailer.vid.mp4 to 30 fps and save to ./output/video_framerate/big_buck_bunny_30fps.mp4:
mkdir -p ./output/video_framerate
video-framerate \
--input ./assets/vid/big_buck_bunny_trailer.vid.mp4 \
--output ./output/video_framerate/big_buck_bunny_30fps.mp4 \
--frame-rate 30.0List options:
video-framerate --helpChange the frame rate of ./assets/vid/big_buck_bunny_trailer.vid.mp4 to 30 fps and save to ./output/video_framerate/big_buck_bunny_30fps.mp4:
New-Item -ItemType Directory -Force -Path ./output/video_framerate
video-framerate `
--input ./assets/vid/big_buck_bunny_trailer.vid.mp4 `
--output ./output/video_framerate/big_buck_bunny_30fps.mp4 `
--frame-rate 30.0