You are viewing our Forum Archives. To view or take place in current topics click here.
Netflix Party Play?
Posted:

Netflix Party Play?Posted:

Cartel_0
  • Challenger
Status: Offline
Joined: Jun 29, 20149Year Member
Posts: 125
Reputation Power: 4
Status: Offline
Joined: Jun 29, 20149Year Member
Posts: 125
Reputation Power: 4
I was wondering if anyone here has any technical knowledge of how the old Netflix Party Play function on Xbox 360/Playstation 3 used to work? Basically it let you and your friend watch the same movie at the same time, but I have no idea how it accomplishes this. It's probably a long shot, but if anyone has any idea how it works that would be great, I kind of need to know how it works for a project I am working on. Thanks.
#2. Posted:
nolanberollin
  • Shoutbox Hero
Status: Offline
Joined: Jul 28, 20158Year Member
Posts: 738
Reputation Power: 442
Status: Offline
Joined: Jul 28, 20158Year Member
Posts: 738
Reputation Power: 442
I remember this but I have no idea how it worked. The only thing I know is that the movie would always start 2 minutes after my friends movies started. So it wasn't perfected.
#3. Posted:
Cartel_0
  • Challenger
Status: Offline
Joined: Jun 29, 20149Year Member
Posts: 125
Reputation Power: 4
Status: Offline
Joined: Jun 29, 20149Year Member
Posts: 125
Reputation Power: 4
Convicts- wrote I remember this but I have no idea how it worked. The only thing I know is that the movie would always start 2 minutes after my friends movies started. So it wasn't perfected.
Yea, it definitely had it's flaws but I remember that it used to work for the most part. I am looking into making something similar to it but have no idea really of how it works.
#4. Posted:
ObscureCoder
  • Resident Elite
Status: Offline
Joined: Jun 29, 201310Year Member
Posts: 211
Reputation Power: 13
Status: Offline
Joined: Jun 29, 201310Year Member
Posts: 211
Reputation Power: 13
Cartel_0 wrote
Convicts- wrote I remember this but I have no idea how it worked. The only thing I know is that the movie would always start 2 minutes after my friends movies started. So it wasn't perfected.
Yea, it definitely had it's flaws but I remember that it used to work for the most part. I am looking into making something similar to it but have no idea really of how it works.


In a perfect world, you'd attempt to sync the streaming of video data from the server to the connected clients (in the party) - so that one doesn't buffer when the others are playing perfectly. This however is very impractical as some connections are weak and shit.

I once made a demo of this concept using a HTML5 video player and AJAX. The JS would use AJAX to poll a PHP script to see if the 'cinema' was playing (my concept was an online cinema experience - chat during film, unanimous pause, screenshots, whiteboard etc.)
The video being played was rather compressed. Like a 5mb mp4 file.

Since both me and my friend's connections were similar in terms of speed - it worked very well. Another thing you could do, which would cause major annoyance, is: every like 5 mins have all the clients send all of their current movie positions in seconds and then find a mean time and ask if the clients want to sync (subtly, of-course, as to not break the movie experience).

It's hard to realtime synchronize data streaming from servers as connections vary. However, you can create something that's usable - just not perfect (if it was like a family LAN application - it'd work incredibly well).

AJAX probably isn't the best solution over long-polling but it worked for me.
That's the basic concept - you can probably find more from a google search as this is my understanding and I'm sure there are some media streaming experts out there who can spread some light on how it all works.

Depends what language(s) you wanna use (desktop or website).
#5. Posted:
vRice
  • Winter 2016
Status: Offline
Joined: Dec 17, 201112Year Member
Posts: 823
Reputation Power: 41
Status: Offline
Joined: Dec 17, 201112Year Member
Posts: 823
Reputation Power: 41
ObscureCoder wrote
Cartel_0 wrote
Convicts- wrote I remember this but I have no idea how it worked. The only thing I know is that the movie would always start 2 minutes after my friends movies started. So it wasn't perfected.
Yea, it definitely had it's flaws but I remember that it used to work for the most part. I am looking into making something similar to it but have no idea really of how it works.


In a perfect world, you'd attempt to sync the streaming of video data from the server to the connected clients (in the party) - so that one doesn't buffer when the others are playing perfectly. This however is very impractical as some connections are weak and shit.

I once made a demo of this concept using a HTML5 video player and AJAX. The JS would use AJAX to poll a PHP script to see if the 'cinema' was playing (my concept was an online cinema experience - chat during film, unanimous pause, screenshots, whiteboard etc.)
The video being played was rather compressed. Like a 5mb mp4 file.

Since both me and my friend's connections were similar in terms of speed - it worked very well. Another thing you could do, which would cause major annoyance, is: every like 5 mins have all the clients send all of their current movie positions in seconds and then find a mean time and ask if the clients want to sync (subtly, of-course, as to not break the movie experience).

It's hard to realtime synchronize data streaming from servers as connections vary. However, you can create something that's usable - just not perfect (if it was like a family LAN application - it'd work incredibly well).

AJAX probably isn't the best solution over long-polling but it worked for me.
That's the basic concept - you can probably find more from a google search as this is my understanding and I'm sure there are some media streaming experts out there who can spread some light on how it all works.

Depends what language(s) you wanna use (desktop or website).


**** that it'd be easier to invite them over, even if they lived in Kenya 1234((
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.