Merge branch 'master' into defaultValues

This commit is contained in:
HaveAGitGat 2021-12-12 22:01:28 +00:00 committed by GitHub
commit 13de43b1b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,7 +90,11 @@ const plugin = (file, librarySettings, inputs, otherArguments) => {
for (let i = 0; i < file.ffProbeData.streams.length; i += 1) {
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') {
killPlugin = true;
}