nakas commited on
Commit
c2f1749
Β·
1 Parent(s): c1c4316

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ from audio_style_transfer.models import timedomain
3
 
4
  def audioStyleTransfer(content,style):
5
  print (style,content)
6
- output = ""
7
  timedomain.run( style_fname=style, content_fname=content ,output_fname=output, n_fft=4096,
8
  n_filters=4096,
9
  hop_length=512,
 
3
 
4
  def audioStyleTransfer(content,style):
5
  print (style,content)
6
+ output = "/tmp/outputfile.wav"
7
  timedomain.run( style_fname=style, content_fname=content ,output_fname=output, n_fft=4096,
8
  n_filters=4096,
9
  hop_length=512,