marquesafonso commited on
Commit
5190828
·
verified ·
1 Parent(s): c679ed5

debug color format

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -18,6 +18,8 @@ def extract_waveform_animation(audio_file, window_seconds=5, waveform_color="blu
18
  first_window = y[:window_length]
19
  x_vals = np.linspace(0, duration, num=len(y))
20
  ax.set_axis_off()
 
 
21
  ax.set_facecolor(waveform_color)
22
  fig.set_facecolor(bg_color)
23
 
 
18
  first_window = y[:window_length]
19
  x_vals = np.linspace(0, duration, num=len(y))
20
  ax.set_axis_off()
21
+ print(waveform_color)
22
+ print(bg_color)
23
  ax.set_facecolor(waveform_color)
24
  fig.set_facecolor(bg_color)
25