Modification des metas d’un fichier OGG
Date: 1/12/2008 | Catégories: Open-source,Systeme | Tags: meta,ogg,Open-source
En recherchant un moyen simple et modulable (en ligne de commande donc ;)) pour modifier les metas tags des fichiers au format OGG (Theora/vorbis and co), je suis tombé sur le script suivant: tagtheora (sous licence GPL).
Il prend en entrée un fichier OGG et un certain nombre de paramètres comme:
--title TITLE
--artist ARTIST
--album ALBUM
--license LICENSE
--copyright COPYRIGHT
--date DATE
--location LOCATION
--organization ORGANIZATION
--comment COMMENT
En sortie, on a le même fichier mais avec les metas données fixés.
Installation
Il faut suivre les étapes suivantes (sous Ubuntu):
cd /usr/src/
sudo apt-get install python-mutagen
sudo wget http://open-source.ecchi.ca/source/tagtheora0.2.1.tar.gz
sudo tar zxvf tagtheora0.2.1.tar.gz
cd tagtheora/
sudo cp tagtheora.py /usr/local/bin
Utilisation (exemples)
Pour ajouter un titre dans une vidéo, il suffit de saisir la commande suivante:
tagtheora.py --title "Big Buck bunny" hd-big_buck_bunny.ogg
Pour voir la listes des metats tags d'un fichier, on peut utiliser la commande:
tagtheora.py --show hd-big_buck_bunny.ogg
>>> title: Big Buck bunny
Et voilà, un petit script de plus à garder sous le coude<.p>