NC2DT is a osu! tool that allows one to convert their beatmaps' audio so that they, when used with the Nightcore (NC) mod, sound the same as the Double Time (DT) mod.
- Download the latest release, from the Releases page.
- Extract and run the
NC2DT.exe
executable. - Type into the search bar the name of the beatmap you want to create a NC2DT audio, and double-click it in the results listing.
- Click the Create Converted Audio button to create the converted audio.
- Switch between the normal and NC2DT versions of the audio using the Switch to Original/NC2DT Audio button.
Note: If you also want to get rid of the nightcore beats, download these silent effects (found originally here) and put them into your skin folder.
You'll need Python 3.7 installed, and added to your PATH
. Additionally, you'll need to download sox and soundstretch. Place them on src/main/resources/windows
, with sox inside a folder named sox
.
- Create a virtualenv:
python -m venv venv
, and activate it withvenv/Scripts/activate.bat
(for cmd) oractivate.ps1
(for PowerShell). - Inside the virtualenv, install the dependencies:
pip install -r requirements.txt
- Run the program with fbs:
fbs run
. - (Optional) Package the program for redistribution with
fbs freeze
. The binaries will be placed undertarget/
.