MogensR commited on
Commit
8803453
·
1 Parent(s): 01ce34f

Create api/websocket.py

Browse files
Files changed (1) hide show
  1. api/api/websocket.py +40 -0
api/api/websocket.py ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ BackgroundFX Pro API Module.
3
+ Provides high-level interfaces for processing, streaming, and serving.
4
+ """
5
+
6
+ from .pipeline import (
7
+ ProcessingPipeline,
8
+ PipelineConfig,
9
+ PipelineResult,
10
+ ProcessingMode,
11
+ PipelineStage
12
+ )
13
+
14
+ from .video_processor import (
15
+ VideoProcessorAPI,
16
+ VideoStats,
17
+ StreamConfig,
18
+ VideoStreamMode,
19
+ OutputFormat
20
+ )
21
+
22
+ from .batch_processor import (
23
+ BatchProcessor,
24
+ BatchConfig,
25
+ BatchItem,
26
+ BatchReport,
27
+ BatchPriority,
28
+ FileType
29
+ )
30
+
31
+ from .api_server import (
32
+ app,
33
+ ServerConfig,
34
+ ProcessingRequest,
35
+ ImageProcessingRequest,
36
+ VideoProcessingRequest,
37
+ BatchProcessingRequest,
38
+ StreamingRequest,
39
+ ProcessingResponse,
40
+ JobStat