We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089bbdf commit b301ce0Copy full SHA for b301ce0
impd
@@ -374,6 +374,8 @@ sub_conv() {
374
}
375
376
parse_speech_fragments() {
377
+ # Note: The function incorrectly parses timestamps on certain locales on certain systems,
378
+ # such as sv_SE.UTF-8 on Tuxedo OS. Force the C locale to fix it.
379
LC_NUMERIC=C awk -F' --> ' -vPADDING="$padding" -vSRT_TIMING_PATTERN="$srt_timing_pattern" '
380
function time_parts_to_seconds(hours, mins, secs) {
381
return hours * 3600.0 + mins * 60.0 + secs
0 commit comments