1
0
Fork 0
peertube/server/helpers/captions-utils.ts

47 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-07-16 12:22:16 +00:00
import { join } from 'path'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../initializers/config'
2018-07-16 12:22:16 +00:00
import * as srt2vtt from 'srt-to-vtt'
2019-08-15 09:53:26 +00:00
import { createReadStream, createWriteStream, move, remove } from 'fs-extra'
2020-06-18 08:45:25 +00:00
import { MVideoCaptionFormattable } from '@server/types/models'
2018-07-16 12:22:16 +00:00
2019-08-20 17:05:31 +00:00
async function moveAndProcessCaptionFile (physicalFile: { filename: string, path: string }, videoCaption: MVideoCaptionFormattable) {
2018-07-16 12:22:16 +00:00
const videoCaptionsDir = CONFIG.STORAGE.CAPTIONS_DIR
const destination = join(videoCaptionsDir, videoCaption.getCaptionName())
// Convert this srt file to vtt
if (physicalFile.path.endsWith('.srt')) {
await convertSrtToVtt(physicalFile.path, destination)
2018-08-27 14:23:34 +00:00
await remove(physicalFile.path)
} else if (physicalFile.path !== destination) { // Just move the vtt file
2018-12-11 14:56:35 +00:00
await move(physicalFile.path, destination, { overwrite: true })
2018-07-16 12:22:16 +00:00
}
// This is important in case if there is another attempt in the retry process
physicalFile.filename = videoCaption.getCaptionName()
physicalFile.path = destination
}
// ---------------------------------------------------------------------------
export {
moveAndProcessCaptionFile
}
// ---------------------------------------------------------------------------
function convertSrtToVtt (source: string, destination: string) {
return new Promise((res, rej) => {
const file = createReadStream(source)
const converter = srt2vtt()
const writer = createWriteStream(destination)
for (const s of [ file, converter, writer ]) {
s.on('error', err => rej(err))
}
return file.pipe(converter)
.pipe(writer)
.on('finish', () => res())
})
}