@@ -76,15 +76,17 @@ def make_test_case(args: argparse.Namespace, npy_savename: Optional[str], sync_w
76
76
return 0
77
77
78
78
79
- def get_srt_pipe_maker (args : argparse .Namespace , srtin : Optional [str ]) -> Callable [[float ], Pipeline ]:
79
+ def get_srt_pipe_maker (
80
+ args : argparse .Namespace , srtin : Optional [str ]
81
+ ) -> Callable [[Optional [float ]], Union [Pipeline , Callable [[float ], Pipeline ]]]:
80
82
if srtin is None :
81
83
srtin_format = 'srt'
82
84
else :
83
85
srtin_format = os .path .splitext (srtin )[- 1 ][1 :]
84
86
parser = make_subtitle_parser (fmt = srtin_format , caching = True , ** args .__dict__ )
85
- return lambda scale_factor : cast ( Pipeline , make_subtitle_speech_pipeline (
87
+ return lambda scale_factor : make_subtitle_speech_pipeline (
86
88
** override (args , scale_factor = scale_factor , parser = parser )
87
- ))
89
+ )
88
90
89
91
90
92
def get_framerate_ratios_to_try (args : argparse .Namespace ) -> List [Optional [float ]]:
@@ -99,7 +101,7 @@ def get_framerate_ratios_to_try(args: argparse.Namespace) -> List[Optional[float
99
101
return framerate_ratios
100
102
101
103
102
- def try_sync (args : argparse .Namespace , reference_pipe , result ) -> bool :
104
+ def try_sync (args : argparse .Namespace , reference_pipe : Pipeline , result : Dict [ str , Any ] ) -> bool :
103
105
sync_was_successful = True
104
106
exc = None
105
107
try :
@@ -118,16 +120,14 @@ def try_sync(args: argparse.Namespace, reference_pipe, result) -> bool:
118
120
else :
119
121
srt_pipe .fit (srtin )
120
122
if not args .skip_infer_framerate_ratio and hasattr (reference_pipe [- 1 ], 'num_frames' ):
121
- inferred_framerate_ratio_from_length = float (reference_pipe [- 1 ].num_frames ) / srt_pipes [0 ][- 1 ].num_frames
123
+ inferred_framerate_ratio_from_length = float (reference_pipe [- 1 ].num_frames ) / cast ( Pipeline , srt_pipes [0 ]) [- 1 ].num_frames
122
124
logger .info ('inferred frameratio ratio: %.3f' % inferred_framerate_ratio_from_length )
123
- srt_pipes .append (srt_pipe_maker (inferred_framerate_ratio_from_length ).fit (srtin ))
125
+ srt_pipes .append (cast ( Pipeline , srt_pipe_maker (inferred_framerate_ratio_from_length ) ).fit (srtin ))
124
126
logger .info ('...done' )
125
127
logger .info ('computing alignments...' )
126
128
if args .skip_sync :
127
129
best_score = 0.
128
- best_srt_pipe = srt_pipes [0 ]
129
- if callable (best_srt_pipe ):
130
- best_srt_pipe = best_srt_pipe (1.0 ).fit (srtin )
130
+ best_srt_pipe = cast (Pipeline , srt_pipes [0 ])
131
131
offset_samples = 0
132
132
else :
133
133
(best_score , offset_samples ), best_srt_pipe = MaxScoreAligner (
0 commit comments