File size: 1,326 Bytes
7cc969b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132646e
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
import gradio as gr
from transformers import pipeline
from gtts import gTTS
from pydub import AudioSegment


#text to sppech function
def text_to_speech(text):
    # Convert text to speech with a US accent using gTTS
    tts = gTTS(text=text, lang='en', tld='us', slow=False)
    tts.save('temp.mp3')

    # Load the audio file
    audio = AudioSegment.from_file('temp.mp3')

    # Adjust the speed to approximately 170 wpm
    playback_speed = 1.20
    audio = audio.speedup(playback_speed=playback_speed)

    # Save and return the adjusted audio file
    final_filename = 'text_to_speech.mp3'
    audio.export(final_filename, format='mp3')

    return final_filename


def process_files():
    return (gr.update(interactive=True,
                      elem_id='summary_button'),
    gr.update(interactive = True, elem_id = 'summarization_method')
    )



def get_summarization_method(option):
    return option




def text_to_audio(text, model_name="facebook/fastspeech2-en-ljspeech"):
    # Initialize the TTS pipeline
    tts_pipeline = pipeline("text-to-speech", model=model_name)
    
    # Generate the audio from text
    audio = tts_pipeline(text)
    
    # Save the audio to a file
    audio_path = "output.wav"
    with open(audio_path, "wb") as file:
        file.write(audio["wav"])
    
    return audio_path