More > JRiver Media Center 32 for Windows

HTPC Interface

<< < (3/6) > >>

eve:
You could use a different frontend and just have JRiver handle the actual file playback?
That's what I do.
When I was using Emby (I use a custom system now), I had a button injected into the various interfaces that would make an MCWS call that told JRiver to play the content. So if your UI is on the TV, I'd recommend just making a little helper that can take a playback request, get rid of the navigation / view UI (however you handle that is up to you obv), spawn or focus JRiver and then initiate the playback, after that you can handle things like ensuring the JRiver display window is full screen or whatever. For returning to the UI, I'm not sure if JRiver has an 'exit after playback' now but if not you could lazily poll the playback state and destruct JRiver when it's done or almost done. Then you just refocus your UI.

There's LOTS of options for like library navigation and, if you ask me, they're all pretty garbage (bad metadata, dated internals, poor scaling for expansive libraries etc) but people like them! Kodi, Plex, Emby, Jellyfin, etc

ndgame:
I would love to try this.  Do you have any instructions on how to do this?

Thank You

eve:

--- Quote from: ndgame on January 22, 2024, 05:45:07 pm ---I would love to try this.  Do you have any instructions on how to do this?

Thank You

--- End quote ---

It's all going to depend on your setup and what your skills are. Are you using something like Plex right now?

ndgame:
I’m a Microsoft Engineer by trade.  What I don’t do is program lol

I have a windows 10 machine dedicated to my theater with a Nvidia 3090. 

For the past few months I have been using it with MadVR installed with Video Processor.  The reason I switched back to JRiver was because I wanted the latest version of MadVR.  When using VP I could only use version 113. 

I do have a Plex server setup on my Unraid NAS and a Emby server setup as well.   These are dockers in Unraid.

When I was using the PC as a Video Processor I ran everything through it with a capture card installed.

eve:

--- Quote from: ndgame on January 22, 2024, 06:19:00 pm ---I’m a Microsoft Engineer by trade.  What I don’t do is program lol

I have a windows 10 machine dedicated to my theater with a Nvidia 3090. 

For the past few months I have been using it with MadVR installed with Video Processor.  The reason I switched back to JRiver was because I wanted the latest version of MadVR.  When using VP I could only use version 113. 

I do have a Plex server setup on my Unraid NAS and a Emby server setup as well.   These are dockers in Unraid.

When I was using the PC as a Video Processor I ran everything through it with a capture card installed.

--- End quote ---

Okay rad. I'm more of a programmer now than I used to be but, I got this early stuff setup long before I was competent.

To get started like with the least amount of effort, you're gonna want to make a 'button' for the Emby / Plex web ui. You'll do this with a user script which injects a button and runs a function. I can see if I still have my code (haven't used emby or whatever for movies in a long time) but I'll explain what you do. You can in theory do this entirely in a browser, I found it easier to spin up a helper service (since I needed the focus / window control on the target playback systems anyways)

On a page for say a movie in Emby or Plex, you're gonna want to get the id of the media item, then you're gonna issue a request to the Emby/Plex api to get information about that id, from that response, you get the file path, so you can now transform that path as needed (since you may be accessing it over SMB or the docker may see different paths internally)  to send to JRiver with an MCWS request. You find a place to inject your button (I just did it next to the other play / resume buttons) and then when you click it, it can run your function.

Since I often have multiple versions of a movie and every film has an IMDB id, when I would request the specific item by ID, i'd pull the IMDB from it, and query for THAT within my library, giving me all the versions of said movie, then id sort them (largest, and then if the top matches are relatively similar in size, I pick the newest).

That's the most simple way to handle it. For a full 'experience' you'll want an application on target systems that can handle spawning and destructing JRiver plus whatever UI you want to use and managing the focus between them.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version