如何使用Dailymotion API为视频上传设置自定义缩略图。我正在使用此https://github.com/cbenard/SODailyMotionUpload/tree/master/SO%20Dailymotion%20Upload,它适用于其他所有内容,但无法找到添加自定义缩略图的方法。任何帮助将不胜感激。
答案 0 :(得分: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
));