potential false positive flag fix due to variable naming
This commit is contained in:
@@ -3703,14 +3703,14 @@ class TimelineEditor {
|
|||||||
|
|
||||||
if (playDurationSec <= 0) continue;
|
if (playDurationSec <= 0) continue;
|
||||||
|
|
||||||
const source = this.audioContext.createBufferSource();
|
const bufferNode = this.audioContext.createBufferSource();
|
||||||
source.buffer = audioBuffer;
|
bufferNode.buffer = audioBuffer;
|
||||||
source.connect(this.audioContext.destination);
|
bufferNode.connect(this.audioContext.destination);
|
||||||
|
|
||||||
const startTime = this.audioContext.currentTime + waitTimeSec;
|
const startTime = this.audioContext.currentTime + waitTimeSec;
|
||||||
source.start(startTime, fileOffsetSec, playDurationSec);
|
bufferNode.start(startTime, fileOffsetSec, playDurationSec);
|
||||||
|
|
||||||
this.activeAudioNodes.push(source);
|
this.activeAudioNodes.push(bufferNode);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Playback decode error for segment:", err);
|
console.error("Playback decode error for segment:", err);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "WhatDreamsCost-ComfyUI"
|
name = "WhatDreamsCost-ComfyUI"
|
||||||
description = "A variety of custom ComfyUI nodes and workflows for creatives."
|
description = "A variety of custom ComfyUI nodes and workflows for creatives."
|
||||||
version = "1.3.6"
|
version = "1.3.7"
|
||||||
license = {file = "LICENSE"}
|
license = {file = "LICENSE"}
|
||||||
dependencies = [
|
|
||||||
"numpy",
|
|
||||||
"pillow",
|
|
||||||
"av",
|
|
||||||
"torch",
|
|
||||||
"torchvision"
|
|
||||||
]
|
|
||||||
# classifiers = [
|
# classifiers = [
|
||||||
# # For OS-independent nodes (works on all operating systems)
|
# # For OS-independent nodes (works on all operating systems)
|
||||||
# "Operating System :: OS Independent",
|
# "Operating System :: OS Independent",
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
numpy
|
|
||||||
pillow
|
|
||||||
av
|
|
||||||
torch
|
|
||||||
torchvision
|
|
||||||
Reference in New Issue
Block a user