Skip to content

Commit bed3128

Browse files
authored
Update bulkadd.js
Account for other splitting programs (like reaper) that don't fade out the audio files :3
1 parent 9570f8d commit bed3128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bulkadd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function bulkadd() {
2626
}
2727

2828
for (var i = 0; i < files.length; i++) {
29-
var sound = track.addSound(parameter, 'SingleSound', i + 1, 1);
29+
var sound = track.addSound(parameter, 'SingleSound', i + 1, 0.5);
3030
sound.audioFile = files[i];
3131
}
3232
}
@@ -56,4 +56,4 @@ function error(reason) {
5656
},
5757
]
5858
})
59-
}
59+
}

0 commit comments

Comments
 (0)