Created
April 17, 2024 18:18
-
-
Save space11/1fe19a35146b1d9d587acaaafa6aaa88 to your computer and use it in GitHub Desktop.
Join mp4 files in linux
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
# Find files in directory | |
for f in *.m4a; do echo "file '$f'" >> mylist.txt; done | |
# Join found files using ffmpg | |
ffmpeg -f concat -i mylist.txt output.m4a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment