This commit is contained in:
Mylloon 2024-05-17 21:24:27 +02:00
parent eb84c48b3c
commit ed6f0a2b49
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -171,7 +171,7 @@ app.whenReady().then(() => {
// Mapping of tracks for FFMPEG
const mappingTracks = Array(nbTracks)
.fill("-map 0:")
.map(function (str, index) {
.map((str, index) => {
return str + index;
})
.join(" ");