Add original_media_type field to Stream model for media type tracking

This commit is contained in:
Esa Kataja
2025-04-17 12:31:53 +03:00
parent 5d5371c991
commit 55cd3e7ec0
+1
View File
@@ -27,6 +27,7 @@ class VideoStream(BaseModel):
tags: Tags | None = Field(None) tags: Tags | None = Field(None)
preset: int = Field(2) preset: int = Field(2)
crf: int = Field(30) crf: int = Field(30)
original_media_type: str = Field(None)
@cached_property @cached_property
def fps(self) -> float: def fps(self) -> float: