Spaces:
Runtime error
Runtime error
File size: 5,181 Bytes
8106a70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# !pip install youtube-dl
from __future__ import unicode_literals
import youtube_dl
from pydub import AudioSegment
from pyannote.audio import Pipeline
import re
import webvtt
import whisper
import os
from pydub.utils import which
import ffmpeg
import webvtt
import pprint
from urllib.error import HTTPError
import subprocess
import gradio as gr
pipeline = Pipeline.from_pretrained("pyannote/speaker-diarization", use_auth_token="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")
def Transcribe(audio="temp_audio.wav"):
def millisec(timeStr):
spl = timeStr.split(":")
s = (int)((int(spl[0]) * 60 * 60 + int(spl[1]) * 60 + float(spl[2]) )* 1000)
return s
def preprocess(audio):
t1 = 0 * 1000
t2 = 20 * 60 * 1000
newAudio = AudioSegment.from_wav(audio)
a = newAudio[t1:t2]
spacermilli = 2000
spacer = AudioSegment.silent(duration=spacermilli)
newAudio = spacer.append(a, crossfade=0)
newAudio.export(audio, format="wav")
return spacermilli, spacer
def diarization(audio):
as_audio = AudioSegment.from_wav(audio)
DEMO_FILE = {'uri': 'blabal', 'audio': audio}
dz = pipeline(DEMO_FILE)
with open(f"diarization_{audio}.txt", "w") as text_file:
text_file.write(str(dz))
dz = open(f"diarization_{audio}.txt").read().splitlines()
dzList = []
for l in dz:
start, end = tuple(re.findall('[0-9]+:[0-9]+:[0-9]+\.[0-9]+', string=l))
start = millisec(start)
end = millisec(end)
lex = re.findall('(SPEAKER_[0-9][0-9])', string=l)[0]
dzList.append([start, end, lex])
sounds = spacer
segments = []
dz = open(f"diarization_{audio}.txt").read().splitlines()
for l in dz:
start, end = tuple(re.findall('[0-9]+:[0-9]+:[0-9]+\.[0-9]+', string=l))
start = millisec(start)
end = millisec(end)
segments.append(len(sounds))
sounds = sounds.append(as_audio[start:end], crossfade=0)
sounds = sounds.append(spacer, crossfade=0)
sounds.export(f"dz_{audio}.wav", format="wav")
return f"dz_{audio}.wav", dzList, segments
def transcribe(dz_audio):
model = whisper.load_model("base")
result = model.transcribe(dz_audio)
# for _ in result['segments']:
# print(_['start'], _['end'], _['text'])
captions = [[((caption["start"]*1000)), ((caption["end"]*1000)), caption["text"]] for caption in result['segments']]
conversation = []
for i in range(len(segments)):
idx = 0
for idx in range(len(captions)):
if captions[idx][0] >= (segments[i] - spacermilli):
break;
while (idx < (len(captions))) and ((i == len(segments) - 1) or (captions[idx][1] < segments[i+1])):
c = captions[idx]
start = dzList[i][0] + (c[0] -segments[i])
if start < 0:
start = 0
idx += 1
if not len(conversation):
conversation.append([dzList[i][2], c[2]])
elif conversation[-1][0] == dzList[i][2]:
conversation[-1][1] += c[2]
else:
conversation.append([dzList[i][2], c[2]])
#print(f"[{dzList[i][2]}] {c[2]}")
return ("".join([f"{speaker} --> {text}\n" for speaker, text in conversation]))
spacermilli, spacer = preprocess(audio)
dz_audio, dzList, segments = diarization(audio)
t_text = transcribe(dz_audio)
try:
os.remove("temp_audio.wav")
except OSError:
pass
try:
os.remove("dz_temp_audio.wav")
except OSError:
pass
try:
os.remove(f"diarization_{audio}.txt")
except OSError:
pass
return t_text
def VideoTranscribe(video):
command = f"ffmpeg -i {video} -ab 160k -ac 2 -ar 44100 -vn temp_audio.wav"
subprocess.call(command, shell=True)
return Transcribe()
def YoutubeTranscribe(url):
try:
os.remove("temp_audio.wav")
except OSError:
pass
ydl_opts = {
'format': 'bestaudio/best',
'outtmpl': 'temp_audio.%(ext)s',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav',
}],
}
try:
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([url])
except:
return YoutubeTranscribe(url)
stream = ffmpeg.input('temp_audio.m4a')
stream = ffmpeg.output(stream, 'temp_audio.wav')
try:
os.remove("temp_audio.m4a")
except OSError:
pass
return Transcribe()
with gr.Blocks() as i:
video = gr.Video()
text = gr.Textbox("Input")
if not video and not text:
raise Exception("Either input url or video (not both)")
output = gr.Textbox("Output")
btn = gr.Button("Run")
btn.click(fn=YoutubeTranscribe, inputs=text, outputs=output)
i.launch()
# YoutubeTranscribe('https://www.youtube.com/watch?v=GECcjrYHH8w') |