So, I have either edit in source of Rhythmbox (which is a better solution), or find a library to enable me to re-write these metadata.
I went with solution #2, I have do some search and found TagLib, a very awesome KDE library that makes this task very easy. Building the library was a straightforward task, I can say it is the first lib that I can build from source in my life .) .
Example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <taglib/fileref.h> | |
#include <taglib/tag.h> | |
using namespace std; | |
using namespace TagLib; | |
int main(void) | |
{ | |
FileRef f("/home/mhewedy/Desktop/copy_dump.mp3"); | |
cout << f.tag()->artist() << endl; | |
f.tag()->setArtist("Fairouz"); | |
f.tag()->setTitle("MySong"); | |
f.save(); | |
return 0; | |
} |
$cc -o taglibClient taglibClient.cc -ltag
$./taglibClient
Fairouz
2 comments:
Did you use it with C# ??
I wonder how you extract the arabic Title, Album, etc with the correct encoding ??
Hey lelO,
I've used this lib with C++ (see the code snippet)
Have you tried use it to extract Arabic text and didn't work? (In the example I am extracting and supplying English text, However, I think It could edit in Arabic)
see http://m-hewedy.blogspot.com/search/label/lib_taglib
Post a Comment