PeerTube/server/core/helpers/captions-utils.ts

53 lines
1.7 KiB
TypeScript
Raw Normal View History

import { createReadStream, createWriteStream } from 'fs'
import { move, remove } from 'fs-extra/esm'
2021-08-27 14:32:44 +02:00
import { Transform } from 'stream'
import { MVideoCaption } from '@server/types/models/index.js'
import { pipelinePromise } from './core-utils.js'
2018-07-16 14:22:16 +02:00
2024-02-12 10:47:52 +01:00
async function moveAndProcessCaptionFile (physicalFile: { filename?: string, path: string }, videoCaption: MVideoCaption) {
const destination = videoCaption.getFSPath()
2018-07-16 14:22:16 +02:00
// Convert this srt file to vtt
if (physicalFile.path.endsWith('.srt')) {
await convertSrtToVtt(physicalFile.path, destination)
2018-08-27 16:23:34 +02:00
await remove(physicalFile.path)
} else if (physicalFile.path !== destination) { // Just move the vtt file
2018-12-11 15:56:35 +01:00
await move(physicalFile.path, destination, { overwrite: true })
2018-07-16 14:22:16 +02:00
}
// This is important in case if there is another attempt in the retry process
2024-02-12 10:47:52 +01:00
if (physicalFile.filename) physicalFile.filename = videoCaption.filename
2018-07-16 14:22:16 +02:00
physicalFile.path = destination
}
// ---------------------------------------------------------------------------
export {
moveAndProcessCaptionFile
}
// ---------------------------------------------------------------------------
async function convertSrtToVtt (source: string, destination: string) {
2021-04-27 09:00:09 +02:00
const fixVTT = new Transform({
transform: (chunk, _encoding, cb) => {
let block: string = chunk.toString()
2018-07-16 14:22:16 +02:00
2021-04-27 09:00:09 +02:00
block = block.replace(/(\d\d:\d\d:\d\d)(\s)/g, '$1.000$2')
.replace(/(\d\d:\d\d:\d\d),(\d)(\s)/g, '$1.00$2$3')
.replace(/(\d\d:\d\d:\d\d),(\d\d)(\s)/g, '$1.0$2$3')
2018-07-16 14:22:16 +02:00
2021-04-27 09:00:09 +02:00
return cb(undefined, block)
}
2018-07-16 14:22:16 +02:00
})
2021-04-27 09:00:09 +02:00
const srt2vtt = await import('srt-to-vtt')
2021-04-27 09:00:09 +02:00
return pipelinePromise(
createReadStream(source),
srt2vtt.default(),
2021-04-27 09:00:09 +02:00
fixVTT,
createWriteStream(destination)
)
2018-07-16 14:22:16 +02:00
}