如何使用 Dailymotion API 为视频上传设置自定义缩略图。我正在使用这个https://github.com/cbenard/SODailyMotionUpload/tree/master/SO%20Dailymotion%20Upload,它适用于其他一切,只是无法找到添加自定义缩略图的方法。任何帮助将不胜感激。
问问题
714 次
1 回答
1
这只是字段“thumbnail_url”。
例如在 php 中:
$result = $api->call('video.create',
array(
'url' => $url,
'title' => 'My awesome video',
'channel' => 'fun',
'thumbnail_url' => 'http://www.website.com/thumb.png',
'description' => 'My awesome description',
'tags' => 'test,tags',
'published' => true
));
于 2015-08-31T00:44:20.597 回答