Getting Started/Discord RPC Plugin

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Getting Started/Discord RPC Plugin

Re: Getting Started/Discord RPC Plugin

by msfreed » Fri Oct 13, 2023 7:33 pm

TIV73 :

Really new to the MM5 thing. I was looking and saw an offer for some Example code on how to communicate with MM5 Via C#... I would appreciate that very very much!!! I am new so I cannot PM... :(

Thank you in advance :)

Re: Getting Started/Discord RPC Plugin

by Hayatory » Mon Dec 20, 2021 12:25 pm

mahduse wrote: Thu Dec 31, 2020 4:12 am Sorry it is all working so far... no reply required anymore
Did you ever upload it anywhere?

Re: Getting Started/Discord RPC Plugin

by Peke » Fri Jan 01, 2021 10:37 pm

Hi,
Even I wish you Happy Monkeying and New Year?

Re: Getting Started/Discord RPC Plugin

by mahduse » Thu Dec 31, 2020 4:12 am

Sorry it is all working so far... no reply required anymore

Re: Getting Started/Discord RPC Plugin

by mahduse » Thu Dec 31, 2020 4:03 am

Hi I started to use the api as stated, but I get only the app.* stuff working.
When I tried to start stop play...

Code: Select all

var request = {id:56,method:'Runtime.evaluate',params:{expression:'player.playAsync()'}}  
I get the following JSON back....

Code: Select all

{
  "id": 56,
  "result": {
    "result": {
      "type": "object",
      "className": "Object",
      "description": "Object",
      "objectId": "{\"injectedScriptId\":1,\"id\":1}"
    }
  }
}
Do you have some better samples?
Is the API still up2date?
Probably the usage is not working....

Re: Getting Started/Discord RPC Plugin

by malkierian » Mon Apr 13, 2020 12:56 pm

So, I finally revisited this, and discovered a Node app called Browserify that seems to do just about everything I would have needed, except that the method I need to use to actually broadcast RPC changes uses a module that isn't available through Browserify (Node's net module). I'm in contact with the author of the JS framework for Discord's RPC, as well as on the Browserify IRC channel, to see if there's a way around that, but the only other option I could see is if you were to use Electron, which bridges Node and Chromium in one platform (which, though I don't know for sure as I've never transferred a strictly Chromium project to Electron, would probably be ridiculous to do for just one script).

EDIT: to be more specific, Node's net module is TCP connections, which is only experimentally available in Chrome, and I don't know if that is also available in chromium.

Re: Getting Started/Discord RPC Plugin

by Garion525 » Fri Aug 24, 2018 6:08 pm

Let me know when you get this working, I have been looking everywhere for a plugin for MM and Discord.

Re: Getting Started/Discord RPC Plugin

by TIV73 » Sun Aug 12, 2018 10:35 am

From the looks of it you are going for a native implementation, but in case you still use the workaround via .net you might want to have a look at the github page for MediaMonkey.Net again. I just pushed several updates to the dev branch , which is pretty much a complete rewrite of the original plugin which and now uses an asynchronous implementation of most calls and offers event based updates to avoid having to constantly poll mediamonkey for updates.

Re: Getting Started/Discord RPC Plugin

by malkierian » Tue Jul 31, 2018 11:53 am

I will appreciate anything you can do, but if necessary, I will figure out how to interface with Discord directly, since it is open-source, and I probably only need certain aspects of the API.

Re: Getting Started/Discord RPC Plugin

by PetrCBR » Tue Jul 31, 2018 10:53 am

Hmm ... implement node.js core will not be easy ... it is using so much methods from native code of Node :-/.

Re: Getting Started/Discord RPC Plugin

by PetrCBR » Tue Jul 31, 2018 4:14 am

Hmm ... it will probably require to somehow include node runtime into script folder .. will try.

Re: Getting Started/Discord RPC Plugin

by malkierian » Mon Jul 30, 2018 7:02 pm

Alright, this is the folder that was created with the libraries and their prerequisites.

https://www.dropbox.com/s/4pm0aveljkj8z ... s.zip?dl=0

These were installed into the project using node/NPM.

Re: Getting Started/Discord RPC Plugin

by PetrCBR » Mon Jul 30, 2018 3:15 pm

I understand ... you can put them into folder together with your script, but question is how to load them (as we don't use any 3rd party scripts and we don't use require) and i can help with that if you need ... but i need any sample library you need to use in your script.

Re: Getting Started/Discord RPC Plugin

by malkierian » Mon Jul 30, 2018 2:56 pm

These are very specific to the Discord Rich Presence API. Only my addon would benefit from you including them in source. Which is why I asked about including them in the scripts folder.

Re: Getting Started/Discord RPC Plugin

by PetrCBR » Mon Jul 30, 2018 2:18 pm

We're not using 3rd party modules. If you can, send me some of them and will try how to include (petr at mediamonkey dot com).

Top