Skip to content

Commit

Permalink
Merge pull request #425 from jhj0517/fix/progress-msg
Browse files Browse the repository at this point in the history
Update progress message
  • Loading branch information
jhj0517 authored Dec 15, 2024
2 parents 95d4f9a + cad9e14 commit ca1f04d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/uvr/music_separator.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ def separate(self,
)
self.model.sample_rate = sample_rate

progress(0, desc="Separating background music from the audio..")
progress(0, desc="Separating background music from the audio.. "
"(It will only display 0% until the job is complete.) ")
result = self.model(audio)
instrumental, vocals = result["instrumental"].T, result["vocals"].T

Expand Down

0 comments on commit ca1f04d

Please sign in to comment.