Foobar2000 plugin for looping track intervals and slicing CUE sheets.
Features
- Loop, shuffle or randomize through any subset of user-defined slices of track
- Import intervals from a CUE Sheet
- Import chapters from a video via JSON
ffprobe -i filename -print_format json -show_chapters -loglevel error > chapters.json
- Import intervals from YouTube time codes, etc. Copy a piece of text and Ctrl-V to switcher.
- Export to CUE Sheet
- Keeps all intervals for all tracks in a single
.json
file
How to use
- Mark sections on your track for creating loops:
Sections are being saved for each track in a .json file.
- Or mark a single section:
Building from source
Requirements:
You'll need flex and bison, they can be installed with Cygwin. Compile libcue
with something like that:
cd build
cmake .. -DBISON_EXECUTABLE=path/to/bison.exe -DFLEX_EXECUTABLE=path/to/flex.exe
Then import the project generated by CMake into Visual Studio.