Java添加外部视频网址

时间:2016-05-30 12:58:45

标签: java jwplayer jwplayer6 jwplayer7

我们如何通过使用Java的API将外部视频网址添加到Jw播放器。

如果可能的话请举例说明我能更好地理解&这对我很有帮助。

感谢。

2 个答案:

答案 0 :(得分:1)

你的意思是Java还是Javascript?如果您的意思是Javascript,您可以选择向JW Player添加外部添加视频网址:

1)如果您使用JW Player帐户信息中心中的单行嵌入,只需直接在信息中心的“内容”部分添加外部内容网址即可。有关详细信息,请参阅https://support.jwplayer.com/customer/portal/articles/1920164-how-do-i-publish-my-first-video-上的第2步。

2)如果您直接在页面上编写嵌入代码,请在文件中添加直接视频网址:'' jwplayer的参数(' div_id')。setup()调用:

jwplayer('div_id').setup({
    file: 'your_external_video_URL'
});

您可以在http://support.jwplayer.com/customer/portal/articles/1406723-mp4-video-embed

了解有关JW Player的嵌入选项的更多信息

如果你的意思是Java,那么你需要让你的Java代码输出我在这里解释的Javascript。如果您需要Java来允许上传到我们的JW Platform API,那么您需要使用正确的语法来访问我们的JW Platform API的/ videos / create端点,如https://developer.jwplayer.com/jw-platform/reference/v1/methods/videos/create.html所述

答案 1 :(得分:1)

首先,对于java,你需要使用BOTR API(Bits On The Run):

代码:

Map<String, String> map = new HashMap<String,String>();
Map<String, String> sourceType = new HashMap<String,String>();
BotrAPI api = new BotrAPI("API KEY", "API SECRET");
map.put("title", "Yureka..!!");
map.put("sourcetype", "url");
map.put("sourceformat", "youtube");
map.put("sourceurl", "https://www.youtube.com/watch?v=jebJ9itYTJE");
String output = api.makeRequest("videos/create", map); //OXm5HcGA