1

嗨,

我需要开发一个网站,它将嵌入来自 Vimeo 的视频。如果我使用 VimeoAPI,可以在视频完成后收听吗?如果它完成了,我可以从 Vimeo 开始另一个视频吗?

谢谢,戴夫。

4

3 回答 3

0

I wrote a jQuery Vimeo plugin a few months ago. Using this plugin, the code would be something like:

$("#somevideo").on("finish", function(){

    $("#anothervideo").vimeo("play");

});
于 2014-09-10T23:08:10.733 回答
0

假设您使用了Vimeo Api页面中提供的代码,您应该使用以下内容来显示初始视频:

<!doctype html>
<html>
    <head>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script type="text/javascript" src="custom.js" ></script>
    </head>

    <body>
        <iframe id="vimeoplayer"
            src="//player.vimeo.com/video/76979871?api=1&player_id=vimeoplayer"
            width="100%" height="100%" webkitallowfullscreen mozallowfullscreen
            allowfullscreen ></iframe>

        <div>
            <button>Play</button>
            <button>Stop</button>
            <p>Status: <span class="status">&hellip;</span></p>
        </div>
    </body>
</html>

确保 iframe ID 与“player_id”相同。

然后在您的custom.js文件中使用来自 Vimeo API 页面的代码:

$(function() {
    var player = $('#vimeoplayer');
    var url = window.location.protocol + player.attr('src').split('?')[0];
    var status = $('.status');

    // Listen for messages from the player
    if (window.addEventListener){
        window.addEventListener('message', onMessageReceived, false);
    }
    else {
        window.attachEvent('onmessage', onMessageReceived, false);
    }

    // Handle messages received from the player
    function onMessageReceived(e) {
        var data = JSON.parse(e.data);

        switch (data.event) {
            case 'ready':
                onReady();
                break;

            case 'playProgress':
                onPlayProgress(data.data);
                break;

            case 'pause':
                onPause();
                break;

            case 'finish':
                onFinish();
                break;
        }
    }

    // Call the API when a button is pressed
    $('button').on('click', function() {
        post($(this).text().toLowerCase());
    });

    // Helper function for sending a message to the player
    function post(action, value) {
        var data = {
            method: action
        };

        if (value) {
            data.value = value;
        }

        var message = JSON.stringify(data);
        player[0].contentWindow.postMessage(data, url);
    }

    function onReady() {
        status.text('ready');

        post('addEventListener', 'pause');
        post('addEventListener', 'finish');
        post('addEventListener', 'playProgress');
    }

    function onPause() {
        status.text('paused');
    }

    // when the video is finished
    function onFinish() {
        status.text('finished');

        // load the next video
        document.getElementById('vimeoplayer').src = "//player.vimeo.com/video/104990881?api=1&player_id=vimeovideo";
    }

    function onPlayProgress(data) {
        status.text(data.seconds + 's played');
    }
});

一旦第一个视频完成,更改视频的代码位于onFinish()函数中。此函数中的代码将 iframe 源 (src) 更改为您要播放的下一个视频之一。

您可以使用显示另一个视频的替代方法,上述方法是一种非常基本的方法,仅用于显示请求的功能。

于 2014-09-06T00:13:42.527 回答
-1

是的,请查看播放器 API,了解如何在视频完成时收到通知,以及如何开始新视频https://developer.vimeo.com/player/js-api

于 2014-03-08T22:25:41.087 回答