Skip to content

Instantly share code, notes, and snippets.

@nickistre
Last active July 25, 2017 05:31
Show Gist options
  • Save nickistre/08db1e7942ee4131f80209370bfcb3be to your computer and use it in GitHub Desktop.
Save nickistre/08db1e7942ee4131f80209370bfcb3be to your computer and use it in GitHub Desktop.
Common Video conversion tools on Ubuntu-based systems
#!/bin/env bash
# The following is to combine all mp4 files (such as from a GoPro action cam) in the current directory into one
# large file for processing. Note that audio is converted from whatever compressed form to uncompressed PCM!
# Change the filenames to order them in alpha-numeric form.
mencoder -oac pcm -ovc copy -idx -o full.mp4 *.MP4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment