-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'HaveAGitGat:master' into master
- Loading branch information
Showing
394 changed files
with
25,895 additions
and
1,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,87 @@ | ||
{ | ||
"env": { | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"airbnb-base" | ||
"settings": { | ||
"import/resolver": { | ||
"node": { | ||
"extensions": [ | ||
".js", | ||
".jsx", | ||
".ts", | ||
".tsx" | ||
] | ||
} | ||
} | ||
}, | ||
"env": { | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"airbnb-base", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"plugins": [ | ||
"prefer-arrow-functions" | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"project": [ | ||
"./tsconfig.eslint.json" | ||
] | ||
}, | ||
"rules": { | ||
"func-style": [ | ||
"error", | ||
"expression" | ||
], | ||
"prefer-arrow-functions/prefer-arrow-functions": [ | ||
"warn", | ||
{ | ||
"classPropertiesAllowed": false, | ||
"disallowPrototype": false, | ||
"returnStyle": "unchanged", | ||
"singleReturnOnly": false | ||
} | ||
], | ||
"require-await":["error"], | ||
"global-require": 0, | ||
"no-void": 0, | ||
"@typescript-eslint/no-floating-promises": [ | ||
"error" | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2020 | ||
}, | ||
"rules": { | ||
"global-require":0, | ||
"class-methods-use-this": 0, | ||
"no-case-declarations": 0, | ||
"camelcase": 0, | ||
"jsx-a11y/click-events-have-key-events": 0, | ||
"no-underscore-dangle": ["error", { "allow": ["_id"] }], | ||
"max-len": [ | ||
"error", | ||
{ | ||
"code": 120 | ||
} | ||
"@typescript-eslint/no-var-requires": 0, | ||
"class-methods-use-this": 0, | ||
"no-case-declarations": 0, | ||
"camelcase": 0, | ||
"jsx-a11y/click-events-have-key-events": 0, | ||
"no-underscore-dangle": [ | ||
"error", | ||
{ | ||
"allow": [ | ||
"_id" | ||
] | ||
} | ||
], | ||
"max-len": [ | ||
"error", | ||
{ | ||
"code": 120 | ||
} | ||
], | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"js": "never", | ||
"jsx": "never", | ||
"ts": "never", | ||
"tsx": "never" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,7 @@ | |
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
/Local | ||
/FlowPluginsTs/LocalFlowPlugins | ||
/FlowPlugins/LocalFlowPlugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
Community/Tdarr_Plugin_00td_action_remove_stream_by_specified_property.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
const details = () => ({ | ||
id: 'Tdarr_Plugin_00td_action_remove_stream_by_specified_property', | ||
Stage: 'Pre-processing', | ||
Name: 'Remove streams by specified property', | ||
Type: 'Video', | ||
Operation: 'Transcode', | ||
Description: ` | ||
This plugin removes streams based on the specified property. | ||
`, | ||
Version: '1.00', | ||
Tags: 'action', | ||
Inputs: [ | ||
{ | ||
name: 'propertyToCheck', | ||
type: 'string', | ||
defaultValue: '', | ||
inputUI: { | ||
type: 'text', | ||
}, | ||
tooltip: | ||
`Enter one stream property to check. | ||
\\nExample:\\n | ||
codec_name | ||
`, | ||
}, | ||
{ | ||
name: 'valuesToRemove', | ||
type: 'string', | ||
defaultValue: '', | ||
inputUI: { | ||
type: 'text', | ||
}, | ||
tooltip: | ||
`Enter values of the property above to remove. For example, if removing by codec_name, could enter ac3,aac: | ||
\\nExample:\\n | ||
ac3,aac | ||
`, | ||
}, | ||
], | ||
}); | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const plugin = (file, librarySettings, inputs, otherArguments) => { | ||
const lib = require('../methods/lib')(); | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign | ||
inputs = lib.loadDefaultValues(inputs, details); | ||
const response = { | ||
processFile: false, | ||
preset: '', | ||
container: `.${file.container}`, | ||
handBrakeMode: false, | ||
FFmpegMode: true, | ||
reQueueAfter: false, | ||
infoLog: '', | ||
}; | ||
|
||
if (inputs.propertyToCheck.trim() === '') { | ||
response.infoLog += 'No input propertyToCheck entered in plugin, skipping \n'; | ||
return response; | ||
} | ||
|
||
const propertyToCheck = inputs.propertyToCheck.trim(); | ||
|
||
if (inputs.valuesToRemove.trim() === '') { | ||
response.infoLog += 'No input valuesToRemove entered in plugin, skipping \n'; | ||
return response; | ||
} | ||
|
||
const valuesToRemove = inputs.valuesToRemove.trim().split(','); | ||
|
||
response.preset += ', -map 0 -c copy -max_muxing_queue_size 9999'; | ||
|
||
try { | ||
let streamToRemove = false; | ||
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) { | ||
try { | ||
if (valuesToRemove.includes(String(file.ffProbeData.streams[i][propertyToCheck]))) { | ||
response.preset += ` -map -0:${i} `; | ||
response.infoLog += ` Removing stream ${i} which is has ${propertyToCheck}` | ||
+ ` of ${file.ffProbeData.streams[i][propertyToCheck]} \n`; | ||
streamToRemove = true; | ||
} | ||
} catch (err) { | ||
response.infoLog += ` Error reading stream ${i} ${propertyToCheck} \n`; | ||
} | ||
} | ||
|
||
if (streamToRemove === true) { | ||
response.processFile = true; | ||
response.infoLog += ' Files has streams which need to be removed, processing \n'; | ||
} else { | ||
response.infoLog += ' Files does not have streams which need to be removed \n'; | ||
} | ||
} catch (err) { | ||
response.infoLog += ` Error checking streams:${err}`; | ||
} | ||
|
||
return response; | ||
}; | ||
|
||
module.exports.details = details; | ||
module.exports.plugin = plugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.