Page 3 of 15

Re: MediaMonkey

Posted: Tue Sep 30, 2008 7:37 pm
by Pako
GBWebmaster wrote:Does it mean, that this makro should work like a jukebox? For example, "The Beatles White Album" gets the Number "544"? That would be really great. :D
No, it was not meant. But it is an interesting idea, I think it will be implemented. :)
GBWebmaster wrote:Is it ever possible to choose one event with more than one remote press? :?:
Yes, it is possible. See, for example here: http://www.eventghost.org/forum/viewtopic.php?f=2&t=614
Pako

Re: MediaMonkey

Posted: Tue Sep 30, 2008 9:24 pm
by GBWebmaster
Pako wrote:But it is an interesting idea, I think it will be implemented. :)
I look forward to the makro :D

Re: MediaMonkey

Posted: Thu Oct 16, 2008 9:22 pm
by Pako
I did a new version (0.1.9) MediaMonkey plugin. There is now new feature Jukebox, which supports the payload of event.
Plugin you can download here.
Pako

Re: MediaMonkey

Posted: Sat Oct 18, 2008 12:32 pm
by GBWebmaster
Hello Pako,
I want to use your PlugIn, but it doesn't work. And I don't know why!

Should I save the File "AlbumListMM.txt" in a definite folder?
How must I configure the event "Multitab.Numpad?
How can I type the ID "641" for example?

Sorry for so many questions, but without a answer I cannot use this PlugIn.

GBWebmaster

Re: MediaMonkey

Posted: Sat Oct 18, 2008 1:17 pm
by Pako
GBWebmaster wrote:Should I save the File "AlbumListMM.txt" in a definite folder?
With the file "AlbumListMM.txt" you can do what you want. You can delete it. It is just a list of codes by which you can select and start the album. These codes are stored in the database MM as ID Album. EG-plugin file "AlbumListMM.txt" does not need.
GBWebmaster wrote:How must I configure the event "Multitab.Numpad?
Event Multitap.Numpad must be in the format "payload".
GBWebmaster wrote:How can I type the ID "641" for example?
I am about this issue does not understand. Can you clarify?
Pako

Re: MediaMonkey

Posted: Sun Oct 19, 2008 6:33 pm
by GBWebmaster
Hello Pako,
thank you for your instructions. Now it works perfect. This PlugIn is great, well done. Now I can delete my 300 makros and I will no longer problems with include new albums.

GBWebmaster

Re: MediaMonkey

Posted: Tue Oct 21, 2008 6:40 pm
by kleinerriese
hello,
I use the Plug-in and want to change the rating of a song with my remote contole but with the option "write to database"
i can only write one reating : I copy the Action "writing to Database" 5 times (for each star one) but when I change one I change all others ,too.
It would be realy nice if some one could help me please.

kleinerriese


ps sry for english (i tried my best^^)

Re: MediaMonkey

Posted: Tue Oct 21, 2008 8:41 pm
by Pako
Thank you for reporting bug.
Fixed version (now 0.1.10) you can download here.
Pako

Re: MediaMonkey

Posted: Wed Oct 22, 2008 10:25 am
by kleinerriese
wohw gread thx
it works fine

Re: MediaMonkey

Posted: Wed Apr 08, 2009 5:19 pm
by holyspidoo
Hi, amazing plugin!

I was wondering how to use the Get information macros? Namely, the get next track info.

Thank you

Re: MediaMonkey

Posted: Wed Apr 08, 2009 7:52 pm
by Pako
holyspidoo wrote:I was wondering how to use the Get information macros? Namely, the get next track info.
It's totally simple.
Paste into EG configuration tree following code:

Code: Select all

<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="851">
    <Macro Name="Get basic song info of next track">
        <Action>
            MediaMonkey.GetBasicSongInfoNextTrack([False, False, True, False, False, False, True, False, False, True, True, False, False, False, False, False, False])
        </Action>
        <Action>
            EventGhost.ShowOSD(u"{eg.result.replace(',','\\n')}", u'0;-35;0;0;0;700;0;0;0;238;3;2;1;66;Comic Sans MS', (255, 255, 0), (0, 0, 0), 0, (0, 0), 0, 10.0, True)
        </Action>
    </Macro>
</EventGhost>
You must see the macro, such as in the image.
Information that you want to see, you choose in the configuration dialog of the action.
Pako

Re: MediaMonkey

Posted: Wed Apr 08, 2009 8:47 pm
by holyspidoo
Many thanks!

Using the Iphone and the EG webserver to control media monkey, so I'll try and get this information displayed on the web page.

Re: MediaMonkey

Posted: Sun Aug 30, 2009 10:47 pm
by jitterjames
I'm not sure how the shuffle feature is supposed to work in the macro "Load Playlist by Filter"

I like to get a random list back when I use this macro. I have modified the plugin with this line

Code: Select all

if (shuffle):
            sql+=" ORDER BY RANDOM()"
around line 2337 of __init__.py

This works for me, but I'd like to see this as part of the standard plugin. Would this be possible? Some care has to be taken to avoid conflicts if you also select the sort option.

thanks, I love the mediaMonkey plugin!

Re: MediaMonkey

Posted: Mon Aug 31, 2009 1:12 pm
by Pako
Done.
Here you can download the new version.
I am pleased, that my plugin (and especially the action "Load Playlist by Filter") is used :D .
The biggest problem is the long response. I already have wanted to revise the plugin to run in a separate thread.
I can not but it - see this topic (no reply).
Pako

Re: MediaMonkey

Posted: Mon Aug 31, 2009 1:21 pm
by jitterjames
cool. thanks Pako.

I have another idea that should be fairly easy to do. For advanced uses, it would be really great if we could build our own sql query strings, and have a simple action to send them to MM. Basically it would require a very simple action with just a text box. Then you could send it to MM the same way you are sending the string that your loadplaylistbyfilter is building.

please... :D

I think MM is using sqLite right? Maybe the description of the action could include a link to a sqLite referece website.