fix: variable video_frames_generator

This commit is contained in:
soumik12345 2025-04-07 21:45:47 +05:30
parent 6a378a32f7
commit e73cc438e1
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ def process_video(
```
"""
source_video_info = VideoInfo.from_video_path(video_path=source_path)
frame_generator = get_video_frames_generator(
video_frames_generator = get_video_frames_generator(
source_path=source_path, end=max_frames
)
with VideoSink(target_path=target_path, video_info=source_video_info) as sink: