saeki commited on
Commit
a812b2a
·
1 Parent(s): 6c19d06
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -108,9 +108,6 @@ def transfer(audio):
108
  if __name__ == "__main__":
109
  subprocess.run(["curl", "-OL", "https://sarulab.sakura.ne.jp/saeki/selfremaster/pretrained/tono_aet_melspec.ckpt"])
110
  download_file_from_google_drive("10OJ2iznutxzp8MEIS6lBVaIS_g5c_70V", "hifigan/hifigan_melspec_universal")
111
- subprocess.run(["ls", "-a"])
112
- subprocess.run(["ls", "-a", "aet_sample"])
113
- subprocess.run(["ls", "-a", "hifigan"])
114
 
115
  iface = gr.Interface(
116
  transfer,
@@ -120,7 +117,7 @@ if __name__ == "__main__":
120
  ["aet_sample/tar.wav"]
121
  ],
122
  title='Audio effect transfer with SelfRemaster',
123
- description='Extracting the channel feature of a historical audio recording with a pretrained SelfRemaster and adding it to any high-quality audio'
124
  )
125
 
126
  iface.launch()
 
108
  if __name__ == "__main__":
109
  subprocess.run(["curl", "-OL", "https://sarulab.sakura.ne.jp/saeki/selfremaster/pretrained/tono_aet_melspec.ckpt"])
110
  download_file_from_google_drive("10OJ2iznutxzp8MEIS6lBVaIS_g5c_70V", "hifigan/hifigan_melspec_universal")
 
 
 
111
 
112
  iface = gr.Interface(
113
  transfer,
 
117
  ["aet_sample/tar.wav"]
118
  ],
119
  title='Audio effect transfer with SelfRemaster',
120
+ description='Extracting the channel feature of a historical audio recording with a pretrained SelfRemaster and adding it to any high-quality audio. (Source audio is aet_sample/src.wav)'
121
  )
122
 
123
  iface.launch()