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

47 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-02-15 13:08:16 +00:00
import { createReadStream, createWriteStream, move, remove } from 'fs-extra'
2018-07-16 12:22:16 +00:00
import { join } from 'path'
import * as srt2vtt from 'srt-to-vtt'
2021-02-15 13:08:16 +00:00
import { MVideoCaption } from '@server/types/models'
import { CONFIG } from '../initializers/config'
2018-07-16 12:22:16 +00:00
2021-02-15 13:08:16 +00:00
async function moveAndProcessCaptionFile (physicalFile: { filename: string, path: string }, videoCaption: MVideoCaption) {
2018-07-16 12:22:16 +00:00
const videoCaptionsDir = CONFIG.STORAGE.CAPTIONS_DIR
2021-02-15 13:08:16 +00:00
const destination = join(videoCaptionsDir, videoCaption.filename)
2018-07-16 12:22:16 +00:00
// 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
2021-02-15 13:08:16 +00:00
physicalFile.filename = videoCaption.filename
2018-07-16 12:22:16 +00:00
physicalFile.path = destination
}
// ---------------------------------------------------------------------------
export {
moveAndProcessCaptionFile
}
// ---------------------------------------------------------------------------
function convertSrtToVtt (source: string, destination: string) {
2021-02-03 08:33:05 +00:00
return new Promise<void>((res, rej) => {
2018-07-16 12:22:16 +00:00
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())
})
}