If anyone cares about this, they should let us know and help us
figure out how to compile and test it on a current Debian or Ubuntu
system.

I still use this, though on Gentoo, not Debian or Ubuntu. It was removed from the Gentoo tree years ago, also, but still compiles and runs just fine if you pull the old e-builds from their CVS. I'm happy to help test it there.

I also apply the attached patch in my builds, which makes its handling of the PERFORMER and ARTIST tags identical to that of the Vorbis plugin, which is useful when you want to transcode from FLAC to Vorbis without retagging things just to get them to show up the same way in the XMMS track list.
diff -Naur flac-1.1.2-orig/src/plugin_xmms/tag.c flac-1.1.2/src/plugin_xmms/tag.c
--- flac-1.1.2-orig/src/plugin_xmms/tag.c	2005-01-24 23:26:34.000000000 -0500
+++ flac-1.1.2/src/plugin_xmms/tag.c	2006-09-17 11:28:11.000000000 -0400
@@ -112,9 +112,9 @@
 
 	XMMS_NEW_TITLEINPUT(input);
 
-	input->performer = local__getstr(performer);
+	input->performer = local__getstr(artist);
 	if(!input->performer)
-		input->performer = local__getstr(artist);
+		input->performer = local__getstr(performer);
 	input->album_name = local__getstr(album);
 	input->track_name = local__getstr(title);
 	input->track_number = local__getnum(tracknumber);
_______________________________________________
flac-dev mailing list
[email protected]
http://lists.xiph.org/mailman/listinfo/flac-dev

Reply via email to