File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ class TextStyle:
115
115
fontcolor_expr : str = ""
116
116
alpha : float = 1.0
117
117
font : str = "Sans"
118
- ft_load_flags : str = "default"
119
118
box : bool = True
120
119
boxcolor : str = "white"
121
120
boxborderw : str = "10"
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ class VideoAsset(MediaAsset):
33
33
def __init__ (
34
34
self ,
35
35
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 ,
38
38
) -> None :
39
39
super ().__init__ (asset_id )
40
40
self .start : int = start
@@ -56,8 +56,8 @@ class AudioAsset(MediaAsset):
56
56
def __init__ (
57
57
self ,
58
58
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 ,
61
61
disable_other_tracks : Optional [bool ] = True ,
62
62
fade_in_duration : Optional [Union [int , float ]] = 0 ,
63
63
fade_out_duration : Optional [Union [int , float ]] = 0 ,
You can’t perform that action at this time.
0 commit comments