Page 79 of 81

Re: NowPlaying plugin - Multiple Media Player Support

Posted: May 7th, 2014, 3:09 am
by Qub3d
It appears that musicBee (CD Art Display interface) isn't working. I haven't done too much in depth searching yet, but I've tried multiple skins including enigma (my gold standard) and I can say it isn't bad skins. It could be CAD, musicBee, or NowPlaying.

I'm just wondering if anyone can duplicate this? The issue is that the plugin appears to not be picking up anything from MusicBee -- it doesn't even realize its running. I'm using MusicBee v2.2.5069 and the latest stable version of Rainmeter (3.0.2) on Windows 7.

Edit: The CD Art Display plugin was disabled by MusicBee. If anyone else has this issue, make sure the CAD Plugin is enabled under MusicBee's plugin menu.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: May 30th, 2014, 4:22 am
by wadieb
This could be a stupid question or the wrong place to ask but I'm new to rainmeter and learning still. Is there any way too change which sites this dll uses for lyrics? like add rapgenius or another site that has different music? Currently most of my songs have no lyrics on the websites chosen.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: June 1st, 2014, 6:42 am
by poiru
wadieb wrote:This could be a stupid question or the wrong place to ask but I'm new to rainmeter and learning still. Is there any way too change which sites this dll uses for lyrics? like add rapgenius or another site that has different music? Currently most of my songs have no lyrics on the websites chosen.
Sadly, no.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: June 4th, 2014, 4:54 pm
by radi0n
There is a chance that the plug would read cover arts with different name than folder.jpg/png ?
Lots of my covers have different names like: front, cover ect.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: June 4th, 2014, 5:31 pm
by fonpaolo
It must be an image contained in the music folder (where you have the songs), to test my player skin I use some images to display a cover art, with different names, even .bmp files and they're all correctly shown.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: June 4th, 2014, 6:35 pm
by radi0n
Of course i have my covers in the music folder. But plugin only reads filenames folder.jpg/png
I use enigma skin. Foobar is my music player.

Re: NowPlaying plugin - Multiple Media Player Support

Posted: June 9th, 2014, 3:02 pm
by radi0n
radi0n wrote:Of course i have my covers in the music folder. But plugin only reads filenames folder.jpg/png
I use enigma skin. Foobar is my music player.
anyone?

Re: NowPlaying plugin - Lyrics

Posted: September 14th, 2014, 5:53 pm
by RECOGNIZ3R
Hi. Sorry for my english.

Is it possible show the lyrics embedded in file tags?

Re: NowPlaying plugin - Multiple Media Player Support

Posted: January 19th, 2015, 2:23 pm
by dameyann
Hi.
Is anyone here?
I'm using NowPlaying plugin with AIMP3.60, and found two problems.

1. Can not get embeded cover image from a flac file with multi-tracks.
It's because AIMP add ":N" (N is 'track number -1' for each track) to filename.
This is good for searching lyrics on changing filename,
but FindCover() searchs cover from "X:\music\foo\bar.flac:0", and never found.

2. Can not get "year" (PlayerType=Year is always 0).
No code about "year" is found in PlayerAIMP.cpp

Below patch works fine for me, but not tested well.
Can anyone test (and commit?) it?

Code: Select all

--- PlayerAIMP.cpp.org	2015-01-19 18:45:24.264288500 +0900
+++ PlayerAIMP.cpp	2015-01-19 22:48:36.351280200 +0900
@@ -181,9 +181,31 @@
 			++m_TrackCount;
 
 			if (m_Measures & MEASURE_COVER) FindCover();
+			if (m_CoverPath.empty())
+			{
+				if (filepath.find_first_of(':') != filepath.find_last_of(':'))
+				{
+					filepath = filepath.substr(0, filepath.find_last_of(':'));
+					TagLib::FileRef fr(filepath.c_str(), false);
+					if (!fr.isNull() && CCover::GetEmbedded(fr, m_TempCoverPath))
+					{
+						m_CoverPath = m_TempCoverPath;
+					}
+				}
+			}
 
 			if (m_Measures & MEASURE_LYRICS) FindLyrics();
 		}
+		TagLib::FileRef fr(filepath.c_str(), false);
+		TagLib::Tag* tag = fr.tag();
+		if (tag)
+		{
+			m_Year = tag->year();
+		}
+		else
+		{
+			m_Year = 0;
+		}
 	}
 }

Re: NowPlaying plugin - Multiple Media Player Support

Posted: August 2nd, 2015, 5:15 pm
by madhaunter
Hi !

Awesome work here !
Is there a way to add some players by ourselves ? I'd like to add Sony Media Go :)