mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-08 19:52:50 +02:00
Remove fluent-ffmpeg dependency
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/*jshint node:true */
|
||||
'use strict';
|
||||
|
||||
exports.load = function(ffmpeg) {
|
||||
ffmpeg
|
||||
.format('flv')
|
||||
.flvmeta()
|
||||
.size('320x?')
|
||||
.videoBitrate('512k')
|
||||
.videoCodec('libx264')
|
||||
.fps(24)
|
||||
.audioBitrate('96k')
|
||||
.audioCodec('aac')
|
||||
.audioFrequency(22050)
|
||||
.audioChannels(2);
|
||||
};
|
||||
Reference in New Issue
Block a user