Node.JS Server and JavaScript/HTML Client for synchronizing online media
Go to file
calzoneman 3f5ec309e9 Tweak ACL behaviour
ACL is only updated when you first join, when someone's rank changes, or if
you click the Channel Ranks tab
2013-04-23 13:47:09 -05:00
www Tweak ACL behaviour 2013-04-23 13:47:09 -05:00
LICENSE Change license to MIT 2013-03-23 21:28:20 -05:00
README.md Add package.json 2013-04-14 18:16:48 -05:00
auth.js Implement ACL for channel owners (Issue #42) 2013-04-22 22:28:40 +04:00
channel.js Tweak ACL behaviour 2013-04-23 13:47:09 -05:00
chatcommand.js Implement AFK functionality [Issue #37] 2013-04-19 14:50:08 -05:00
config.js Change quotes to be consistent 2013-03-24 12:23:48 -05:00
database.js Implement ACL for channel owners (Issue #42) 2013-04-22 22:28:40 +04:00
get-info.js Minor fix- greentext and escaping youtube queries 2013-04-17 23:24:37 -05:00
logger.js Improve logging 2013-03-27 14:28:51 -05:00
media.js Continue refactoring 2013-04-02 22:56:44 -05:00
package.json Tweak express instance to support /r/channel form 2013-04-22 14:42:39 -05:00
poll.js Finish refactoring 2013-04-03 12:47:41 -05:00
rank.js Implement ACL for channel owners (Issue #42) 2013-04-22 22:28:40 +04:00
run.sh Fix bad MySQL results crashing it 2013-03-18 12:17:56 -05:00
server.js Tweak express instance to support /r/channel form 2013-04-22 14:42:39 -05:00
user.js Tweak ACL behaviour 2013-04-23 13:47:09 -05:00

README.md

calzoneman/sync

About

CyTube (formerly Sync) is a server/client combination providing media synchronization, chat, and administration for an arbitrary number of channels. I began developing this as a hobby project, and when Synchtube announced their closure, I began polishing it and readying it for the public.

I am hosting a CyTube server at http://cytube.calzoneman.net

The serverside is written in JavaScript and runs on Node.JS. It makes use of a MySQL database to store user registrations, cached media metadata, and data about each channel.

The clientside is written in JavaScript and makes use of Socket.IO and jQuery as well as the APIs for various media providers. The web interface uses Bootstrap for layout and styling.

The following media sources are currently supported:

  • YouTube (individual videos)
  • YouTube Playlists
  • Vimeo
  • Dailymotion
  • Soundcloud
  • Livestream.com
  • Twitch.tv
  • RTMP livestreams

Installing

This assumes you have Node.JS installed. I'm using v0.10, please feel free to report which versions do/do not work. I recommend using at least v0.8.20 due to a bug in previous versions of node that caused sketchy client connections to crash the server.

First install MySQL on the server. There are many online tutorials for setting up MySQL on various operating systems. I recommend installing phpMyAdmin so that you have a nice database administration interface. Create a new user and database, and make sure the user has full permissions for the database.

Then, follow these instructions to install CyTube:

  1. Clone this repository (git clone https://github.com/calzoneman/sync)
  2. cd to the directory containing the source files
  3. Install your distribution's libmysqlclient package.
  4. Install dependencies: npm install
  5. Edit config.js and input your database details and connection port
  6. Edit www/assets/js/iourl.js and change the value of IO_URL to yourhostname:port where port is the port defined in config.js

Running

Start the server: node server.js You should now be able to connect via yourhostname:port where port is the port you defined in config.js

Feedback

Please open a GitHub Issue.

License

Licensed under MIT See LICENSE for the full license text