gpt4 book ai didi

javascript - 使用 javascript API 嵌入 Brightcove 视频

转载 作者:行者123 更新时间:2023-12-03 06:17:47 29 4
gpt4 key购买 nike

我正在尝试使用 javascript API 来使用视频 ID 嵌入视频。经过几次尝试,我找到了实现它的方法,我想确定这是否是正确的使用方法或者是否有我遗漏的东西?

这段代码工作正常,但需要知道我是否以错误的方式执行。

 <script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>

<object class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="480" />
<param name="height" value="270" />
<param name="playerID" value="4942277584001" />
<param name="playerKey" value="AQ~~,AAAEfriyQEE~,ZL37ulQzt-toqcwK_Cwr35Bl9P3znlYu" />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
<param name="dynamicStreaming" value="true" />
<param name="@videoPlayer" value="5072209967002" />
</object>

<!-- This script tag will cause the Brightcove Players defined above it to be created as soon
as the line is read by the browser. If you wish to have the player instantiated only after
the rest of the HTML is processed and the page load is complete, remove the line.-->
<script type="text/javascript">brightcove.createExperiences();</script>
<script type="text/JavaScript">
var player,
APIModules,
videoPlayer;
function onTemplateLoad(experienceID){
player = brightcove.api.getExperience(experienceID);
APIModules = brightcove.api.modules.APIModules;
}
function onTemplateReady(evt){
videoPlayer = player.getModule(APIModules.VIDEO_PLAYER);
videoPlayer.play();
}
</script>
<!-- End of Brightcove Player -->

最佳答案

Brightcove播放器用于播放brightcove视频。您编写的代码是正确的,但在 Brightcove 文档中显示它使用旧版播放器。使用嵌入代码的 Brightcove 的推荐/当前方式,如 http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/embed-in-page.html 中指定。是:

<video data-video-id="4784463159001"
data-account="1507807800001"
data-player="SkSyF9Cl"
data-embed="default"
class="video-js"
controls></video>
<script src="//players.brightcove.net/1507807800001/SkSyF9Cl_default/index.min.js"></script>

其中视频 ID 在 data-video-id 属性中指定,帐户 ID 在 data-account 中指定,播放器详细信息在 data-player 属性中指定。

有关如何通过 JavaScript 使用嵌入代码的更多信息,您可以访问上面指定的链接。

注意:同时将脚本 src 链接替换为您的帐户 ID 和玩家 key 详细信息。

希望有帮助。

关于javascript - 使用 javascript API 嵌入 Brightcove 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39014245/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com