From 55cd3e7ec0e7ff128acd03aaf759a676d7770991 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Thu, 17 Apr 2025 12:31:53 +0300 Subject: [PATCH] Add original_media_type field to Stream model for media type tracking --- src/models/streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/streams.py b/src/models/streams.py index 7028abb..46d876a 100644 --- a/src/models/streams.py +++ b/src/models/streams.py @@ -27,6 +27,7 @@ class VideoStream(BaseModel): tags: Tags | None = Field(None) preset: int = Field(2) crf: int = Field(30) + original_media_type: str = Field(None) @cached_property def fps(self) -> float: