retrography
9/24/2014 - 2:47 AM

Lossless concatenation of audio files with ffmpeg

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