Add Tdarr_Plugin_00td_action_add_audio_stream_codec test

This commit is contained in:
HaveAGitGat 2022-05-21 13:55:02 +01:00
parent 275025ece8
commit 8f9a97021f
2 changed files with 92 additions and 1 deletions

View file

@ -1,4 +1,3 @@
// tdarrSkipTest
const details = () => ({
id: 'Tdarr_Plugin_00td_action_add_audio_stream_codec',
Stage: 'Pre-processing',

View file

@ -0,0 +1,92 @@
/* eslint max-len: 0 */
const run = require('../helpers/run');
const tests = [
{
input: {
file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {},
inputs: {},
otherArguments: {},
},
output: {
processFile: true,
preset: ',-map 0:v -map 0:1 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 aac -ac 2',
container: '.mp4',
handBrakeMode: false,
FFmpegMode: false,
reQueueAfter: true,
infoLog: 'The required channel count 2 is lower than the highest available channel count (6). Adding! \n',
handbrakeMode: false,
ffmpegMode: true,
},
},
{
input: {
file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {},
inputs: {
audioCodec: 'eac3',
},
otherArguments: {},
},
output: {
processFile: true,
preset: ',-map 0:v -map 0:1 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 eac3 -ac 2',
container: '.mp4',
handBrakeMode: false,
FFmpegMode: false,
reQueueAfter: true,
infoLog: 'The required channel count 2 is lower than the highest available channel count (6). Adding! \n',
handbrakeMode: false,
ffmpegMode: true,
},
},
{
input: {
file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {},
inputs: {
audioCodec: 'eac3',
channels: 6,
},
otherArguments: {},
},
output: {
processFile: true,
preset: ',-map 0:v -map 0:1 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 eac3 -ac 6',
container: '.mp4',
handBrakeMode: false,
FFmpegMode: false,
reQueueAfter: true,
infoLog: 'The required channel count 6 is lower than the highest available channel count (6). Adding! \n',
handbrakeMode: false,
ffmpegMode: true,
},
},
{
input: {
file: require('../sampleData/media/sampleH264_1.json'),
librarySettings: {},
inputs: {
audioCodec: 'eac3',
channels: 8,
language: 'fr',
},
otherArguments: {},
},
output: {
processFile: true,
preset: ',-map 0:v -map 0:1 -map 0:a -map 0:s? -map 0:d? -c copy -c:a:0 eac3 -ac 6',
container: '.mp4',
handBrakeMode: false,
FFmpegMode: false,
reQueueAfter: true,
infoLog: 'The required channel count (8) is higher than the highest channel available in specified lang tag (6). Adding lower channel track. \n',
handbrakeMode: false,
ffmpegMode: true,
},
},
];
run(tests);