From 998d56d5b1966696636cc63e799010fa5c349416 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 12 Feb 2023 15:42:52 +0600 Subject: Chore: clean repo from unused files --- cut_by_vtt.sh | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 cut_by_vtt.sh (limited to 'cut_by_vtt.sh') diff --git a/cut_by_vtt.sh b/cut_by_vtt.sh deleted file mode 100755 index 4bbd13e..0000000 --- a/cut_by_vtt.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -set -e - -filepath=${1:-} -audioname=$(printf "$filepath" | sed "s/\(.*\).vtt/\1/") -filename=$(basename "$audioname") - -outdir=/mnt/desktop/media/datasets/nesfatelp_voice/utterances -# outdir=$(dirname "$filepath")/utterances -mkdir -p "$outdir" - - -# given vtt what is original ext? -ffmpeg_commands=$(grep "\-->" $filepath | awk -F " " \ - -v aname="$audioname" \ - -v bname="$filename" \ - -v outdir="$outdir" \ - '{print "ffmpeg -i "aname" -ss " $1 " -to " $3 \ - " -metadata text_source=" aname ".vtt" \ - " -ar 22050 " outdir "/" bname"_" $1"_"$3 ".wav"}') - -while read cline; -do - echo $cline && sleep 1; - eval $cline && sleep 1; -done <<< $ffmpeg_commands -- cgit v1.2.3