diff --git a/dotfiles/bin/transcribe-video-base b/dotfiles/bin/transcribe-video-base index 0e25678..1d44fcc 100644 --- a/dotfiles/bin/transcribe-video-base +++ b/dotfiles/bin/transcribe-video-base @@ -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" diff --git a/dotfiles/bin/transcribe-video-medium b/dotfiles/bin/transcribe-video-medium index cdc831a..08254fc 100644 --- a/dotfiles/bin/transcribe-video-medium +++ b/dotfiles/bin/transcribe-video-medium @@ -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" diff --git a/dotfiles/bin/transcribe-video-small b/dotfiles/bin/transcribe-video-small index 75dee38..88449e4 100644 --- a/dotfiles/bin/transcribe-video-small +++ b/dotfiles/bin/transcribe-video-small @@ -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"