Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/splendide-imaginarius/crosslooper
Automatically set LOOPSTART / LOOPLENGTH / LOOP_START / LOOP_END tags via cross-correlation for looping BGM in RPG Maker etc.
https://github.com/splendide-imaginarius/crosslooper
audio bgm cross-correlation flac game game-development game-modding loop metadata music ogg rpg-maker vorbis vorbis-comment
Last synced: 2 days ago
JSON representation
Automatically set LOOPSTART / LOOPLENGTH / LOOP_START / LOOP_END tags via cross-correlation for looping BGM in RPG Maker etc.
- Host: GitHub
- URL: https://github.com/splendide-imaginarius/crosslooper
- Owner: Splendide-Imaginarius
- License: gpl-3.0
- Created: 2023-02-09T03:02:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T00:29:44.000Z (5 months ago)
- Last Synced: 2024-07-16T03:58:50.010Z (5 months ago)
- Topics: audio, bgm, cross-correlation, flac, game, game-development, game-modding, loop, metadata, music, ogg, rpg-maker, vorbis, vorbis-comment
- Language: Python
- Homepage:
- Size: 641 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# CrossLooper
CrossLooper is a tool for automatically setting the `LOOPSTART`, `LOOPLENGTH`, `LOOP_START`, and `LOOP_END` metadata tags in audio files. These tags are used by various software (including RPG Maker) to seamlessly loop audio (e.g. for game BGM). CrossLooper uses statistical cross-correlation to guess the correct loop points. Among other use cases, CrossLooper may be useful for game developers who are given BGM assets that don't have loop points, or for game modders who want to add loop points to games whose BGM doesn't have them.
## Installation
First, you'll need to install [game-engine-finder](https://github.com/vetleledaal/game-engine-finder) according to its installation instructions.
You'll also need to install [ffmpeg](https://ffmpeg.org/), e.g. via `sudo apt install ffmpeg`.
Once you've done that, to install CrossLooper via pip, do this from the `crosslooper` repo directory:
```
pip install --user .
```## Prerequisites
* The audio files must not be in a packed/encrypted format. If the game you're working with uses packed or encrypted audio files of some kind, you'll need to unpack them. You may find these tools helpful:
* [RPG Maker XP / VX / VX Ace Decrypter](https://github.com/uuksu/RPGMakerDecrypter)
* [RPG Maker MV / MZ File Decrypter](https://github.com/Petschko/Java-RPG-Maker-MV-Decrypter)
* [Enigma Virtual Box Unpacker](https://github.com/mos9527/evbunpack)
* The audio files must be of a container format that can be read by ffmpeg and supports Vorbis Comment or APEv2 metadata. So, pretty much anything works in theory. However, depending on which formats are supported by whatever you're using to play the resulting files (Ogg has the most widespread support, followed by FLAC, with other formats being rarely supported by players), you may need to convert the files first, e.g. with [ffmpeg](https://ffmpeg.org/).## Usage
### As a game developer
If you're a game developer, you can use CrossLooper to set loop points on your BGM files before distributing your game.
Typically (~76% of the time), you can run CrossLooper with no hints, and it will guess the loop points correctly:
```
crosslooper example.ogg
```CrossLooper will edit the input file in-place to add loop tags. You can do this for each BGM file.
If it gets the loop points wrong, you can pass a variety of flags to help CrossLooper guess the correct loop points. See the help for details:
```
crosslooper --help
```Usually, the `--loop-len-min` hint is the only one you will need, but the others may be helpful too. If you're having trouble, you may wish to pass `--verbose` to see logs of which loop point candidates are being considered. If you've already set wrong loop points and want to overwrite them, pass the `--loop-force` flag.
### As a game mod developer
If you're a game mod developer, you can use CrossLooper to find the loop points of the BGM in an existing, already-released game.
Follow the instructions for "As a game developer", but keep track of which command-line flags you set for each file. Then, create a new `.conf` file in the `crosslooperpresets` folder that contains the flags you used for each file. The `.conf` file should be named with a substring of the game title, excluding any version numbers. If the game has multiple titles (e.g. for Japanese and English localized versions), name the `.conf` file after the English version, and add a symlink for any other languages. For each file that was unloopable, set `skip = true`. You can look at the existing `.conf` files in that folder for inspiration.
Once you've created the `.conf` file, follow the instructions for "As a game mod user" (starting with an unmodded game) to make sure everything works correctly. If so, please send in a PR so that I can add your `.conf` file to the repository.
### As a game mod user
If you're a gamer, you can use CrossLooper to apply loop point presets that game mod developers have submitted to this repository.
From the directory of a game, run the following:
```
crosslooperdir
```CrossLooper will edit all of the game's BGM files in-place to add loop points.
For more details on the other command-line flags available, see the help:
```
crosslooperdir --help
```## Testing Your Results
The easiest way to test your results is by playing your `.ogg` or `.flac` file in [vgmstream](https://vgmstream.org/).
Alternatively, to play a resulting `.ogg` audio file, you can do one of the following:
* Replace the title screen `.ogg` file of an RPG Maker game with the tagged audio file you created; then launch the RPG Maker game.
* Play the `.ogg` file with [loop-ogg](https://github.com/SolraBizna/loop-ogg).I'm not aware of any players that currently support APEv2 loop points; please let me know if any exist.
## Standards
By default, CrossLooper sets samples-denominated loop points (`LOOPSTART` and `LOOPLENGTH`). These are well-standardized and should work consistently. If you set the `--loop-enable-seconds-tags` flag, CrossLooper can also set seconds-denominated loop points (`LOOP_START` and `LOOP_END`), but these are not well-standardized and will break playback in some software (e.g. vgmstream). It is recommended to not change the default unless you specifically are targeting software that requires seconds-denominated loop points.
## Related Projects
* [CrossTrimmer](https://github.com/Splendide-Imaginarius/crosstrimmer)
* [WavGrep](https://github.com/Splendide-Imaginarius/wavgrep)## Credits
Copyright 2023-2024 Splendide Imaginarius.
This is not a license requirement, but if you use CrossLooper for a project such as a game or a game mod, it would be greatly appreciated if you credit me. Example credits: "BGM was looped with CrossLooper by Splendide Imaginarius." Linking back to this Git repository would also be greatly appreciated.
CrossLooper is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
CrossLooper is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with CrossLooper. If not, see [https://www.gnu.org/licenses/](https://www.gnu.org/licenses/).
CrossLooper is a heavily modified fork of [syncstart](https://github.com/rpuntaie/syncstart), Copyright (C) 2021 Roland Puntaier.
CrossLooper depends on [game-engine-finder](https://github.com/vetleledaal/game-engine-finder), Copyright (c) 2023 Vetle Ledaal, Faalagorn, Splendide Imaginarius.