renderizando projetos no mmpCreator mudos
Deploy / Deploy (push) Successful in 1m58s
Details
Deploy / Deploy (push) Successful in 1m58s
Details
This commit is contained in:
parent
065cb114ae
commit
f75d2d9403
|
|
@ -1053,8 +1053,6 @@ export async function renderProjectToBlob({ tailSec = 0.25 } = {}) {
|
|||
const bpm = parseInt(document.getElementById("bpm-input")?.value, 10) || 120;
|
||||
const stepSec = _secondsPerStep(bpm);
|
||||
const duration = _projectDurationSeconds(bpm) + Math.max(0, Number(tailSec) || 0);
|
||||
const inst = new Cls(Tone.getContext(), track.params || track.pluginData || {});
|
||||
inst.connect(mix.instVol);
|
||||
|
||||
const buffer = await Tone.Offline(async ({ transport }) => {
|
||||
transport.bpm.value = bpm;
|
||||
|
|
@ -1163,7 +1161,7 @@ export async function renderProjectToBlob({ tailSec = 0.25 } = {}) {
|
|||
return null;
|
||||
}
|
||||
|
||||
const inst = new Cls(null, track.params || track.pluginData || {});
|
||||
const inst = new Cls(Tone.getContext(), track.params || track.pluginData || {});
|
||||
inst.connect(mix.instVol);
|
||||
|
||||
pluginCache.set(key, inst);
|
||||
|
|
|
|||
Loading…
Reference in New Issue