Java添加外部视频url



如何使用Java通过API将视频url外部添加到Jw播放器。

如果可能的话,请举个例子,这样我就能更好地理解&这对我很有帮助。

谢谢。

你指的是Java还是Javascript?如果你指的是Javascript,你有几个选项可以添加一个外部视频URL到JWPlayer:

1) 如果您使用JW Player帐户面板中的单行嵌入,只需将外部内容URL直接添加到面板的"内容"部分即可。参见第2步https://support.jwplayer.com/customer/portal/articles/1920164-how-do-i-publish-my-first-video-了解更多详细信息。

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

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

您可以在JW Player上阅读更多关于嵌入选项的信息http://support.jwplayer.com/customer/portal/articles/1406723-mp4-video-embed

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

对于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

相关内容

  • 没有找到相关文章