View Single Post
Old 03-21-2012, 03:44 PM   #3571
Mark Nord
2B || !2B
Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.
 
Posts: 854
Karma: 327896
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
Just for the records.

Following code form fskcache.xs looks promising to extract more tags from mp3
Code:
	this.FskCache.audio.fromFile = function (path, mime, player) {
		var local, value, thumbnail, art, bitmap, bounds;
		<global>.FskCache.media.fromFile.call(this, path, mime);
		try {
			if (!player) {
				local = player = new <global>.Media.Player.File(path, mime);
			}
			value = player.getMetaData('FullName');
			if (value) {
				this.title = value;
			}
			value = player.getMetaData('Album');
			if (value) {
				this.album = value;
			}
			value = player.getMetaData('Artist');
			if (value) {
				this.artist = value;
			}
But atm no time/interest to look further into this.
Mark Nord is offline   Reply With Quote