ugcinc 4.5.81 → 4.5.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -309,7 +309,6 @@ export declare const nodeDefinitions: {
309
309
  readonly 'scene-split': NodeDefinition<"scene-split", "generator", {
310
310
  detector_type: import("../..").SceneSplitDetectorConfig["detector_type"];
311
311
  threshold: number;
312
- min_scene_length_sec: number;
313
312
  fade_detection: boolean;
314
313
  outputMode: import("./types").OutputMode;
315
314
  selectionMode: import("./types").SelectionMode | null;
@@ -10,7 +10,6 @@ export interface SceneSplitNodeOutputs {
10
10
  declare const definition: import("./types").NodeDefinition<"scene-split", "generator", {
11
11
  detector_type: SceneSplitDetectorConfig["detector_type"];
12
12
  threshold: number;
13
- min_scene_length_sec: number;
14
13
  fade_detection: boolean;
15
14
  outputMode: OutputMode;
16
15
  selectionMode: SelectionMode | null;
@@ -8,7 +8,7 @@ const definition = (0, types_1.defineNode)({
8
8
  nodeId: 'scene-split',
9
9
  label: 'Scene Split',
10
10
  description: 'Split a video into clips at detected scene boundaries',
11
- guide: 'Detects scene boundaries in a video using frame analysis and splits it into individual clips. Supports Content Detector (for hard cuts) and Adaptive Detector (adapts to varying content). Configure threshold sensitivity, minimum scene length, and optional fade detection. Output is an array of video clips — connect to a For Each node to process each clip individually. Use cases: splitting long-form content into short clips, isolating scenes for selective reposting, breaking down compilation videos.',
11
+ guide: 'Detects scene boundaries in a video using frame analysis and splits it into individual clips. Supports Content Detector (for hard cuts) and Adaptive Detector (adapts to varying content). Configure threshold sensitivity and optional fade detection. Output is an array of video clips — connect to a For Each node to process each clip individually. Use cases: splitting long-form content into short clips, isolating scenes for selective reposting, breaking down compilation videos.',
12
12
  type: 'generator',
13
13
  category: 'Generation',
14
14
  outputModes: ['per-input', 'single'],
@@ -16,7 +16,6 @@ const definition = (0, types_1.defineNode)({
16
16
  defaults: {
17
17
  detector_type: 'content',
18
18
  threshold: 27.0,
19
- min_scene_length_sec: 2.0,
20
19
  fade_detection: false,
21
20
  outputMode: 'per-input',
22
21
  selectionMode: null,
package/dist/render.d.ts CHANGED
@@ -73,8 +73,6 @@ export interface SceneSplitDetectorConfig {
73
73
  detector_type: 'content' | 'adaptive';
74
74
  /** Detection threshold (default: 27.0 for content, 3.0 for adaptive) */
75
75
  threshold: number;
76
- /** Minimum scene length in seconds (default: 2.0) */
77
- min_scene_length_sec: number;
78
76
  /** Enable fade-in/fade-out detection as secondary pass */
79
77
  fade_detection: boolean;
80
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.5.81",
3
+ "version": "4.5.82",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",