import gradio as gr from transformers import pipeline, AutoTokenizer import numpy as np from pydub import AudioSegment # Load the pipeline for speech recognition and translation pipe = pipeline( "automatic-speech-recognition", model="Baghdad99/saad-speech-recognition-hausa-audio-to-text", tokenizer="Baghdad99/saad-speech-recognition-hausa-audio-to-text" ) translator = pipeline("text2text-generation", model="Baghdad99/saad-hausa-text-to-english-text") tts = pipeline("text-to-speech", model="Baghdad99/english_voice_tts") # Define the function to translate speech def translate_speech(audio_file): # Load the audio file with pydub audio = AudioSegment.from_mp3(audio_file.name) # Convert the audio to mono and get the raw data audio = audio.set_channels(1) audio_data = np.array(audio.get_array_of_samples()) # Use the speech recognition pipeline to transcribe the audio output = pipe(audio_data) print(f"Output: {output}") # Print the output to see what it contains # Check if the output contains 'text' if 'text' in output: transcription = output["text"] else: print("The output does not contain 'text'") return # Use the translation pipeline to translate the transcription translated_text = translator(transcription, return_tensors="pt") print(f"Translated text: {translated_text}") # Print the translated text to see what it contains # Check if the translated text contains 'generated_token_ids' if 'generated_token_ids' in translated_text[0]: # Decode the tokens into text translated_text_str = translator.tokenizer.decode(translated_text[0]['generated_token_ids']) else: print("The translated text does not contain 'generated_token_ids'") return # Use the text-to-speech pipeline to synthesize the translated text synthesised_speech = tts(translated_text_str) print(f"Synthesised speech: {synthesised_speech}") # Print the synthesised speech to see what it contains # Check if the synthesised speech contains 'audio' if 'audio' in synthesised_speech: synthesised_speech_data = synthesised_speech['audio'] else: print("The synthesised speech does not contain 'audio'") return # Scale the audio data to the range of int16 format synthesised_speech = (synthesised_speech_data * 32767).astype(np.int16) return 16000, synthesised_speech # Define the Gradio interface iface = gr.Interface( fn=translate_speech, inputs=gr.inputs.Audio(type="file"), # Change this line outputs=gr.outputs.Audio(type="numpy"), title="Hausa to English Translation", description="Realtime demo for Hausa to English translation using speech recognition and text-to-speech synthesis." ) iface.launch()