Как получить прогресс файла загрузки с 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>
элемент.
Но API progress_url
только что дал мне ответное сообщение state
сделанный или же начало вместо процентного значения прогресса.
С уважением.
Я думаю, что вы сможете найти что-то интересное в документации, особенно публикация прогресса поле и прогресс кодирования поле.
Ура,
Giovanni
Других решений пока нет …