Skip to content

Commit e89aab2

Browse files
committed
Fixed comments
1 parent c427958 commit e89aab2

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

modules/videoSettings.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Runware Video Inference Settings Node
3-
Provides settings (draft, audio, voicePrompt, safetyFilter, promptUpsampling, voiceDescription, style, thinking, multiClip, shotType, promptExtend, syncMode, mode, emotion, temperature, occlusionDetection, fit, caption, loop, hdr, exrExport, tts, activeSpeakerDetection, segments, etc.) for Runware Video Inference.
3+
Provides settings (draft, audio, voicePrompt, safetyFilter, promptUpsampling, voiceDescription, style, thinking, multiClip, shotType, promptExtend, syncMode, mode, emotion, temperature, occlusionDetection, fit, caption, loop, hdr, exrExport, edit, sourcePosition, tts, activeSpeakerDetection, segments, etc.) for Runware Video Inference.
44
"""
55

66
from typing import Dict, Any
@@ -188,12 +188,6 @@ def INPUT_TYPES(cls):
188188
"segments": ("RUNWAREVIDEOINFERENCESETTINGSSEGMENTS", {
189189
"tooltip": "Connect Runware Video Inference Settings Segments for settings.segments[] (startTime, endTime, audio, audioStartTime, audioEndTime).",
190190
}),
191-
"edit": ("RUNWAREVIDEOINFERENCESETTINGSEDIT", {
192-
"tooltip": "Connect Runware Video Inference Settings Edit for settings.edit (autoControls, strength, controls).",
193-
}),
194-
"sourcePosition": ("RUNWAREVIDEOINFERENCESETTINGSSOURCEPOSITION", {
195-
"tooltip": "Connect Runware Video Inference Settings Source Position for settings.sourcePosition (width, height, x, y). Requires inputs.video and output width/height.",
196-
}),
197191
"useVoicePrompt": ("BOOLEAN", {
198192
"tooltip": "Enable to include voicePrompt (delivery style instructions) in video inference settings.",
199193
"default": False,
@@ -291,6 +285,12 @@ def INPUT_TYPES(cls):
291285
"label_on": "Enabled",
292286
"label_off": "Disabled",
293287
}),
288+
"edit": ("RUNWAREVIDEOINFERENCESETTINGSEDIT", {
289+
"tooltip": "Connect Runware Video Inference Settings Edit for settings.edit (autoControls, strength, controls).",
290+
}),
291+
"sourcePosition": ("RUNWAREVIDEOINFERENCESETTINGSSOURCEPOSITION", {
292+
"tooltip": "Connect Runware Video Inference Settings Source Position for settings.sourcePosition (width, height, x, y). Requires inputs.video and output width/height.",
293+
}),
294294
}
295295
}
296296

@@ -299,7 +299,7 @@ def INPUT_TYPES(cls):
299299
FUNCTION = "createSettings"
300300
CATEGORY = "Runware"
301301
DESCRIPTION = (
302-
"Configure video inference settings (draft, audio, voicePrompt, safetyFilter, promptUpsampling, voiceDescription, style, thinking, multiClip, shotType, promptExtend, syncMode, mode, emotion, temperature, occlusionDetection, fit, caption, loop, hdr, exrExport, tts, activeSpeakerDetection, segments, etc.) for Runware Video Inference. "
302+
"Configure video inference settings (draft, audio, voicePrompt, safetyFilter, promptUpsampling, voiceDescription, style, thinking, multiClip, shotType, promptExtend, syncMode, mode, emotion, temperature, occlusionDetection, fit, caption, loop, hdr, exrExport, edit, sourcePosition, tts, activeSpeakerDetection, segments, etc.) for Runware Video Inference. "
303303
"Connect to Runware Video Inference node."
304304
)
305305

0 commit comments

Comments
 (0)