mattpointblank’s avatarmattpointblank’s Twitter Archive—№ 15,650

  1. …in reply to @theseanco
    @theseanco Untested, but on Linux/OSX this should run on all .wav files in a directory (duplicates one mono channel to stereo): for i in *.wav; do ffmpeg -i "$i" -ac 2 "${i%.*}.wav"; done