live
Repository for live.karaokes.moe - Fork from AnimeOpenings : https://github.com/AniDevTwitter/animeopenings Live at https://live.karaokes.moe
Summary
| Latest Version | Unknown |
|---|---|
| License | Unknown |
| CI Status | Failing |
| Stars | 1 |
| Forks | 2 |
| Open Issues | 0 |
| Last Commit | 2026-08-23 |
| Downloads | 0 |
| Last Indexed | 2026-09-06 07:37 |
Tags
Installation
nimble install live
choosenim install live
git clone https://gitlab.com/karaokemugen/sites/live
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| live | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://gitlab.com/karaokemugen/sites/live |
|---|---|
| Homepage | https://gitlab.com/karaokemugen/sites/live |
| Registry Source | gitlab |
README
animeopenings
Maintainers: Quad (GitHub, Twitter) Yay295 (GitHub)
live.karaokes.moe Fork
This is a fork from AnimeOpenings for live.karaokes.moe. It only contains customization modifications. We try as much as possible to open issues upstream so it gets fixed for everyone else, not just for Karaoke Mugen.
Same goes for patches and fixes we're going to make. Pushing patches upstream is very important to us. Giving back what you take from Open Source is important.
Differences between fork and upstream
- [PR sent, to be updated with new commits] Localization
- [PR sent, to be (eventually) replaced with the cache-based one] SSR search
- [PR Sent, to be updated with new commits] Gain support to normalize songs
- [PR Sent] Jingles
- [PR to be created] SSR search (based on
searchbase.php) - [PR to be created] UI Patches (update of Font Awesome)
- [PR to be created] Playlist feature repaired with support for SSR search
- [(maybe) PR to be created] mp3 file support (with background)
- [(maybe) PR to be created] Songwriters in
names.php
Issues
Keep in mind that issues with live.karaokes.moe might be general issues with AnimeOpenings. As such, when opening an issue here, we will first identify where the problem comes from and try to fix it if we can. If not, we'll open an issue on AnimeOpening's Github.
For devs : adding/syncing the upstream remote
When fiddling with this code, remember to add the upstream remote :
git remote add upstream https://github.com/AniDevTwitter/animeopenings.git
Fetch :
git fetch upstream
git merge upstream/master
git push
Below, the rest of this README :
Requirements
Required:
- A recent version of PHP (with
php-intlextension) - A web server
- Some video conversion software (ffmpeg recommended)
Optional:
- Python 3 (for the encoding scripts)
- Git (for easy deployment)
- A linux machine for the shell scripts, some may function under cygwin
Features
Openings.moe has a lot of features. I'll list the main features here:
- Play random videos from a folder
- List all videos with metadata
- Relatively little server-side processing
- Minimalistic video player (it also looks/works great as an iframe as-is)
- Simple metadata structure
- ASS subtitle support
Deployment
Deploy it like a regular PHP site. It requires no rewrite rules and no dependencies. Either clone the repository with git clone https://github.com/AniDevTwitter/animeopenings.git, or just download a zip with all the files, which you then place on your web server.
To make videos appear, create a video folder and fill it up, then add the video's information to the names.php file.
For additional configuration, such as replacing the chat and editing the structure or name of the metadata, you're on your own.
Updating
Simply update all the files that were changed. If you're using git, the .gitignore file should keep most custom things from being overwritten.
Releases
Listed here because GitHub won't let you create a release from an old commit. These commits are singled out because they cause breaking changes to things not stored in this repository (often names.php and eggs.php).
- Easter Eggs Added - This release added support for Easter Egg videos. It requires a file named
eggs.phpin the root directory similar tonames.php, but with the array it contains named$eggs. This file is required even if$eggsis empty (this was fixed later). - Font Awesome Sourced Locally - This release changed the site to use a local version of Font Awesome instead of a remote CDN. We made this change because the CDN went offline one day and all of the icons stopped working. Just download Font Awesome 4.4.0 and put it in your root directory, specifically
/font-awesome-4.4.0/css/font-awesome.min.css. We went back to the CDN four months later with this commit. - First
names.phpAutomation Attempt Part A - This was our first attempt to automatically generatenames.phpfrom data stored elsewhere. Your current version ofnames.phpwill still work, so you can make a copy of that before you update and use it in place of the new version. - First
names.phpAutomation Attempt Part B - It turns out the method we tried was much more computationally expensive than expected, so we decided to not do that. This putsnames.phpback to what it was before the previous release. botnet.htmlandeggs.phpChanged to Sample Files - This release changedbotnet.htmlandeggs.phptobotnet.html.sampleandeggs.php.sample, so you don't have to make a backup before updating anymore.eggs.phpChange - This release added a function ineggs.php.sampleto properly merge$namesand$eggs. Make sure you have this function in your copy ofeggs.php. It also added aneggattribute to every video entry ineggs.php. A video is now considered an Easter Egg if, and only if, it has theeggattribute. However if you put an Easter Egg innames.phpinstead ofeggs.php, it will be shown on the list page even though it's an Easter Egg.- Second
names.phpAutomation Attempt - As part of our second attempt to automate encoding andnames.phpgeneration, the data stored innames.phpandeggs.phpwas changed, and video files now have a required naming scheme. The change to the php files is that the file extension is no longer included in the file name, and instead the mime types of the available files (yes files, not file. we support multiple encodings of the same video now.) are stored (the examplenames.php.samplefile was updated in a later commit here). The mime types are used in the same order they're entered, so the smaller file should be listed first. The required format of video file names is{name}-{OP,ED}{0,1,2,...}[{a,b,c,...}][TV][C]-[N]C{BD,DVD,PC,...}. Easter Egg files are exempt from this requirement and can still be named whatever you want. eggs.phpRemoved - Since Easter Eggs are distinguished only by having theeggattribute, it didn't make sense to keep them in a separate file anymore. This release removes all references toeggs.php, instead using theeggattribute to distinguish them. This does mean that Easter Eggs now have to follow the same filename requirements as everything else, which are currently{name}-{OP,IN,ED}{0,1,2,...}[{a,b,c,...}]-[N]C{BD,DVD,PC,...}.
Things that won't be done:
- Minifying Javascript (The bandwidth gains are not worth it considering the fact that all the videos they'll be viewing require roughly 3 mbit/s connections anyways, therefore this would serve no purpose for low bandwidth users. I'd rather let developers read the JS directly.)