Fix some transcribe-video scripts

This commit is contained in:
Michael Campagnaro 2023-10-05 16:18:47 -04:00
parent 8ad4d67d84
commit 2beccaeeb3
3 changed files with 3 additions and 3 deletions

View File

@ -34,4 +34,4 @@ end_time="$4"
if [[ $start_time == "" ]]; then start_time="0"; fi
if [[ $end_time == "" ]]; then end_time="0"; fi
transcribe-video "$1" "$2" "base"
transcribe-video "$1" "$2" $start_time $end_time "base"

View File

@ -34,4 +34,4 @@ end_time="$4"
if [[ $start_time == "" ]]; then start_time="0"; fi
if [[ $end_time == "" ]]; then end_time="0"; fi
transcribe-video "$1" "$2" "medium"
transcribe-video "$1" "$2" $start_time $end_time "medium"

View File

@ -34,4 +34,4 @@ end_time="$4"
if [[ $start_time == "" ]]; then start_time="0"; fi
if [[ $end_time == "" ]]; then end_time="0"; fi
transcribe-video "$1" "$2" "small"
transcribe-video "$1" "$2" $start_time $end_time "small"