Flac to MP3 #114

Merged
NightPumpkin merged 4 commits from evo-flac_to_mp3 into master 2021-08-30 21:47:10 +02:00
Showing only changes of commit f597da21dc - Show all commits

View File

@ -0,0 +1,11 @@
## Discord Plex FR : https://discord.gg/3gtABCH
## Version 2021-08-23
##
## Pour une aide à l'installation, consulter le README
##
#!/bin/bash
while read FILE ; do
[[ -e ${FILE%%.*}.mp3 ]] || ffmpeg -i "$FILE" -ab 320k -map_metadata 0 "${FILE%.*}.mp3"
[[ $? -eq 0 ]] && rm $FILE
done < <(find . -name "*.flac")