Created
September 24, 2014 02:47
-
-
Save retrography/c47aba4300baa2053215 to your computer and use it in GitHub Desktop.
Lossless concatenation of audio files with ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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