|
import gradio as gr |
|
import requests |
|
import uuid |
|
import os |
|
from typing import Optional |
|
import tempfile |
|
from pydub import AudioSegment |
|
import re |
|
import subprocess |
|
import numpy as np |
|
import soundfile as sf |
|
import sox |
|
from moviepy.editor import VideoFileClip |
|
|
|
ASR_API = "http://astarwiz.com:9998/asr" |
|
TTS_SPEAK_SERVICE = 'http://astarwiz.com:9603/speak' |
|
TTS_WAVE_SERVICE = 'http://astarwiz.com:9603/wave' |
|
|
|
LANGUAGE_MAP = { |
|
"en": "English", |
|
"ma": "Malay", |
|
"ta": "Tamil", |
|
"zh": "Chinese" |
|
} |
|
|
|
|
|
DEVELOPER_PASSWORD = os.getenv("DEV_PWD") |
|
|
|
|
|
|
|
RAPID_API_KEY = os.getenv("RAPID_API_KEY") |
|
|
|
|
|
AVAILABLE_SPEAKERS = { |
|
"en": ["MS"], |
|
"ma": ["ChildMs_100049"], |
|
"ta": ["ta_female1"], |
|
"zh": ["childChinese2"] |
|
} |
|
def replace_audio_in_video(video_path, audio_path, output_path): |
|
command = [ |
|
'ffmpeg', |
|
'-i', video_path, |
|
'-i', audio_path, |
|
'-c:v', 'copy', |
|
'-map', '0:v:0', |
|
'-map', '1:a:0', |
|
'-shortest', |
|
output_path |
|
] |
|
subprocess.run(command, check=True) |
|
return output_path |
|
|
|
def replace_audio_and_generate_video(temp_video_path, gradio_audio): |
|
if not temp_video_path or gradio_audio is None: |
|
return "Both video and audio are required to replace audio.", None |
|
|
|
if not os.path.exists(temp_video_path): |
|
return "Video file not found.", None |
|
|
|
|
|
sample_rate, audio_data = gradio_audio |
|
|
|
|
|
if not isinstance(audio_data, np.ndarray): |
|
audio_data = np.array(audio_data) |
|
|
|
|
|
with tempfile.NamedTemporaryFile(suffix='.wav', delete=False) as temp_audio_file: |
|
original_audio_path = temp_audio_file.name |
|
sf.write(original_audio_path, audio_data, sample_rate) |
|
|
|
|
|
video_clip = VideoFileClip(temp_video_path) |
|
video_duration = video_clip.duration |
|
video_clip.close() |
|
|
|
|
|
audio_duration = len(audio_data) / sample_rate |
|
|
|
|
|
tempo_factor = audio_duration / video_duration |
|
|
|
|
|
with tempfile.NamedTemporaryFile(suffix='.wav', delete=False) as temp_audio_file: |
|
adjusted_audio_path = temp_audio_file.name |
|
|
|
|
|
tfm = sox.Transformer() |
|
tfm.tempo(tempo_factor, 's') |
|
tfm.build(original_audio_path, adjusted_audio_path) |
|
|
|
|
|
output_video_path = os.path.join(tempfile.gettempdir(), f"output_{uuid.uuid4()}.mp4") |
|
|
|
try: |
|
replace_audio_in_video(temp_video_path, adjusted_audio_path, output_video_path) |
|
return "Audio replaced successfully.", output_video_path |
|
except subprocess.CalledProcessError as e: |
|
return f"Error replacing audio: {str(e)}", None |
|
finally: |
|
os.unlink(original_audio_path) |
|
os.unlink(adjusted_audio_path) |
|
|
|
|
|
|
|
def fetch_youtube_id(youtube_url: str) -> str: |
|
if 'v=' in youtube_url: |
|
return youtube_url.split("v=")[1].split("&")[0] |
|
elif 'youtu.be/' in youtube_url: |
|
return youtube_url.split("youtu.be/")[1] |
|
elif 'shorts' in youtube_url: |
|
return youtube_url.split("/")[-1] |
|
else: |
|
raise Exception("Unsupported URL format") |
|
|
|
def download_youtube_audio(youtube_url: str, output_dir: Optional[str] = None) -> Optional[tuple[str, str]]: |
|
video_id = fetch_youtube_id(youtube_url) |
|
|
|
if not video_id: |
|
return None |
|
|
|
if output_dir is None: |
|
output_dir = tempfile.gettempdir() |
|
|
|
output_filename = os.path.join(output_dir, f"{video_id}.mp3") |
|
temp_filename = os.path.join(output_dir, f"{video_id}.mp4") |
|
if os.path.exists(output_filename) and os.path.exists(temp_filename): |
|
return (output_filename, temp_filename) |
|
|
|
url = "https://youtube86.p.rapidapi.com/api/youtube/links" |
|
headers = { |
|
'Content-Type': 'application/json', |
|
'x-rapidapi-host': 'youtube86.p.rapidapi.com', |
|
'x-rapidapi-key': RAPID_API_KEY |
|
} |
|
data = { |
|
"url": youtube_url |
|
} |
|
|
|
response = requests.post(url, headers=headers, json=data) |
|
print('Fetched audio links') |
|
|
|
if response.status_code == 200: |
|
result = response.json() |
|
for url in result[0]['urls']: |
|
if url.get('isBundle'): |
|
audio_url = url['url'] |
|
extension = url['extension'] |
|
audio_response = requests.get(audio_url) |
|
|
|
if audio_response.status_code == 200: |
|
temp_filename = os.path.join(output_dir, f"{video_id}.{extension}") |
|
with open(temp_filename, 'wb') as audio_file: |
|
audio_file.write(audio_response.content) |
|
|
|
|
|
audio = AudioSegment.from_file(temp_filename, format=extension) |
|
audio = audio.set_frame_rate(16000) |
|
audio.export(output_filename, format="mp3", parameters=["-ar", "16000"]) |
|
print ("audio video", output_filename,temp_filename) |
|
|
|
return (output_filename, temp_filename) |
|
|
|
return None |
|
else: |
|
print("Error:", response.status_code, response.text) |
|
return None |
|
|
|
|
|
punctuation_marks = r'([\.!?!?。])' |
|
""" |
|
def split_text_with_punctuation(text): |
|
# Split the text using the punctuation marks, keeping the punctuation marks |
|
split_text = re.split(punctuation_marks, text) |
|
# Combine each punctuation mark with the preceding segment |
|
combined_segments = [] |
|
for i in range(0, len(split_text) - 1, 2): |
|
combined_segments.append(split_text[i] + split_text[i + 1]) |
|
# If there's any remaining text after the last punctuation, append it as well |
|
if len(split_text) % 2 != 0 and split_text[-1]: |
|
combined_segments.append(split_text[-1]) |
|
|
|
return combined_segments |
|
""" |
|
def split_text_with_punctuation(text): |
|
|
|
split_text = re.split(punctuation_marks, text) |
|
|
|
combined_segments = [] |
|
|
|
|
|
for i in range(0, len(split_text) - 1, 2): |
|
combined_segments.append(split_text[i] + split_text[i + 1]) |
|
|
|
|
|
if len(split_text) % 2 != 0 and split_text[-1]: |
|
combined_segments.append(split_text[-1]) |
|
|
|
|
|
final_segments = [] |
|
for segment in combined_segments: |
|
words = segment.split() |
|
if len(words) > 50: |
|
|
|
for j in range(0, len(words), 50): |
|
final_segments.append(' '.join(words[j:j+50])) |
|
else: |
|
final_segments.append(segment) |
|
|
|
return [segment for segment in final_segments if segment] |
|
|
|
def inference_via_llm_api(input_text, min_new_tokens=2, max_new_tokens=64): |
|
print(input_text) |
|
one_vllm_input = f"<|im_start|>system\nYou are a translation expert.<|im_end|>\n<|im_start|>user\n{input_text}<|im_end|>\n<|im_start|>assistant" |
|
vllm_api = 'http://astarwiz.com:2333/' + "v1/completions" |
|
data = { |
|
"prompt": one_vllm_input, |
|
'model': "./Edu-4B-NewTok-V2-20240904/", |
|
'min_tokens': min_new_tokens, |
|
'max_tokens': max_new_tokens, |
|
'temperature': 0.1, |
|
'top_p': 0.75, |
|
'repetition_penalty': 1.1, |
|
"stop_token_ids": [151645, ], |
|
} |
|
response = requests.post(vllm_api, headers={"Content-Type": "application/json"}, json=data).json() |
|
print(response) |
|
if "choices" in response.keys(): |
|
return response["choices"][0]['text'].strip() |
|
else: |
|
return "The system got some error during vLLM generation. Please try it again." |
|
|
|
def transcribe_and_speak(audio, source_lang, target_lang, youtube_url=None, target_speaker=None): |
|
video_path =None |
|
if youtube_url: |
|
audio = download_youtube_audio(youtube_url) |
|
if audio is None: |
|
return "Failed to download YouTube audio.", None, None, video_path |
|
audio, video_path =audio |
|
if not audio: |
|
return "Please provide an audio input or a valid YouTube URL.", None, None, video_path |
|
|
|
|
|
file_id = str(uuid.uuid4()) |
|
files = {'file': open(audio, 'rb')} |
|
data = { |
|
'language': 'ms' if source_lang == 'ma' else source_lang, |
|
'model_name': 'whisper-large-v2-local-cs', |
|
'with_timestamp': False |
|
} |
|
|
|
asr_response = requests.post(ASR_API, files=files, data=data) |
|
print(asr_response.json()) |
|
if asr_response.status_code == 200: |
|
transcription = asr_response.json()['text'] |
|
else: |
|
return "ASR failed", None, None, video_path |
|
|
|
|
|
split_result = split_text_with_punctuation(transcription) |
|
translate_segments=[] |
|
for segment in split_result: |
|
translation_prompt = f"Translate the following text from {LANGUAGE_MAP[source_lang]} to {LANGUAGE_MAP[target_lang]}: {segment}" |
|
translated_seg_txt = inference_via_llm_api(translation_prompt) |
|
translate_segments.append(translated_seg_txt) |
|
print(f"Translation: {translated_seg_txt}") |
|
translated_text = " ".join(translate_segments) |
|
|
|
tts_params = { |
|
'language': target_lang, |
|
'speed': 1.1, |
|
'speaker': target_speaker or AVAILABLE_SPEAKERS[target_lang][0], |
|
'text': translated_text |
|
} |
|
|
|
tts_response = requests.get(TTS_SPEAK_SERVICE, params=tts_params) |
|
if tts_response.status_code == 200: |
|
audio_file = tts_response.text.strip() |
|
audio_url = f"{TTS_WAVE_SERVICE}?file={audio_file}" |
|
return transcription, translated_text, audio_url,video_path |
|
else: |
|
return transcription, translated_text, "TTS failed",video_path |
|
|
|
def check_password(password): |
|
return password == DEVELOPER_PASSWORD |
|
|
|
def run_speech_translation(audio, source_lang, target_lang, youtube_url, target_speaker): |
|
temp_video_path =None; |
|
transcription, translated_text, audio_url,temp_video_path = transcribe_and_speak(audio, source_lang, target_lang, youtube_url, target_speaker) |
|
|
|
return transcription, translated_text, audio_url,temp_video_path |
|
|
|
with gr.Blocks() as demo: |
|
gr.Markdown("# Speech Translation") |
|
|
|
|
|
gr.Markdown("Speak into the microphone, upload an audio file, or provide a YouTube URL. The app will translate and speak it back to you.") |
|
|
|
with gr.Row(): |
|
user_audio_input = gr.Audio(sources=["microphone", "upload"], type="filepath") |
|
user_youtube_url = gr.Textbox(label="YouTube URL (optional)") |
|
|
|
with gr.Row(): |
|
user_source_lang = gr.Dropdown(choices=["en", "ma", "ta", "zh"], label="Source Language", value="en") |
|
user_target_lang = gr.Dropdown(choices=["en", "ma", "ta", "zh"], label="Target Language", value="zh") |
|
user_target_speaker = gr.Dropdown(choices=AVAILABLE_SPEAKERS['zh'], label="Target Speaker", value="childChinese2") |
|
|
|
with gr.Row(): |
|
user_button = gr.Button("Translate and Speak", interactive=False) |
|
|
|
|
|
with gr.Row(): |
|
user_transcription_output = gr.Textbox(label="Transcription") |
|
user_translation_output = gr.Textbox(label="Translation") |
|
user_audio_output = gr.Audio(label="Translated Speech") |
|
|
|
user_video_output = gr.HTML(label="YouTube Video") |
|
|
|
def update_button_state(audio, youtube_url): |
|
print(audio, youtube_url) |
|
return gr.Button(interactive=bool(audio) or bool(youtube_url)) |
|
|
|
user_audio_input.change( |
|
fn=update_button_state, |
|
inputs=[user_audio_input, user_youtube_url], |
|
outputs=user_button |
|
) |
|
user_youtube_url.change( |
|
fn=update_button_state, |
|
inputs=[user_audio_input, user_youtube_url], |
|
outputs=user_button |
|
) |
|
|
|
|
|
replace_audio_button = gr.Button("Replace Audio", interactive=False) |
|
final_video_output = gr.Video(label="Video with Replaced Audio") |
|
|
|
|
|
temp_video_path = gr.State() |
|
|
|
user_button.click( |
|
fn=run_speech_translation, |
|
inputs=[user_audio_input, user_source_lang, user_target_lang, user_youtube_url, user_target_speaker], |
|
outputs=[user_transcription_output, user_translation_output, user_audio_output,temp_video_path] |
|
) |
|
|
|
|
|
|
|
def update_replace_audio_button(audio_url, video_path): |
|
print ("update replace:", audio_url, video_path) |
|
return gr.Button(interactive=bool(audio_url) and bool(video_path)) |
|
|
|
user_audio_output.change( |
|
fn=update_replace_audio_button, |
|
inputs=[user_audio_output, temp_video_path], |
|
outputs=[replace_audio_button] |
|
) |
|
|
|
|
|
replace_audio_button.click( |
|
fn=replace_audio_and_generate_video, |
|
inputs=[temp_video_path, user_audio_output], |
|
outputs=[gr.Textbox(label="Status"), final_video_output] |
|
) |
|
|
|
def update_video_embed(youtube_url): |
|
if youtube_url: |
|
try: |
|
video_id = fetch_youtube_id(youtube_url) |
|
return f'<iframe width="560" height="315" src="https://www.youtube.com/embed/{video_id}" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>' |
|
except Exception as e: |
|
print(f"Error embedding video: {e}") |
|
return "" |
|
|
|
user_youtube_url.change( |
|
fn=update_video_embed, |
|
inputs=[user_youtube_url], |
|
outputs=[user_video_output] |
|
) |
|
|
|
def update_target_speakers(target_lang): |
|
return gr.Dropdown(choices=AVAILABLE_SPEAKERS[target_lang], value=AVAILABLE_SPEAKERS[target_lang][0]) |
|
|
|
user_target_lang.change( |
|
fn=update_target_speakers, |
|
inputs=[user_target_lang], |
|
outputs=[user_target_speaker] |
|
) |
|
|
|
demo.launch(auth=(os.getenv("DEV_USER"), os.getenv("DEV_PWD"))) |
|
|