Coder Social home page Coder Social logo

project-ds's People

Contributors

hydr8gon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

project-ds's Issues

Original/2nd/F/X song support

I tried some songs from F 2nd (Vita) to see if they would work, and while the music preview worked fine trying to play the song ended instantly.

If you think this would be good to add but don't want to yourself, I could try doing it. Since Open PD Script Editor supports them I assume it probably shouldn't be that hard to parse the DSCs, might be a bit tricky to draw held notes...

Songs play too slowly

The OGGs I dumped from F 2nd (Vita) and MEGA39's (Switch) are both 48,000 Hz, but Project DS seems to be expecting 44,100 Hz, so they play too slowly.

Converting them down to 44,100 Hz they seem to be playing correctly to me, so I just used this to convert with ffmpeg instead:

#!/bin/bash

cd "$(dirname "$0")"

mkdir -p pcm

for OGG in ogg/*; do
	echo $(basename $OGG)
	ffmpeg -i $OGG -f s16le -ar 44100 -ac 1 pcm/$(basename $OGG .ogg).pcm -loglevel error
done

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.