gpt4 book ai didi

php - 进度 URL dailymotion api

转载 作者:行者123 更新时间:2023-12-01 05:25:35 31 4
gpt4 key购买 nike

如何使用dailymotion api获取文件上传进度?是否可以获得文件上传进度百分比?

我正在使用ajax jquery。

   $.ajax({
type: "POST",
url: 'http://localhost:81/video_api/api_bridge/requestUrl',
/*this section to accessed uploadFile()*/
data:{
'path':'/home/rizky/Downloads/114.mkv',
},
success: function(result) {

setInterval(function(){
$.get(result.progress,
function(data) {
console.log(data);
/*this section, to updating <progress/> element.*/
}
);
},1200)


console.log(result);
/*this section to accessed post('/me/videos')*/
$.ajax({
type: "POST",
url: 'http://localhost:81/video_api/api_bridge/post_to_dailymotion',
data:{
'path':'/home/rizky/Downloads/114.mkv',
'title':'privasi',
'publish_status':true,
'playlist':'',
'private_mode':true,
'description':'',
'upload_url':result.url,
'tags':'',
},
success: function(result) {
console.log(result)
$('.loadeng').css('display','none')
},
error: function(aaa){
console.log(aaa)
console.log(aaa.responseText)
}
});
},
error: function(aaa){
console.log(aaa)
console.log(aaa.responseText)
}
});

然后,我想显示 <progress> 上的百分比值进度元素。但是progress_url的API刚刚给我回复消息state 完成开始而不是百分比值进度。

谢谢,问候。

最佳答案

我认为您将能够在文档中找到一些有趣的内容,尤其是 publishing progress领域和 encoding progress字段。

干杯,乔瓦尼

关于php - 进度 URL dailymotion api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39918508/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com