8

我正在使用 PhoneGap 构建音频媒体记录器/播放器。这一切都很好,但我遇到了我似乎无法熨烫的皱纹。

my_media.play();确实在我的 Eclipse 或 XCode 控制台中播放没有错误的媒体,这就是为什么显示 -1 的警报令人费解的原因。我希望my_media.getDuration();返回我尝试播放的文件的持续时间。

我的 try/catch 块没有抛出错误,我对此感到很困惑。 这是有关 Media.getDuration() 的 PhoneGap 文档

function playAudio() {

    $('#btnStopRecording').removeClass('ui-disabled');
    $('#btnPlayMessage, #btnStartStopRecording, #btnDeleteMessage, #btnAcceptUpload').addClass('ui-disabled');

    my_media = new Media(fullRecordPath,

        // success callback
        function () {
            $('#btnPlayMessage, #btnStartStopRecording, #btnDeleteMessage, #btnAcceptUpload').removeClass('ui-disabled');
            $('#btnStopRecording').addClass('ui-disabled');
        },

        // error callback
        function (err) {
            console.log("attempting to play fullRecordPath = "+fullRecordPath);
            console.log("playAudio():Audio Error: " + err.code);
        }
    );

    var thisDuration;

    try{
        thisDuration = my_media.getDuration();
    } catch (err) {
        console.log("attempting to get duration error code "+err.code);
        console.log("attempting to get duration error message "+err.message);
    }

    alert("we're about play a file of this duration "+thisDuration);

    my_media.play();

    // stop playback when the stop button is tapped
    $('#btnStopRecording').off('tap').on('tap',function()
    {
        my_media.stop();
        $('#btnPlayMessage, #btnStartStopRecording, #btnDeleteMessage, #btnAcceptUpload').removeClass('ui-disabled');
        $('#btnStopRecording').addClass('ui-disabled');
    });

    // if the user leaves the page, stop playback
    $('#pageRecordMessage').live('pagehide', function()
    {
        my_media.stop();
        $('#btnPlayMessage, #btnStartStopRecording, #btnDeleteMessage, #btnAcceptUpload').removeClass('ui-disabled');
        $('#btnStopRecording').addClass('ui-disabled');
    });
}
4

4 回答 4

2

当您调用 my_media.getDuration() 时,尚未加载相关媒体的元数据。在您在问题中引用的文档中,示例代码将 getDuration 调用置于一个间隔中:

var timerDur = setInterval(function() {
    counter = counter + 100;
    if (counter > 2000) {
        clearInterval(timerDur);
    }
    var dur = my_media.getDuration();
    if (dur > 0) {
        clearInterval(timerDur);
        document.getElementById('audio_duration').innerHTML = (dur) + " sec";
    }
}, 100);

我建议做类似的事情。

于 2012-11-13T19:54:13.990 回答
1

这个解决方案对我有用。基本上,播放并立即停止。它似乎不需要任何时间,似乎是一个不错的解决方法。

media.play();
media.stop();
var length = media.getDuration();
于 2014-09-12T05:21:14.487 回答
0

这个问题太老了。但这仍然是相关的,因为许多人可能面临同样的问题。每当没有任何效果时,我只做一件事,升级或降级版本。在这种情况下,我通过安装以下版本解决了我的问题。

cordova plugin add cordova-plugin-media@1.0.1
于 2016-02-06T00:23:31.203 回答
0

我在 iOS 的 cordova 中也遇到了类似的问题。我能够成功录制、播放和停止音频,但无法获取音频文件的当前位置和总持续时间。所以我my_media.release()在完成录制音频之后添加了,即之后my_media.stopRecord(),它就像一个魅力。早些时候,我得到了-1forgetDuration()0for getCurrentPosition()

希望它可以帮助某人。

于 2017-10-16T11:36:38.280 回答