Stream blu-ray player to PC

2

1

I'm looking into buying a Blu-ray player and I want to stream it over my home network so I can be able to watch Blu-Rays anywhere in the house with any laptop or desktop. (Running windows 10)

I've seen tons of articles for streaming a PC onto a Blu-ray player, but I want to do the reverse and stream the Blu-ray player onto my Laptop.

Both the Blu-ray player and the PC will both be hard wired into the same router.

I've read some stuff on DLNA, but I don't fully understand it and how I could use that information to do what I want.

If anyone has done this, or has suggestion on how to do this, that would be much appreciated!

Timmy

Posted 2015-11-03T18:19:22.403

Reputation: 131

What about DNLA don't you understand specifically? – Ramhound – 2015-11-03T18:41:26.443

What I understand, which could be wrong, DLNA is basically a standard so many different devices can communicate with each other with somewhat ease. I see things about using DLNA built into the Blu-Ray player to be able to stream music, pictures, etc. from the PC to the Blu-ray player to view on the TV. Is there a way that I can use DLNA to manipulate it so I can watch the movie in the blu-ray player on the PC I'm sitting at? – Timmy – 2015-11-03T19:01:02.380

No; You could play a movie on your PC and send it to your player though. The player does not have the capability to send it to your PC though. – Ramhound – 2015-11-03T19:03:15.317

Ah, bummer. That would have been nice if there was a trick to make something like that work, but that's life! You can put that in an answer and I'll accept that. – Timmy – 2015-11-03T19:06:06.153

Answers

0

I've been looking into this recently in relation to one of my own Blu-ray projects. Here's what I've found out:

Rather surprisingly, this is actually possible (soon). With the upcoming version 18 of Kodi, you can actually stream a Blu-ray remotely. Either from a HTTP source or from a WebDav source. Simply copy the Blu-ray files to your local webserver, or webdav folder. Then go to Kodi and click "Add source".

For my own tests I've had the nightly build of Kodi v18 play one of my own Blu-ray projects from an HTTP source streaming from my webhost provider. Apart from the current bugs in Kodi v18, it played fine.

I also tested with VLC. You can't add an HTTP or WebDav source with VLC though, so you have to mount such a source yourself:

net use w: http://www.example.com/mywebdavfolder/

vlc bluray://w: --bluray-menu

Should theoretically work - but VLC currently times out when I try to play my Blu-ray project from the Internet. You might have better results with a local server though.

Remember though: You need to have Java installed on whatever device you wish to watch the Blu-ray on. Java is needed to handle the menus on most Blu-ray Discs. (And also keep in mind that you need a 32bit Java version for a 32bit software player. Likewise, if your software player is 64bit, then you need a 64bit Java installed. Visit java.com from a 32bit or 64bit browser to download the correct bit version of Java).

Something I've been thinking about trying out in this regard, is to add a small webserver on the Blu-ray Disc itself. That way, you should (theoretically) be able to just put the disc in your hardware Blu-ray player, and then stream it directly from the player to any device in your LAN via Kodi.

It should be noted that all of my tests are done with homebrew projects, that doesn't contain any Digital Rights Management.

mr_lou

Posted 2015-11-03T18:19:22.403

Reputation: 141