Horje
speed up video with ffmpeg 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




Shell

Related
how to check how many files are in a folder linux Code Example how to check how many files are in a folder linux Code Example
ubuntu view disk space ec2 Code Example ubuntu view disk space ec2 Code Example
undo git pull Code Example undo git pull Code Example
how to get ip address in ubuntu Code Example how to get ip address in ubuntu Code Example
check what ports are open linux Code Example check what ports are open linux Code Example

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