__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/env python3
#pip3 install vosk
#pip3 install srt
from vosk import Model, KaldiRecognizer, SetLogLevel
import sys
import os
import wave
import subprocess
import codecs
import datetime
SetLogLevel(-1)
os.chdir(sys.argv[1])
if not os.path.exists(sys.argv[2]):
print ("Please download the model from https://alphacephei.com/vosk/models and unpack as ",sys.argv[2]," in the current folder.")
exit (1)
if sys.platform == 'darwin':
from os.path import abspath, dirname, join
path = abspath(join(dirname(__file__), '../../MacOS/ffmpeg'))
else:
path = 'ffmpeg'
sample_rate=16000
model = Model(sys.argv[2])
rec = KaldiRecognizer(model, sample_rate)
rec.SetWords(True)
# zone rendering
if len(sys.argv) > 4 and (float(sys.argv[4])>0 or float(sys.argv[5])>0):
process = subprocess.Popen([path, '-loglevel', 'quiet', '-i',
sys.argv[3], '-ss', sys.argv[4], '-t', sys.argv[5],
'-ar', str(sample_rate) , '-ac', '1', '-f', 's16le', '-'],
stdout=subprocess.PIPE)
else:
process = subprocess.Popen([path, '-loglevel', 'quiet', '-i',
sys.argv[3],
'-ar', str(sample_rate) , '-ac', '1', '-f', 's16le', '-'],
stdout=subprocess.PIPE)
WORDS_PER_LINE = 7
def transcribe():
while True:
data = process.stdout.read(4000)
if len(data) == 0:
sys.stdout.buffer.write(rec.FinalResult().encode('utf-8'))
sys.stdout.flush()
break
if rec.AcceptWaveform(data):
sys.stdout.buffer.write(rec.Result().encode('utf-8'))
sys.stdout.flush()
transcribe()
#with open(sys.argv[3], 'w') as f:
# f.writelines(subtitle)
#f.close()
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| checkgpu.py | File | 386 B | 0644 |
|
| checkpackages.py | File | 1.85 KB | 0644 |
|
| otiointerface.py | File | 1.13 KB | 0644 |
|
| speech.py | File | 1.98 KB | 0644 |
|
| speechtotext.py | File | 1.74 KB | 0644 |
|
| whispertosrt.py | File | 1.52 KB | 0644 |
|
| whispertotext.py | File | 2.93 KB | 0644 |
|