1
0
Fork 0
peertube/packages/ffmpeg/src/ffmpeg-images.ts

95 lines
2.4 KiB
TypeScript
Raw Normal View History

import { FfprobeData } from 'fluent-ffmpeg'
import { FFmpegCommandWrapper, FFmpegCommandWrapperOptions } from './ffmpeg-command-wrapper.js'
import { getVideoStreamDuration } from './ffprobe.js'
export class FFmpegImage {
private readonly commandWrapper: FFmpegCommandWrapper
constructor (options: FFmpegCommandWrapperOptions) {
this.commandWrapper = new FFmpegCommandWrapper(options)
}
convertWebPToJPG (options: {
path: string
destination: string
}): Promise<void> {
const { path, destination } = options
this.commandWrapper.buildCommand(path)
.output(destination)
return this.commandWrapper.runCommand({ silent: true })
}
processGIF (options: {
path: string
destination: string
newSize: { width: number, height: number }
}): Promise<void> {
const { path, destination, newSize } = options
this.commandWrapper.buildCommand(path)
.fps(20)
.size(`${newSize.width}x${newSize.height}`)
.output(destination)
return this.commandWrapper.runCommand()
}
async generateThumbnailFromVideo (options: {
fromPath: string
2023-06-02 09:52:55 -04:00
output: string
ffprobe?: FfprobeData
}) {
const { fromPath, output, ffprobe } = options
let duration = await getVideoStreamDuration(fromPath, ffprobe)
2023-06-02 09:52:55 -04:00
if (isNaN(duration)) duration = 0
2023-06-02 09:52:55 -04:00
this.commandWrapper.buildCommand(fromPath)
.seekInput(duration / 2)
.videoFilter('thumbnail=50')
2023-06-02 09:52:55 -04:00
.outputOption('-frames:v 1')
.output(output)
2023-06-02 09:52:55 -04:00
return this.commandWrapper.runCommand()
}
2023-06-01 08:51:16 -04:00
async generateStoryboardFromVideo (options: {
path: string
destination: string
sprites: {
size: {
width: number
height: number
}
count: {
width: number
height: number
}
duration: number
}
}) {
const { path, destination, sprites } = options
const command = this.commandWrapper.buildCommand(path)
const filter = [
`setpts=N/round(FRAME_RATE)/TB`,
`select='not(mod(t,${options.sprites.duration}))'`,
`scale=${sprites.size.width}:${sprites.size.height}`,
`tile=layout=${sprites.count.width}x${sprites.count.height}`
].join(',')
command.outputOption('-filter_complex', filter)
command.outputOption('-frames:v', '1')
command.outputOption('-q:v', '2')
command.output(destination)
return this.commandWrapper.runCommand()
}
}