From f597da21dca1135697c67e71e2f3d47f210980e7 Mon Sep 17 00:00:00 2001 From: NightPumpkin Date: Thu, 26 Aug 2021 12:28:51 +0200 Subject: [PATCH 1/3] flac to mp3 , script --- Conversion FLAC vers MP3/flac_to_mp3.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Conversion FLAC vers MP3/flac_to_mp3.sh diff --git a/Conversion FLAC vers MP3/flac_to_mp3.sh b/Conversion FLAC vers MP3/flac_to_mp3.sh new file mode 100644 index 0000000..c0ab818 --- /dev/null +++ b/Conversion FLAC vers MP3/flac_to_mp3.sh @@ -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") \ No newline at end of file -- 2.45.2 From ed9a329c52c81b58c63f8b3641a965991c5df790 Mon Sep 17 00:00:00 2001 From: NightPumpkin Date: Thu, 26 Aug 2021 12:29:12 +0200 Subject: [PATCH 2/3] flac to mp3 , script maj --- Conversion FLAC vers MP3/flac_to_mp3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Conversion FLAC vers MP3/flac_to_mp3.sh b/Conversion FLAC vers MP3/flac_to_mp3.sh index c0ab818..69a9b51 100644 --- a/Conversion FLAC vers MP3/flac_to_mp3.sh +++ b/Conversion FLAC vers MP3/flac_to_mp3.sh @@ -1,5 +1,5 @@ ## Discord Plex FR : https://discord.gg/3gtABCH -## Version 2021-08-23 +## Version 2021-08-26 ## ## Pour une aide à l'installation, consulter le README ## -- 2.45.2 From 69cf57b8874eee1703f90543c93edc5c4f3ec2e1 Mon Sep 17 00:00:00 2001 From: NightPumpkin Date: Thu, 26 Aug 2021 12:30:35 +0200 Subject: [PATCH 3/3] flac to mp3 , readme --- Conversion FLAC vers MP3/readme.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Conversion FLAC vers MP3/readme.md diff --git a/Conversion FLAC vers MP3/readme.md b/Conversion FLAC vers MP3/readme.md new file mode 100644 index 0000000..51aa45e --- /dev/null +++ b/Conversion FLAC vers MP3/readme.md @@ -0,0 +1,6 @@ +Conversion FLAC vers MP3 +======== + +Ce script permet la conversion de vos flacs en MP3 320kbps de manière automatique. + +ATTENTION : Les fichiers flacs sont supprimées quand la conversion à réussie. \ No newline at end of file -- 2.45.2