如何在 Corona 或 iOS 和 iOS 中通过指定开始和结束来播放音频文件安卓?
场景:我有一个长文件 - 比如说 30 分钟。我想以 7-10 分钟的间隔播放该文件。
< a href="https://stackoverflow.com/questions/4664469/c-play-mp3-file-from-specified-time-for-the-specified-time">C# 从指定时间播放指定时间的 MP3 文件time
上面的问题看起来很相似,但它们是针对桌面应用程序的。我不确定它们是否可以在 iOS 和 Android 中使用。安卓或科罗娜。
细节:
如果有人能告诉我如何扮演一个角色,我将非常感激 一个声音文件,这样就可以在一个声音文件中进行剪切 虚拟方式。如果我可以说一些效果
media.load( 'sound.mp3', start = 5.43, stop = 9.75 )
那么我就可以跳过在波形编辑器中剪切单独的声音文件。也许已经有一种方法可以做类似的事情?我在文档中找不到任何内容。任何帮助将不胜感激。谢谢。
更新:
找到了相同的 pyglet 项目。 http://code.google.com/p/suimm/
Scenario: I have a Long file - Say 30 Minutes. I want to play the file in interval 7-10 minutes.
how to play a mp3 file from the middle
C# play MP3 file from specified time for the specified time
The above questions seem to be similar but they are for Desktop Apps. I am not sure if they can be used in iOS & Android or Corona.
Detail:
I would be really thankful if someone could tell me how to play a part
of a sound file, for then it would be possible to do the cuts in a
virtual manner. If i could say something to the effect
media.load( 'sound.mp3', start = 5.43, stop = 9.75 )
then i'd be able to skip cutting of separate sound files in a wave editor. Maybe there is already a way to do something similar? I couldn't find anything in the docs. Any help would be greatly appreciated. Thanks.
Update:
Found a pyglet project for the same.
http://code.google.com/p/suimm/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用带有“duration”参数的audio.play()和audio.seek()来设置起始位置。
Just use audio.play() with the 'duration' parameter and audio.seek() to set the starting position.