Using native stream promises for media stream retrieval.
This commit is contained in:
parent
433498eaed
commit
bcc183d5b9
|
@ -24,7 +24,7 @@ const bulkInsert = require('./utils/bulk-insert');
|
|||
const chunk = require('./utils/chunk');
|
||||
const { get } = require('./utils/qu');
|
||||
|
||||
const pipeline = util.promisify(stream.pipeline);
|
||||
// const pipeline = util.promisify(stream.pipeline);
|
||||
const streamQueue = taskQueue();
|
||||
|
||||
const endpoint = new AWS.Endpoint('s3.eu-central-1.wasabisys.com');
|
||||
|
@ -629,7 +629,8 @@ streamQueue.define('fetchStreamSource', async ({ source, tempFileTarget, hashStr
|
|||
.on('error', (error) => logger.error(`Failed to fetch stream from ${source.stream}: ${error.message}`))
|
||||
.pipe();
|
||||
|
||||
await pipeline(video, hashStream, tempFileTarget);
|
||||
// await pipeline(video, hashStream, tempFileTarget);
|
||||
await stream.promises.pipeline(video, hashStream, tempFileTarget);
|
||||
|
||||
logger.verbose(`Finished fetching stream from ${source.stream}`);
|
||||
|
||||
|
|
Loading…
Reference in New Issue