mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-14 01:36:08 -07:00
Migz Plugins Update
1) Add input to enable bframes. - ffmpegGPU plugin 2) Add timed_id3 has codec type to remove for mkv/mp4 if force_conform is enabled. - Both ffmpeg plugins 3) max_muxing_queue_size change to 9999 as this number is still too low in some cases.
This commit is contained in:
parent
6250c97f9d
commit
6901d53feb
8 changed files with 47 additions and 24 deletions
|
|
@ -6,7 +6,7 @@ function details() {
|
|||
Type: "Audio",
|
||||
Operation: "Transcode",
|
||||
Description: `This plugin can convert any 2.0 audio track/s to AAC and can create downmixed audio tracks. \n\n`,
|
||||
Version: "2.1",
|
||||
Version: "2.2",
|
||||
Link: "",
|
||||
Tags: "pre-processing,ffmpeg,audio only,configurable",
|
||||
Inputs: [
|
||||
|
|
@ -140,7 +140,7 @@ function plugin(file, librarySettings, inputs) {
|
|||
// Convert file if convert variable is set to true.
|
||||
if (convert == true) {
|
||||
response.processFile = true;
|
||||
response.preset = `, -map 0 -c:v copy -c:a copy ${ffmpegCommandInsert} -strict -2 -c:s copy -max_muxing_queue_size 4096 `;
|
||||
response.preset = `, -map 0 -c:v copy -c:a copy ${ffmpegCommandInsert} -strict -2 -c:s copy -max_muxing_queue_size 9999 `;
|
||||
} else {
|
||||
response.infoLog += "☑File contains all required audio formats. \n";
|
||||
response.processFile = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue