This website is released under |
Modify image speedProblemThe projection or viewing speed of a video should be changed from 25 fps as digitised to 18 fps as shot. Solutionffmpeg \ -i input_file \ -filter:v "setpts=25/18*PTS" \ -an \ output_file General commandffmpeg \ -i input_file \ -filter:v "setpts=input_fps/output_fps*PTS" \ -an \ output_file Command syntax
DiscussionDuring film digitisation the speed of sound video is usually used, witch is 25 fps (frames per second) in “Europe”. Yet silent and amateur films haven often been shot at a lower frame rate, like 16 or 18 fps. The video filter is specified by The 2024-11-27 |