【问题标题】:Titanium Continue Recording after playing the recorded fileTitanium 播放录制文件后继续录制
【发布时间】:2011-06-14 19:16:44
【问题描述】:

我有以下代码。

recording.start();
file = recording.stop();

sound = Titanium.Media.createSound({sound:file});

sound.play();

播放完成后可以继续录制吗?我们如何实现这一点?

录音暂停时有什么方法可以播放录音文件吗?

【问题讨论】:

    标签: iphone titanium record


    【解决方案1】:

    您可以尝试重新开始录制的complete 事件侦听器吗?

    sound.addEventListener('complete', function(e) {
        // start new recording code here
    });
    

    【讨论】:

    猜你喜欢
    • 2018-09-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多