我要将视频上传到我在Node / Express中的vimeo应用程序。 我在google搜索并找到了将视频上传到vimeo的软件包,它是vimeo-upload。
但我不确定如何使用它。 其格式如下。
var uploader = new VimeoUpload({
file: file,
token: accessToken,
});
uploader.upload();
我在我的项目中得到了accessstoken,并认为文件是视频的二进制文件。
问题是从视频中获取二进制文件。
请帮助我!
答案 0 :(得分:0)
我发现了vimeo-upload.js的问题,因为vimeo的API版本已升级。
vimeo-upload.js中的函数upload(),网址改变如下。
me.prototype.upload = function() {
var xhr = new XMLHttpRequest()
xhr.open(this.httpMethod, this.url, true)
xhr.setRequestHeader('Authorization', 'Bearer ' + this.token)
xhr.setRequestHeader('Content-Type', 'application/json')
xhr.onload = function(e) {
// get vimeo upload url, user (for available quote), ticket id and complete url
if (e.target.status < 400) {
var response = JSON.parse(e.target.responseText)
this.url = response.upload.upload_link
this.user = response.user
this.ticket_id = response.ticket_id
this.complete_url = defaults.api_url + response.complete_uri
this.sendFile_()
} else {
this.onUploadError_(e)
}
}.bind(this)
xhr.onerror = this.onUploadError_.bind(this)
xhr.send(JSON.stringify({
type: 'streaming',
upgrade_to_1080: this.upgrade_to_1080
}))
}