File size: 835 Bytes
e6dfae0
435c886
 
 
 
e6dfae0
435c886
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e6dfae0
 
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
import gradio as gr
import numpy as np
import matplotlib.pyplot as plt
import librosa
import librosa.display

def plot_stft(audio_file):
    # Load audio file
    y, sr = librosa.load(audio_file)
    
    # Compute the Short-Time Fourier Transform (STFT)
    D = librosa.stft(y)
    S_db = librosa.amplitude_to_db(np.abs(D), ref=np.max)
    
    # Plot the STFT
    plt.figure(figsize=(10, 6))
    librosa.display.specshow(S_db, sr=sr, x_axis='time', y_axis='log')
    plt.colorbar(format='%+2.0f dB')
    plt.title('STFT (Short-Time Fourier Transform)')
    
    # Save the plot as an image
    plt.savefig('stft_plot.png')
    plt.close()
    
    return 'stft_plot.png'

# Gradio interface
demo = gr.Interface(fn=plot_stft, 
                    inputs=gr.Audio(type="filepath"), 
                    outputs="image")

demo.launch()