En bref: j'ai couru:
sudo apt install youtube-dl ffmpeg id3v2 -y
echo "youtube-dl version:"
youtube-dl --version
echo "id3v2 version:"
id3v2 --version
youtube-dl --extract-audio --audio-format mp3 "https://youtu.be/Sqk3B2041uk" --output test.mp3
id3v2 -t "cooltitle" -a "coolartist" test.mp3
La sortie était normale:
*normal output of apt install*
youtube-dl version:
2019.01.17
id3v2 version:
id3v2 0.1.12
Uses id3lib-3.8.3
This program adds/modifies/removes/views id3v2 tags,
and can convert from id3v1 tags
[youtube] Sqk3B2041uk: Downloading webpage
[youtube] Sqk3B2041uk: Downloading video info webpage
[download] test.mp3 has already been downloaded
[download] 100% of 2.07MiB
[ffmpeg] Post-process file test.mp3 exists, skipping
En théorie, ce script devrait télécharger un fichier mp3 et définir son titre sur "cooltitle" et son artiste sur "coolartist". Mais quand j'ai ouvert le fichier test.mp3 en utilisant rythmbox, il ne montre pas le titre et l'artiste corrects.
Est-ce que quelqu'un sait pourquoi cela ne fonctionne pas ou comment y remédier?