I want to develop an android application in which the user can play an .mp3 song file reversely ( playing backwards).
I have searched a lot on the web and the stackoverflow, but I haven't found anything useful and basically I'm short on the main idea behind this scenario.
So I'd like to know if there are any java libraries for manipulating .mp3 files or sample applications. Any insight is appreciated :)
Asked
Active
Viewed 299 times
0

Farhad
- 12,178
- 5
- 32
- 60
-
3The only way to do this is to decode to PCM samples first. MP3 only decodes one direction. – Brad Apr 01 '15 at 23:56
-
And what I should I after decoding the file to PCM samples ? – Farhad Apr 02 '15 at 08:31
-
1Once you have PCM samples, you can play them in any direction or any way you want. – Brad Apr 02 '15 at 12:38
-
Thanks Brad . I'll work on these and will update the question asap ☺ – Farhad Apr 02 '15 at 14:19
1 Answers
2
A possible solution is to convert it to WAV (on the fly) and then play it using the following answer:

Community
- 1
- 1

Maziar Aboualizadehbehbahani
- 1,976
- 17
- 37