diff --git a/AcapellaDownloader/CLI.cs b/AcapellaDownloader/CLI.cs index 1b03880..20faf8e 100644 --- a/AcapellaDownloader/CLI.cs +++ b/AcapellaDownloader/CLI.cs @@ -101,7 +101,7 @@ public static void PassCLI(string[] commandLineArgs) } if (text.Length == 0) { - Console.WriteLine("No text specified. Args -t (text) -o (output file) -v (voice code) --voice-list (get all voice codes)"); + Console.WriteLine("No text specified. Args -t (text) -o (output file) -v (voice code) --voice-list (get all voice id's)"); return; } @@ -114,7 +114,7 @@ public static void PassCLI(string[] commandLineArgs) { if (Voices.VoiceList.FirstOrDefault(n => n.VoiceId == voice) == null) { - Console.WriteLine("Voice code is not valid. Try to launch with --voice-list to get all voices"); + Console.WriteLine("Voice id is not valid. Try to launch with --voice-list to get all voices"); } } string dlLink = Utils.GetSoundLink(text, voice); diff --git a/AcapellaDownloader/Form1.cs b/AcapellaDownloader/Form1.cs index 505c8cf..529e493 100644 --- a/AcapellaDownloader/Form1.cs +++ b/AcapellaDownloader/Form1.cs @@ -156,11 +156,11 @@ private void tbPitch_Scroll(object sender, EventArgs e) { if (tbPitch.Value > 11) { - Pitch =((tbPitch.Value - 1) / 10f); + Pitch =( (tbPitch.Value - 1) / 10f); } else if (tbPitch.Value < 11) { - Pitch = (((tbPitch.Value - 1) / 10f * 0.5f) + 0.5f); + Pitch = ( ((tbPitch.Value - 1) / 10f * 0.5f) + 0.5f); } else { diff --git a/README.md b/README.md index 7a237ec..b9b4f0b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,6 @@ GUI App for downloading TTS from Acapella Group ![Screenshot](https://yiff.nullcoreproject.net/i/45006d99.png) ## How to use CLI version Launch WillFromAfarDownloader.exe use -t (text) -v (voice code) -o (output file) arguments -Use --voice-list argument to get all voice codes +Use --voice-list argument to get all voice id's #### Example: AcapellaDownloader.exe -t Test string 1 2 3 -v enu_willhappy_22k_ns.bvcu -o test.mp3