在 Android 上将 mp3 转换为 wav
关于逆向 wav 到 mp3 转换似乎有很多问题,但没有人提出相反的问题。我的情况是我可以使用隐写术将数据嵌入到 wav 文件中。我可以将它们转换为 ogg 并返回(隐写术与格式无关,并且可以在格式转换后继续存在)。我现在想做的是构建 AudioBoo 集成。上传到 AudioBoo 不是问题,检索 mp3 格式的文件也不是问题,但将这些 mp3 文件转换回 wav 来执行 steg。萃取群岛有谁知道我应该从哪里开始?
There seem to be a lot of questions regarding the inverse wav to mp3 conversion, but none to go the other way. My situation is that I can use steganography to embed data in wav files. I can convert these to ogg and back (the steganography is format independent, and can survive format conversion). What I want to do now is build in AudioBoo integration. Uploading to AudioBoo is not a problem, retrieving the files in mp3 format is not a problem, but converting those mp3 files back to wav to perform the steg. extraction is. Does anyone know where I should start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 JLayer。它应该在 Android 上运行。请注意,某些调用是
同步的
。如果这不起作用,请调整源代码或从整个源代码中提取转换器模块,因为您需要的只是 mp3 到 wav 转换器,而不是 mp3 播放器。Check out JLayer. It should run on Android. Beware, some of the calls are
synchronized
. If this doesn't work, tweak the source code or extract the converter modules from the entire source, since all you need is the mp3 to wav converter, not the mp3 player.