sync/README.md

99 lines
2.9 KiB
Markdown
Raw Normal View History

2013-05-23 14:40:52 +00:00
Read before submitting an issue: https://github.com/calzoneman/sync/wiki/Reporting-an-Issue
===========================================================================================
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-10-12 06:34:54 +00:00
CyTube is a web application providing media synchronization, chat, and more for an arbitrary number of channels.
I began developing this as a hobby project, and when synchtube.com announced their closure, I
2013-04-09 21:44:47 +00:00
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-10-12 06:34:54 +00:00
Features
--------
- Standalone web/socket.io server
- Optional SSL support for socket.io and the account API
- Synchronized playback from the following sources:
- YouTube (individual videos + playlists)
- Vimeo
- Dailymotion
- Soundcloud
- Raw video/audio files (via JWPlayer)
- Embedding of the following sources:
- livestream.com
- twitch.tv
- justin.tv
- ustream.tv
- RTMP streams
- Icecast (via JWPlayer)
- Custom `<iframe>` and `<object>` embeds
- Channel customization
- HTML Message of the Day
- CSS
- JavaScript
- Permissions
- Tiered ranks (Site admin > Channel admin > Moderator > Leader > Member > Guest > Anonymous)
- Chat filters (based on regular expressions)
- Lock/unlock playlist to allow additions by non-moderators (configurable with permissions)
- Searchable library of videos
- Integrated YouTube search
- Save/load playlists per user account
- Polls
- Voteskip (can be disabled by a channel moderator)
- Auto-AFK status (can be configured per-channel)
- Leader
- Grants control of playback to a user (can pause/seek)
- Can also be used to grant temporary mod-like powers to a user
- Not necessary for synchronization as the server has an internal timer
- Channel state saves/loads on restart
- Account management
- Password change
- Password reset (via email)
- Profile avatar and text
- Moderation
- Mute users
- Kick users
- Ban users by name
- Ban users by IP address (and by /24 range)
- Administration
- Log viewer
- Global bans
- Search registered channels and users
- Currently loaded channels
2013-10-12 06:37:11 +00:00
- Stats (usercount, channelcount, RAM usage)
2013-02-16 17:19:59 +00:00
Installing
----------
2013-08-21 23:56:52 +00:00
Installation instructions are available here: https://github.com/calzoneman/sync/wiki/Installing
2013-04-09 21:44:47 +00:00
2013-02-16 17:19:59 +00:00
Running
-------
2013-10-12 06:13:48 +00:00
Start the server: `node index.js`
2013-02-16 17:19:59 +00:00
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