Skip to content

Commit 49f1736

Browse files
committed
cleanup
1 parent 5b24aee commit 49f1736

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pytrickle/frame_processor.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
making it easy to integrate AI models and async pipelines with PyTrickle.
55
"""
66

7-
import asyncio
87
import logging
98
from abc import ABC, abstractmethod
109
from typing import Optional, Any, Dict, List
11-
from .frames import VideoFrame, AudioFrame, TextOutput
10+
from .frames import VideoFrame, AudioFrame
1211
from . import ErrorCallback
1312
from .state import StreamState, PipelineState
1413

@@ -22,7 +21,6 @@ class FrameProcessor(ABC):
2221
This class provides native async frame processing for PyTrickle. It handles:
2322
- initialization and warmup
2423
- async processing video and audio frames
25-
- text output publishing
2624
2725
Lifecycle:
2826
1. Processing begins automatically when streams start
@@ -124,4 +122,4 @@ def update_params(self, params: Dict[str, Any]):
124122
Args:
125123
params: Dictionary of parameters to update
126124
"""
127-
pass
125+
pass

0 commit comments

Comments
 (0)