Last active
January 16, 2017 16:49
-
-
Save johnelliott/52792591f6ca880a7515dac062a9aa43 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 -safe 0 -f concat -i <(printf "file '$PWD/%s'\n" ./*.wav) -c copy output.wav |
This file contains hidden or 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
| printf "file '%q'\n" *.wav > manifest.txt |
This file contains hidden or 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
| ffmpeg -f concat -i manifest.txt -c copy huge.wav |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment