From 14d3270f363245d2c83fcc2ac109e39743b5627e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 9 Oct 2017 11:06:13 +0200 Subject: Change how we handle resolution It was an enum before, now we just use video height --- server/helpers/ffmpeg-utils.ts | 79 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 server/helpers/ffmpeg-utils.ts (limited to 'server/helpers/ffmpeg-utils.ts') diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts new file mode 100644 index 000000000..c35125ec1 --- /dev/null +++ b/server/helpers/ffmpeg-utils.ts @@ -0,0 +1,79 @@ +import * as Promise from 'bluebird' +import * as ffmpeg from 'fluent-ffmpeg' + +import { CONFIG } from '../initializers' +import { VideoResolution } from '../../shared/models/videos/video-resolution.enum' + +function getVideoFileHeight (path: string) { + return new Promise((res, rej) => { + ffmpeg.ffprobe(path, (err, metadata) => { + if (err) return rej(err) + + const videoStream = metadata.streams.find(s => s.codec_type === 'video') + return res(videoStream.height) + }) + }) +} + +function getDurationFromVideoFile (path: string) { + return new Promise((res, rej) => { + ffmpeg.ffprobe(path, (err, metadata) => { + if (err) return rej(err) + + return res(Math.floor(metadata.format.duration)) + }) + }) +} + +function generateImageFromVideoFile (fromPath: string, folder: string, imageName: string, size?: string) { + const options = { + filename: imageName, + count: 1, + folder + } + + if (size !== undefined) { + options['size'] = size + } + + return new Promise((res, rej) => { + ffmpeg(fromPath) + .on('error', rej) + .on('end', () => res(imageName)) + .thumbnail(options) + }) +} + +type TranscodeOptions = { + inputPath: string + outputPath: string + resolution?: VideoResolution +} + +function transcode (options: TranscodeOptions) { + return new Promise((res, rej) => { + let command = ffmpeg(options.inputPath) + .output(options.outputPath) + .videoCodec('libx264') + .outputOption('-threads ' + CONFIG.TRANSCODING.THREADS) + .outputOption('-movflags faststart') + + if (options.resolution !== undefined) { + const size = `${options.resolution}x?` // '720x?' for example + command = command.size(size) + } + + command.on('error', rej) + .on('end', res) + .run() + }) +} + +// --------------------------------------------------------------------------- + +export { + getVideoFileHeight, + getDurationFromVideoFile, + generateImageFromVideoFile, + transcode +} -- cgit v1.2.3