|
|
|
@ -64,7 +64,7 @@ function plugin(file, librarySettings, inputs) {
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) {
|
|
|
|
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) {
|
|
|
|
const currStream = file.ffProbeData.streams[i];
|
|
|
|
const currStream = file.ffProbeData.streams[i];
|
|
|
|
if (currStream.codec_type.toLowerCase() === 'audio' && currStream.codec_name === inputs.output_codec) {
|
|
|
|
if (currStream.codec_type.toLowerCase() === 'audio' && currStream.codec_name === inputs.output_codec && currStream.tags) {
|
|
|
|
if (currStream.tags.COPYRIGHT === 'henk_asac') {
|
|
|
|
if (currStream.tags.COPYRIGHT === 'henk_asac') {
|
|
|
|
killPlugin = true;
|
|
|
|
killPlugin = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|