This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Whisper ASR Webservice | File Proccessing Script | 2023/09/23 | v2.8" | |
echo "Author: Austin St. Aubin w/ a little help from ChatGPT." | |
echo "License: MIT License" | |
# This is a bash script that transcribes an audio file using a web service and outputs the transcript in various formats. | |
# The audio file is located at the SOURCE_PATH and the transcripts will be saved to the same directory with transcriptions as specified in TRANSCRIPT_EXTENSIONS. | |
# https://github.com/ahmetoner/whisper-asr-webservice/issues/93 | |
# https://gist.github.com/AustinSaintAubin/a50b29ce52de5501a6dd05bf5d24cd44 | |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
# bash /volume1/docker/whisper-asr-webservice/whisper-asr-webservice_file-processor.sh "/volume1/docker/whisper-asr-webservice/audio" --output "txt,tsv,srt,vtt,json" --gpu --reprocess |