我需要从音频文件中提取前十(10)秒。
我们有以下代码。
var file = recording.stop();
sound = Titanium.Media.createSound({sound:file});
我需要从声音对象中提取前 10 秒。
我们怎么能做到这一点?
另外,如何合并两个声音对象。
前任:
sound1
有 10 秒和 15 秒sound2
。
我想要sound3
的是sound1 + sound2
,
应该sound1
连续播放sound2
。
提前致谢。