当它们上传到 Firebase 存储时,我必须将视频从 webm 转码为 mp4。我这里有一个可以运行的代码演示,但是如果上传的视频太大,在转换完成之前,firebase 函数会在我身上超时。我知道可以增加函数的超时限制,但这似乎很混乱,因为我无法确认该过程所花费的时间会少于超时限制。
有没有办法阻止firebase超时而不只是增加最大超时限制?
如果没有,有没有办法完成耗时的过程(如视频转换),同时仍然让每个过程开始使用 firebase 函数触发器?
如果甚至使用 firebase 函数完成耗时的过程并不是真正存在的东西,有没有办法在不影响质量的情况下加快 fluent-ffmpeg 的转换?(我意识到这部分有很多问题。如果绝对必要,我计划降低质量,因为 webms 转换为 mp4 的原因是用于 IOS 设备)
作为参考,这是我提到的演示的主要部分。正如我之前所说,完整的代码可以在这里看到,但是复制过来的这部分代码是创建确保转码完成的 Promise 的部分。完整的代码只有 70 多行,所以如果需要的话应该比较容易通过。
const functions = require('firebase-functions');
const mkdirp = require('mkdirp-promise');
const gcs = require('@google-cloud/storage')();
const Promise = require('bluebird');
const ffmpeg = require('fluent-ffmpeg');
const ffmpeg_static = require('ffmpeg-static');
(这里有一堆文本解析代码,后面是 onChange 事件中的下一段代码)
function promisifyCommand (command) {
return new Promise( (cb) => {
command
.on( 'end', () => { cb(null) } )
.on( 'error', (error) => { cb(error) } )
.run();
})
}
return mkdirp(tempLocalDir).then(() => {
console.log('Directory Created')
//Download item from bucket
const bucket = gcs.bucket(object.bucket);
return bucket.file(filePath).download({destination: tempLocalFile}).then(() => {
console.log('file downloaded to convert. Location:', tempLocalFile)
cmd = ffmpeg({source:tempLocalFile})
.setFfmpegPath(ffmpeg_static.path)
.inputFormat(fileExtension)
.output(tempLocalMP4File)
cmd = promisifyCommand(cmd)
return cmd.then(() => {
//Getting here takes forever, because video transcoding takes forever!
console.log('mp4 created at ', tempLocalMP4File)
return bucket.upload(tempLocalMP4File, {
destination: MP4FilePath
}).then(() => {
console.log('mp4 uploaded at', filePath);
});
})
});
});