Skip to content

Instantly share code, notes, and snippets.

@david-christiansen
Last active May 15, 2017 01:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save david-christiansen/590ec4d1e537c1e544aac375bbb659f1 to your computer and use it in GitHub Desktop.
Save david-christiansen/590ec4d1e537c1e544aac375bbb659f1 to your computer and use it in GitHub Desktop.
How to fix the audio on the current crop of OPLSS videos
#!/bin/bash
for i in *.mp4; do
if [ ! -a "${i%.mp4}-fixed.mp4" ]; then
ffmpeg -i "$i" -vcodec copy -ac 1 "${i%.mp4}-fixed.mp4"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment