File size: 697 Bytes
89c2662
cdfaad6
 
baf83b9
 
cdfaad6
f6e9e76
5a55228
 
 
 
93d7fe9
 
 
 
5a55228
63365f5
5a55228
63365f5
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
from model import *

st.header("Any songs to Lo-Fi")
x = st.file_uploader("Upload your music")

if x is not None:
    wv, sr = librosa.load(x, sr=16000)  #Load waveform
    print(wv.shape)
    speca = prep(wv)                                                    #Waveform to Spectrogram
    
    # plt.figure(figsize=(50,1))                                          #Show Spectrogram
    # plt.imshow(np.flip(speca, axis=0), cmap=None)
    # plt.axis('off')
    # plt.show()
    
    abwv = towave(speca, name='FILENAME7', path='./songs_gen')           #Convert and save wav
    
    sample_rate = 44100  # 44100 samples per second
    st.audio(abwv, sample_rate=sample_rate)