Changes between Version 17 and Version 18 of Concatenate
- Timestamp:
- Sep 15, 2013, 9:36:06 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Concatenate
v17 v18 41 41 ffmpeg -f concat -i <(for f in ./*.wav; do echo "file '$f'"; done) -c copy output.wav 42 42 ffmpeg -f concat -i <(printf "file '%s'\n" ./*.wav) -c copy output.wav 43 ffmpeg -f concat -i <(find . -name '*.wav' -printf "file '%p'\n") -c copy output.wav 43 44 }}} 44 45
