theOnlyJaco commited on
Commit
1a25f7e
·
unverified ·
1 Parent(s): 971e667

Override container for demo

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -104,9 +104,10 @@ class ClapSSGradio():
104
 
105
  def _download_results(self, containers: list, filenames: list):
106
 
 
 
107
  # construct url
108
- urls = [f"https://{self.storage_name}.blob.core.windows.net/{container}/{file_name}.flac?{self.sas_token}" for container,
109
- file_name in zip(containers, filenames)]
110
 
111
  # make requests
112
  waveforms = []
 
104
 
105
  def _download_results(self, containers: list, filenames: list):
106
 
107
+
108
+
109
  # construct url
110
+ urls = [f"https://{self.storage_name}.blob.core.windows.net/snake/{file_name}.flac?{self.sas_token}" for file_name in filenames]
 
111
 
112
  # make requests
113
  waveforms = []