如何使用php脚本在jwplayer上传视频?

时间:2015-08-28 17:02:39

标签: jwplayer

我正在浏览jwPlayer api,我找到了提供插件以获取上传表单的方法,以便我的用户可以直接将他们的视频上传到我的jwPlayer帐户。
但我需要一些其他服务。实际上我已经有一个文件夹中的视频列表,它的列表也保存在数据库中(通过一些后台进程)。并且,我想使用一些(php)脚本将其上传到jwPlayer,以便在每天结束时我收到当天的所有新视频(通过后台进程),我可以运行该(php)脚本来获取所有在jwPlayer上传的新视频
提前谢谢

2 个答案:

答案 0 :(得分:2)

使用PHP API适配器:https://github.com/jwplayer/jwplatform-php

示例:

$jwplatform_api = new Jwplayer\JwplatformAPI('INSERT API KEY', 'INSERT API SECRET');

$target_file = 'YOUR_VIDEO.mp4';
$params = array();
$params['title'] = 'PHP API Test Upload';
$params['description'] = 'Video description here';

// Create the example video
$create_response = json_encode($jwplatform_api->call('/videos/create', $params));    
$decoded = json_decode(trim($create_response), TRUE);
$upload_link = $decoded['link'];

$upload_response = $jwplatform_api->upload($upload_link, $target_file);

print_r($upload_response);

答案 1 :(得分:0)

如果您的JW Player帐户具有API密钥和密钥(用于视频上传),则可以使用我们的API执行此操作:

http://apidocs.jwplayer.com/

以下是更多参考资料:

http://support.jwplayer.com/customer/portal/articles/1489902-jw-platform-api-reference

在此页面上是Zip文件中某些PHP API示例的下载链接。