File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2626@dataclass
2727class FunscriptGeneratorParameter :
2828 """ Funscript Generator Parameter Dataclass with default values """
29- video_path : str
30- start_frame : int = 0
29+ video_path : str # no default value
30+ start_frame : int = 0 # default is video start
3131 skip_frames : int = HYPERPARAMETER ['skip_frames' ]
32- max_playback_fps : int = 0
33- direction : str = 'y'
34- use_zoom : bool = False
32+ max_playback_fps : int = HYPERPARAMETER [ 'max_playback_fps' ]
33+ direction : str = HYPERPARAMETER [ 'tracking_direction' ]
34+ use_zoom : bool = HYPERPARAMETER [ 'use_zoom' ]
3535 track_men : bool = True
3636
3737
Original file line number Diff line number Diff line change 11skip_frames : 1
22avg_sec_for_local_min_max_extraction : 1.9
33min_frames : 120
4+ use_zoom : False
5+ tracking_direction : ' y'
6+ max_playback_fps : 0
You can’t perform that action at this time.
0 commit comments