-1

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.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
Osama Rasheed
  • 159
  • 3
  • 16

1 Answers1

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.

Community
  • 1
  • 1
Greg
  • 126
  • 6
  • 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