Created
May 4, 2021 11:36
-
-
Save finloop/da7d55f3550b67391e78811110bba52a to your computer and use it in GitHub Desktop.
Convert all .mkv files in directory (recursive) to .mp3
This file contains 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 | |
# Convert all .mkv files in directory (recursive) to .mp3 | |
find . -type f -name "*.mkv" -print0 | parallel -0 ffmpeg -i {} -vn -c:a libmp3lame -y {.}.mp3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment