We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8900ba6 commit cff8882Copy full SHA for cff8882
api/src/stream/types.js
@@ -29,7 +29,7 @@ const convertMetadataToFFmpeg = (metadata) => {
29
30
for (const [ name, value ] of Object.entries(metadata)) {
31
if (metadataTags.includes(name)) {
32
- args.push('-metadata', `${name}=${value.replace(/[\u0000-\u0009]/g, "")}`);
+ args.push('-metadata', `${name}=${value.replace(/[\u0000-\u0009]/g, "")}`); // skipcq: JS-0004
33
} else {
34
throw `${name} metadata tag is not supported.`;
35
}
0 commit comments