Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how can I play .ape with beep? #190

Open
queryDuan opened this issue Oct 11, 2024 · 2 comments
Open

how can I play .ape with beep? #190

queryDuan opened this issue Oct 11, 2024 · 2 comments

Comments

@queryDuan
Copy link

I have some music and their suffix is .ape . How can I play them with beep?Or how can I play it with other library? Thank you!

@MarkKremer
Copy link
Contributor

Beep doesn't currently support the ape audio format. If you can find another library that can decode .ape to raw samples, you could implement Beep's Streamer interface to process or play the audio through Beep.

@dusk125
Copy link
Contributor

dusk125 commented Oct 14, 2024

If you don't mind converting things like Mark suggested, you could use ffmpeg to translated them into wav

ffmpeg -i file.ape file.wav

You might could also execute ffmpeg from go and pipe the output into beep via the wav decoder for realtime translation... but I don't know the command offhand to do that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants