J'ai trouver !!!!
Il suffit juste de suivre l'exemple donner, c'est le create qui me deranger il change le chemin du fichier en son type de codage apparament.
Donc pour tout ceux qui veulent récupérer des tag de fichier multimedia video( mpeg,mpeg4, ogg, et autre) ainsi que audio( mp3 toute version de tag).
1. Télécharger taglib ici
http://www.taglibsharp.com/Main_Page
2. Trouver le .dll taglib-sharp.dll
3. le référer dans le programme
4. Utiliser cette ligne de commande
try
{
TagLib.File file = TagLib.File.Create ("/path/to/music/file.mp3");
// Read some information.
string title = file.Tag.Title;
int track = file.Tag.Track;
string album = file.Tag.Album;
string [] artists = file.Tag.Artists; // Remember, each song can have more than one artist.
... // Do stuff to title, album, artists.
// Store that information in the tag.
file.Tag.Title = title;
file.Tag.Track = track;
file.Tag.Album = album;
file.Tag.Artists = artists;
file.Save ();
}
Ceci simplifie la vie !!!