mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-22 06:20:12 +00:00
.. | ||
big_titty_anime_bitch.wav | ||
darude-sandstorm-flute-anime-version-mp3cut.wav | ||
dbz_theme.wav | ||
dial-up_modem.wav | ||
dragon-ball-gt-op.wav | ||
FitnessGram.wav | ||
fuck_you.wav | ||
genji-i-need-healing.wav | ||
good-job.wav | ||
happy-girl-laugh.wav | ||
hayasaka-ai-hey-hey.wav | ||
hentai-ikuuu.wav | ||
hentai-moaning-sounds.wav | ||
Hunter-X-Hunter-Opening-4-Departure.wav | ||
kage-bunshin-no-jutsu-naruto.wav | ||
katon.wav | ||
Never-gonna-give-you-up.wav | ||
Police_Radio.wav | ||
ReadMe.md | ||
sonicscrewdriver.wav | ||
sugoi-sugoi.wav | ||
sweet-child-of-mine.wav | ||
tank-3-2-1-lets-jam.wav | ||
transponder_snail.wav | ||
yamete-careless-whisper.wav | ||
yametekudosai.wav | ||
yamette-kudoSTOP-guys.wav |
Needs the WAV Player application compiled into firmware. Original code from Zlo and most files provided by RogueMaster.
Create a wav_player folder in the root of your SD card. You'll need 8-bit, 2 channel, unsigned WAV files (try Audacity for conversion.)
WAV Player is very particular about the format. WavPlayer needs BitExact, NO headers, 48k PCM, unsigned, 2 channel, 8-bit stereo. Example:
Input #0, wav, from '.\rickroll.wav':
Duration: 00:02:03.38, bitrate: 768 kb/s
Stream #0:0: Audio: pcm_u8 ([1][0][0][0] / 0x0001), 48000 Hz, stereo, u8, 768 kb/s
To produce a compatible file, you can also use FFmpeg:
ffmpeg -i .\input.mp3 -c:a pcm_u8 -fflags +bitexact -flags:a +bitexact -ac 2 -ar 48k output.wav