sync/README.md

75 lines
2.4 KiB
Markdown
Raw Normal View History

2013-02-16 17:19:59 +00:00
calzoneman/sync
===============
2013-02-16 05:02:42 +00:00
2013-02-16 17:19:59 +00:00
About
-----
2013-04-09 21:44:47 +00:00
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.
2013-05-12 20:33:23 +00:00
I am hosting a CyTube server at http://cytu.be
2013-02-16 17:19:59 +00:00
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
2013-04-09 21:44:47 +00:00
jQuery as well as the APIs for various media providers.
The web interface uses Bootstrap for layout and styling.
2013-02-16 17:19:59 +00:00
2013-04-09 21:44:47 +00:00
The following media sources are currently supported:
- YouTube (individual videos)
- YouTube Playlists
- Vimeo
- Dailymotion
- Soundcloud
- Livestream.com
- Twitch.tv
2013-05-17 18:39:58 +00:00
- Justin.tv
2013-05-14 21:22:47 +00:00
- Ustream
2013-04-09 21:44:47 +00:00
- RTMP livestreams
2013-02-16 17:19:59 +00:00
Installing
----------
2013-05-12 20:33:23 +00:00
Installation instructions for specific distributions are available here: https://github.com/calzoneman/sync/wiki/Installing
2013-02-16 17:19:59 +00:00
This assumes you have Node.JS installed.
2013-04-09 21:44:47 +00:00
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
2013-04-14 23:16:48 +00:00
3. Install your distribution's `libmysqlclient` package.
3. Install dependencies: `npm install`
2013-04-09 21:44:47 +00:00
4. Edit `config.js` and input your database details and connection port
5. 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`
2013-02-16 17:19:59 +00:00
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
-------
2013-03-24 02:28:20 +00:00
Licensed under MIT
2013-02-16 17:19:59 +00:00
See LICENSE for the full license text