我正在关注以下文档,以便从ionic3应用程序将视频上传到vimeo。 https://allexperts16.blogspot.com/2018/07/vimeo-video-upload-in-ionic.html
使用文件传输上传视频时,作为响应,我的状态为200,上传的文件大小以字节为单位,并且视频已添加到vimeo帐户。但是添加的视频已超过3天处于上传状态。
过去3天,甚至3Mb视频的状态也显示为“正在上传...您的视频正在上传”。 有没有一种方法可以检查,我的视频上传成功了。
我正在关注以下文档,以便从ionic3应用程序将视频上传到vimeo。 https://allexperts16.blogspot.com/2018/07/vimeo-video-upload-in-ionic.html
uploadVideo(generatedurl){
const fileTransfer: FileTransferObject = this.transfer.create();
let fileName=this.currentVideo.substr(this.currentVideo.lastIndexOf('/')+1);
let options: FileUploadOptions = {
fileKey: 'file',
fileName: fileName,
httpMethod: 'PUT',
headers: {'Authorization':'Bearer (myAccessToken))','Tus-Resumable':'1.0.0','Upload-Offset':'0', 'Content-Type': 'application/offset+octet-stream' }
};
fileTransfer.upload(this.videofilepath, generatedurl, options)
.then((data) => {
// success
console.log('s='+JSON.stringify(data));
}, (err) => {
// error
console.log('f='+JSON.stringify(err));
});
}
预期:上传的视频应在vimeo上快速上传。并在成功上传视频文件后获得成功响应。