Node.JS Server and JavaScript/HTML Client for synchronizing online media
Go to file
calzoneman c28dc0d3d2 Fix #489
Channels are occasionally plagued by trolls who confuse users by
"hijacking" names of other users in the channel.  This is accomplished
by replacing certain letters with visually similar letters (in fact,
indistinguishable in some sans-serif fonts), e.g. replacing lowercase
'l' with capital 'I'

This commit replaces capital 'I', lowercase 'l', digit '1', lowercase
'o', uppercase 'O', and digit '0' with '_' and changes the matching for
isUsernameTaken() to a LIKE query.  Since '_' is a single character
wildcard, this causes the database to treat a username with one of these
simple replacements as already registered.
2015-06-19 16:44:25 -04:00
lib Fix #489 2015-06-19 16:44:25 -04:00
templates Add explicit warning that custom embeds cannot be synchronized 2015-06-19 08:39:11 -04:00
www Fix loading no_emotes setting 2015-06-19 14:49:49 -04:00
.gitignore Add caching to minify 2014-02-24 18:32:54 -06:00
LICENSE Update Copyright year; remove old junk 2014-12-31 12:06:29 -05:00
README.md Update Copyright year; remove old junk 2014-12-31 12:06:29 -05:00
changelog Update changelog 2013-12-26 21:54:35 -05:00
config.template.yaml Remove YouTube v2 API fallback since v2 is dead 2015-06-07 11:45:23 -04:00
import.js Fix import script 2014-03-01 17:43:03 -06:00
index.js Remove license banner from index.js (see LICENSE file) 2014-12-31 12:07:43 -05:00
package.json package.json: bump cytubefilters 2015-05-21 13:13:27 -04:00
run.sh Refactor out server init to index.js 2013-10-11 15:48:01 -05:00
update.js Move server files to lib/ to clean up root directory 2013-09-05 13:48:05 -05:00
version.py Fix version.py 2013-11-04 16:13:49 -06:00

README.md

Read before submitting an issue: https://github.com/calzoneman/sync/wiki/Reporting-an-Issue

calzoneman/sync

About

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 began polishing it and readying it for the public.

I am hosting a CyTube server at http://cytu.be

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.

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)
    • Google Docs videos
    • 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
    • Stats (usercount, channelcount, RAM usage)

Installing

Installation instructions are available here: https://github.com/calzoneman/sync/wiki/CyTube-3.0-Installation-Guide

Feedback

Please open a GitHub Issue.

License

Licensed under MIT. See LICENSE for the full license text.