mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-22 11:54:32 +02:00
Remove fluent-ffmpeg dependency
This commit is contained in:
parent
8562b8d1b3
commit
b61ecefce4
35 changed files with 4405 additions and 50 deletions
14
server/libs/fluentFfmpeg/presets/divx.js
Normal file
14
server/libs/fluentFfmpeg/presets/divx.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*jshint node:true */
|
||||
'use strict';
|
||||
|
||||
exports.load = function(ffmpeg) {
|
||||
ffmpeg
|
||||
.format('avi')
|
||||
.videoBitrate('1024k')
|
||||
.videoCodec('mpeg4')
|
||||
.size('720x?')
|
||||
.audioBitrate('128k')
|
||||
.audioChannels(2)
|
||||
.audioCodec('libmp3lame')
|
||||
.outputOptions(['-vtag DIVX']);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue