An extension that lets you watch your favourite Movies, TV Series, and much more with your friends and family.
It works on any of your streaming services like Netflix, Prime Video, Hulu, YouTube, or any other.
And one more thing,
ONLY THE HOST IS REQUIRED TO HAVE A SUBSCRIPTION
Highly recommended to Use Chromium
- Go to
chrome://extensions
- Then click
Load Unpacked
- Go to
WatchParty/extension
in the browse folder and select - Enable the extension if disabled and then pin the extension to the title bar
- Development:
- The
content.js
logs will be displayed in the website console itself - The logs of
popup.js
can be shown by: Right Click > Inspect pop-up > Console
- The
- run
npm install
thennpm start
to run the application. Then open your browser athttp://localhost:3016
or your own defined port/url in the config file. - (optional) edit the
src/config.js
file according to your needs and replace thessl/key.pem
ssl/cert.pem
certificates with your own.
- Type
chrome://settings/content/insecureContent
in chrome URL bar. - Select
Add
- Now add the base Url of the website.
- Ex for youtube:
[*.]youtube.com
- Ex for youtube:
- Then start streaming on that website using the extension
WatchParty
│
├── extension : Contains Chrome Extension Related Files
│ ├── content.js : Logic Code for JS injection into current tab
│ ├── images : Images used by Extension, also include 'App Logo'
│ │ ├── get_started128.png
│ │ ├── get_started16.png
│ │ ├── get_started32.png
│ │ └── get_started48.png
│ ├── libs : Libraries used by content.js
│ │ ├── libs.js : Include socket.io, mediasoupclient, EventEmitter
│ │ └── RoomClient.js : All the tasks related to Room Happen Here
│ ├── manifest.json : Manifest/Info file for chrome extension
│ ├── options.html : Options Page for chrome extension (Currently unuseful, maybe later)
│ ├── options.js : JS for options.html
│ ├── popup.html : Render popup
│ └── popup.js : JS for popup and main wrapper file for calling functions
├── LICENSE
├── package.json
├── package-lock.json
├── public
│ ├── index.js : JS fuction for index.html, main frontend file
│ ├── modules
│ │ └── mediasoupclient.min.js
│ └── RoomClient.js : All the tasks related to Room Happen Here
├── README.md
├── src
│ ├── config.js : SFU config
│ ├── Peer.js : Peer logic here
│ ├── Room.js : Room logic here
│ └── server.js : Server file, main backend file
├── ssl
│ ├── cert.pem : ssl cert
│ └── key.pem : ssl key
└── views
└── index.ejs : renders frontend
- For extension:
extension
- For backend:
src
- For frontend:
public
for JSviews
for html, css
WatchPlus
│
├── extension
│ ├── content.js
│ ├── libs
│ │ └── RoomClient.js
│ ├── popup.html
│ └── popup.js
├── public
│ ├── index.js
│ └── RoomClient.js
├── src
│ └── server.js
└── views
└── index.ejs
- Mesh topology peer-to-peer network :: Check branch
Mesh_Network
- Making extension
- Making client UI
- Making backend SFU server :: SFU lib used : mediasoup
- Making Host from extension
- Host/Client name handling
- Seperate rooms
- Extension UX for rooms
- Chat part
- Chat microinteractions
- Play/Pause part
- Jump to time and Slider part
- Show current time and duration in Client side
- HTML/CSS injection on Host
- Deployment and Testing
- There is a de-sync in the audio-video stream from the host
- When directly sharing a video, and either its src changes (ex. youtube ads) or the video ends, transmission freezes
- Extension popup closes when share popup comes, thus link not copied.
- Site on accessible even from within the same network
- Still on HTTP, so extension can't be run on websites directly.
- Netflix
seekto
doesn't seem to work. - Noise in audio when stream changed multiple times
- in
config.js
replace theannouncedIP
with your public IP address of the server (important) and modify the port you want to serve it in. - add firewall rules of the port of the webpage (default 3016) and the RTC connections (default UDP 10000-10100) for the machine.
Note :
- Best to run the project on a Linux system as the mediasoup installation could have issues by installing on windows. If you have a windows system consider installing WSL to be able to run it.
- installing wsl on windows 10