I need to convert audio files, being specific mp3 files to simple Text, and then converting back that text to mp3 again, one of feature of my mobile application, is it possible? if Yes, then how? guideline please.
Asked
Active
Viewed 2,695 times
-1
-
what kind of text do you expect? Are you looking for bits and bytes or some kind of mathematical equation that lies behind the mp3? – GameDroids Apr 17 '13 at 16:36
-
you mean to save binary data in txt file? – Adil Shaikh Apr 17 '13 at 16:36
-
@GameDroids, No just the text. – Osama Rasheed Apr 17 '13 at 18:07
1 Answers
2
You can find the answer for audio to text here (second post)
For the text to audio, i would use any Text-to-Speech. In c# you could also use System.Speech.
-
I visited that link that wasn't my answer, well found the way to do it. Its simple just change the extension .mp3 or whatever to .txt using DOS command : ren example.mp3 example.txt. – Osama Rasheed Apr 17 '13 at 18:09
-
*"just change the extension .mp3 or whatever to .txt"* That is nonsense. The file content is still an MP3. – Andrew Thompson Apr 18 '13 at 00:08
-
I have to do nothing with the content, what I needed mp3 to be converted in Text representation. – Osama Rasheed Apr 18 '13 at 21:45
-
but what are you planning on doing with the text file after you changed the extension? – Greg Apr 19 '13 at 16:59