Skip to content

Instantly share code, notes, and snippets.

@retrography
Created September 24, 2014 02:47
Show Gist options
  • Save retrography/c47aba4300baa2053215 to your computer and use it in GitHub Desktop.
Save retrography/c47aba4300baa2053215 to your computer and use it in GitHub Desktop.
Lossless concatenation of audio files with ffmpeg
#!/bin/bash
ffmpeg -f concat -i <(for f in /Users/mah/Desktop/*.m4a; do echo "file '$f'"; done) -c copy /Users/mah/Desktop/interview.m4a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment