Skip to content

Instantly share code, notes, and snippets.

@allexiusw
Last active April 26, 2020 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allexiusw/9bdc85a138d775ae101b5c8d59d8ccc9 to your computer and use it in GitHub Desktop.
Save allexiusw/9bdc85a138d775ae101b5c8d59d8ccc9 to your computer and use it in GitHub Desktop.
ffmepg helpful commands
#Increase the volume of a video with ffmpeg
ffmpeg -i input.flv -filter:a "volume=1.5" output.flv
#join to videos with ffmpeg inputs.txt has the path to the videos you want to join
ffmpeg -f concat -i inputs.txt -safe 0 -c copy output.mp4
#Normalize videos to get consistency volume and remove noises and things like that
ffmpeg -i input.flv -filter:a loudnorm output.flv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment