1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Handle .srt subtitles

This commit is contained in:
Chocobozzz 2018-07-16 14:22:16 +02:00
parent 16f7022b06
commit f4001cf408
No known key found for this signature in database
GPG key ID: 583A612D890159BE
20 changed files with 336 additions and 53 deletions

View file

@ -0,0 +1,47 @@
import { renamePromise, unlinkPromise } from './core-utils'
import { join } from 'path'
import { CONFIG } from '../initializers'
import { VideoCaptionModel } from '../models/video/video-caption'
import * as srt2vtt from 'srt-to-vtt'
import { createReadStream, createWriteStream } from 'fs'
async function moveAndProcessCaptionFile (physicalFile: { filename: string, path: string }, videoCaption: VideoCaptionModel) {
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)
await unlinkPromise(physicalFile.path)
} else { // Just move the vtt file
await renamePromise(physicalFile.path, destination)
}
// 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())
})
}