Horje
speed up ffmpeg video Code Example
speed up video with ffmpeg
# speed up video and audio at the same time
# 2x speed up command:
ffmpeg -i input.mkv -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2[a]" -map "[v]" -map "[a]" output.mkv
# 1.5x speed up command:
ffmpeg -i input.mkv -filter_complex "[0:v]setpts=0.666*PTS[v];[0:a]atempo=1.5[a]" -map "[v]" -map "[a]" output.mkv
# speed up formula (x must be between 0 and 2):
ffmpeg -i input.mkv -filter_complex "[0:v]setpts=<1/x>*PTS[v];[0:a]atempo=<x>[a]" -map "[v]" -map "[a]" output.mkv
speed up ffmpeg video
ffmpeg -i input.mkv -filter:v "setpts=PTS/60" -filter:a "atempo=2,atempo=2,atempo=2,atempo=2,atempo=2,atempo=1.875" output.mkv




Shell

Related
vim code highlighting mac Code Example vim code highlighting mac Code Example
git create new repo in git bash/ terminal Code Example git create new repo in git bash/ terminal Code Example
how to check if virtualization is enabled in bios in manjaro Code Example how to check if virtualization is enabled in bios in manjaro Code Example
Vim deleting all lines containing pattern Code Example Vim deleting all lines containing pattern Code Example
how to reslove Jira Software is licensed but not currently installed Code Example how to reslove Jira Software is licensed but not currently installed Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9