Add 30 fps limit in transcoding
This commit is contained in:
parent
1125c40a32
commit
73c695919c
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v0.0.28-alpha
|
||||||
|
|
||||||
|
### BREAKING CHANGES
|
||||||
|
|
||||||
|
* Enable original file transcoding by default in configuration
|
||||||
|
* Disable transcoding in other definitions in configuration
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Fallback to HTTP if video cannot be loaded
|
||||||
|
* Limit to 30 FPS in transcoding
|
||||||
|
|
||||||
|
|
||||||
## v0.0.27-alpha
|
## v0.0.27-alpha
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -1,16 +1,27 @@
|
||||||
import * as ffmpeg from 'fluent-ffmpeg'
|
import * as ffmpeg from 'fluent-ffmpeg'
|
||||||
import { VideoResolution } from '../../shared/models/videos'
|
import { VideoResolution } from '../../shared/models/videos'
|
||||||
import { CONFIG } from '../initializers'
|
import { CONFIG, MAX_VIDEO_TRANSCODING_FPS } from '../initializers'
|
||||||
|
|
||||||
function getVideoFileHeight (path: string) {
|
async function getVideoFileHeight (path: string) {
|
||||||
return new Promise<number>((res, rej) => {
|
const videoStream = await getVideoFileStream(path)
|
||||||
ffmpeg.ffprobe(path, (err, metadata) => {
|
return videoStream.height
|
||||||
if (err) return rej(err)
|
}
|
||||||
|
|
||||||
const videoStream = metadata.streams.find(s => s.codec_type === 'video')
|
async function getVideoFileFPS (path: string) {
|
||||||
return res(videoStream.height)
|
const videoStream = await getVideoFileStream(path)
|
||||||
})
|
|
||||||
})
|
for (const key of [ 'r_frame_rate' , 'avg_frame_rate' ]) {
|
||||||
|
const valuesText: string = videoStream[key]
|
||||||
|
if (!valuesText) continue
|
||||||
|
|
||||||
|
const [ frames, seconds ] = valuesText.split('/')
|
||||||
|
if (!frames || !seconds) continue
|
||||||
|
|
||||||
|
const result = parseInt(frames, 10) / parseInt(seconds, 10)
|
||||||
|
if (result > 0) return result
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDurationFromVideoFile (path: string) {
|
function getDurationFromVideoFile (path: string) {
|
||||||
|
@ -49,7 +60,9 @@ type TranscodeOptions = {
|
||||||
}
|
}
|
||||||
|
|
||||||
function transcode (options: TranscodeOptions) {
|
function transcode (options: TranscodeOptions) {
|
||||||
return new Promise<void>((res, rej) => {
|
return new Promise<void>(async (res, rej) => {
|
||||||
|
const fps = await getVideoFileFPS(options.inputPath)
|
||||||
|
|
||||||
let command = ffmpeg(options.inputPath)
|
let command = ffmpeg(options.inputPath)
|
||||||
.output(options.outputPath)
|
.output(options.outputPath)
|
||||||
.videoCodec('libx264')
|
.videoCodec('libx264')
|
||||||
|
@ -57,6 +70,8 @@ function transcode (options: TranscodeOptions) {
|
||||||
.outputOption('-movflags faststart')
|
.outputOption('-movflags faststart')
|
||||||
// .outputOption('-crf 18')
|
// .outputOption('-crf 18')
|
||||||
|
|
||||||
|
if (fps > MAX_VIDEO_TRANSCODING_FPS) command = command.withFPS(MAX_VIDEO_TRANSCODING_FPS)
|
||||||
|
|
||||||
if (options.resolution !== undefined) {
|
if (options.resolution !== undefined) {
|
||||||
const size = `?x${options.resolution}` // '?x720' for example
|
const size = `?x${options.resolution}` // '?x720' for example
|
||||||
command = command.size(size)
|
command = command.size(size)
|
||||||
|
@ -74,5 +89,21 @@ export {
|
||||||
getVideoFileHeight,
|
getVideoFileHeight,
|
||||||
getDurationFromVideoFile,
|
getDurationFromVideoFile,
|
||||||
generateImageFromVideoFile,
|
generateImageFromVideoFile,
|
||||||
transcode
|
transcode,
|
||||||
|
getVideoFileFPS
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
function getVideoFileStream (path: string) {
|
||||||
|
return new Promise<any>((res, rej) => {
|
||||||
|
ffmpeg.ffprobe(path, (err, metadata) => {
|
||||||
|
if (err) return rej(err)
|
||||||
|
|
||||||
|
const videoStream = metadata.streams.find(s => s.codec_type === 'video')
|
||||||
|
if (!videoStream) throw new Error('Cannot find video stream of ' + path)
|
||||||
|
|
||||||
|
return res(videoStream)
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -232,6 +232,7 @@ const CONSTRAINTS_FIELDS = {
|
||||||
}
|
}
|
||||||
|
|
||||||
let VIDEO_VIEW_LIFETIME = 60000 * 60 // 1 hour
|
let VIDEO_VIEW_LIFETIME = 60000 * 60 // 1 hour
|
||||||
|
const MAX_VIDEO_TRANSCODING_FPS = 30
|
||||||
|
|
||||||
const VIDEO_RATE_TYPES: { [ id: string ]: VideoRateType } = {
|
const VIDEO_RATE_TYPES: { [ id: string ]: VideoRateType } = {
|
||||||
LIKE: 'like',
|
LIKE: 'like',
|
||||||
|
@ -442,6 +443,7 @@ export {
|
||||||
VIDEO_LICENCES,
|
VIDEO_LICENCES,
|
||||||
VIDEO_RATE_TYPES,
|
VIDEO_RATE_TYPES,
|
||||||
VIDEO_MIMETYPE_EXT,
|
VIDEO_MIMETYPE_EXT,
|
||||||
|
MAX_VIDEO_TRANSCODING_FPS,
|
||||||
USER_PASSWORD_RESET_LIFETIME,
|
USER_PASSWORD_RESET_LIFETIME,
|
||||||
IMAGE_MIMETYPE_EXT,
|
IMAGE_MIMETYPE_EXT,
|
||||||
SCHEDULER_INTERVAL,
|
SCHEDULER_INTERVAL,
|
||||||
|
|
Binary file not shown.
|
@ -2,10 +2,13 @@
|
||||||
|
|
||||||
import * as chai from 'chai'
|
import * as chai from 'chai'
|
||||||
import 'mocha'
|
import 'mocha'
|
||||||
|
import { VideoDetails } from '../../../../shared/models/videos'
|
||||||
|
import { getVideoFileFPS } from '../../../helpers/ffmpeg-utils'
|
||||||
import {
|
import {
|
||||||
flushAndRunMultipleServers, flushTests, getVideo, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo,
|
flushAndRunMultipleServers, flushTests, getVideo, getVideosList, killallServers, root, ServerInfo, setAccessTokensToServers, uploadVideo,
|
||||||
wait, webtorrentAdd
|
wait, webtorrentAdd
|
||||||
} from '../../utils'
|
} from '../../utils'
|
||||||
|
import { join } from 'path'
|
||||||
|
|
||||||
const expect = chai.expect
|
const expect = chai.expect
|
||||||
|
|
||||||
|
@ -78,6 +81,34 @@ describe('Test video transcoding', function () {
|
||||||
expect(torrent.files[0].path).match(/\.mp4$/)
|
expect(torrent.files[0].path).match(/\.mp4$/)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('Should transcode to 30 FPS', async function () {
|
||||||
|
this.timeout(60000)
|
||||||
|
|
||||||
|
const videoAttributes = {
|
||||||
|
name: 'my super 30fps name for server 2',
|
||||||
|
description: 'my super 30fps description for server 2',
|
||||||
|
fixture: 'video_60fps_short.mp4'
|
||||||
|
}
|
||||||
|
await uploadVideo(servers[1].url, servers[1].accessToken, videoAttributes)
|
||||||
|
|
||||||
|
await wait(20000)
|
||||||
|
|
||||||
|
const res = await getVideosList(servers[1].url)
|
||||||
|
|
||||||
|
const video = res.body.data[0]
|
||||||
|
const res2 = await getVideo(servers[1].url, video.id)
|
||||||
|
const videoDetails: VideoDetails = res2.body
|
||||||
|
|
||||||
|
expect(videoDetails.files).to.have.lengthOf(1)
|
||||||
|
|
||||||
|
for (const resolution of [ '240' ]) {
|
||||||
|
const path = join(root(), 'test2', 'videos', video.uuid + '-' + resolution + '.mp4')
|
||||||
|
const fps = await getVideoFileFPS(path)
|
||||||
|
|
||||||
|
expect(fps).to.be.below(31)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
after(async function () {
|
after(async function () {
|
||||||
killallServers(servers)
|
killallServers(servers)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue