cuepoints analyzer disabled by default

This commit is contained in:
jo 2023-02-11 00:44:44 +01:00 committed by Kyle Robbertze
parent f5e46c6f3d
commit 87de25052a
7 changed files with 10 additions and 9 deletions

View file

@ -25,7 +25,7 @@ class PipelineStatus(int, Enum):
class PipelineOptions(BaseModel):
analyze_cue_points: bool = True
analyze_cue_points: bool = False
class Pipeline: