We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccfdbe1 commit 9c4af6aCopy full SHA for 9c4af6a
1 file changed
src/XML/genXML.ts
@@ -8,7 +8,7 @@ export class XML extends Generator {
8
const builder = new xmlBuilder();
9
const [width, height] = (() => {
10
const split = this.resolution?.split('x');
11
- return split ? split.map(parseInt) : [null, null];
+ return split ? split.map(n=>parseInt(n)) : [null, null];
12
})();
13
builder.buildContext(path.parse(this.clipName).name, width, height, this.frameRate, this.cuts[this.cuts.length - 1].end, () => {
14
this.cuts.forEach((cut) => {
0 commit comments