Skip to content

Instantly share code, notes, and snippets.

@cuellarfr
Created July 17, 2016 00:27
Show Gist options
  • Select an option

  • Save cuellarfr/ba27bcda8e57eebdc0a749017fcf0db3 to your computer and use it in GitHub Desktop.

Select an option

Save cuellarfr/ba27bcda8e57eebdc0a749017fcf0db3 to your computer and use it in GitHub Desktop.
Combine video files using FFmpeg
ffmpeg -f concat -i <(for f in $PWD/*.avi;do echo "file '$f'";done) -c copy output.avi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment