File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ class TextStyle:
115115 fontcolor_expr : str = ""
116116 alpha : float = 1.0
117117 font : str = "Sans"
118- ft_load_flags : str = "default"
119118 box : bool = True
120119 boxcolor : str = "white"
121120 boxborderw : str = "10"
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ class VideoAsset(MediaAsset):
3333 def __init__ (
3434 self ,
3535 asset_id : str ,
36- start : Optional [int ] = 0 ,
37- end : Optional [Union [ int , None ] ] = None ,
36+ start : Optional [float ] = 0 ,
37+ end : Optional [float ] = None ,
3838 ) -> None :
3939 super ().__init__ (asset_id )
4040 self .start : int = start
@@ -56,8 +56,8 @@ class AudioAsset(MediaAsset):
5656 def __init__ (
5757 self ,
5858 asset_id : str ,
59- start : Optional [int ] = 0 ,
60- end : Optional [Union [ int , None ] ] = None ,
59+ start : Optional [float ] = 0 ,
60+ end : Optional [float ] = None ,
6161 disable_other_tracks : Optional [bool ] = True ,
6262 fade_in_duration : Optional [Union [int , float ]] = 0 ,
6363 fade_out_duration : Optional [Union [int , float ]] = 0 ,
You can’t perform that action at this time.
0 commit comments