WinWut commited on
Commit
93d7fe9
·
1 Parent(s): 2c7d90d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -9,10 +9,10 @@ if x is not None:
9
  print(wv.shape)
10
  speca = prep(wv) #Waveform to Spectrogram
11
 
12
- plt.figure(figsize=(50,1)) #Show Spectrogram
13
- plt.imshow(np.flip(speca, axis=0), cmap=None)
14
- plt.axis('off')
15
- plt.show()
16
 
17
  abwv = towave(speca, name='FILENAME4', path='songs_gen') #Convert and save wav
18
 
 
9
  print(wv.shape)
10
  speca = prep(wv) #Waveform to Spectrogram
11
 
12
+ # plt.figure(figsize=(50,1)) #Show Spectrogram
13
+ # plt.imshow(np.flip(speca, axis=0), cmap=None)
14
+ # plt.axis('off')
15
+ # plt.show()
16
 
17
  abwv = towave(speca, name='FILENAME4', path='songs_gen') #Convert and save wav
18