Allow loading from file
This commit is contained in:
12
melo/main.py
12
melo/main.py
@@ -1,14 +1,24 @@
|
||||
import click
|
||||
import warnings
|
||||
import os
|
||||
|
||||
@click.command
|
||||
@click.argument('text')
|
||||
@click.argument('output_path')
|
||||
@click.option("--file", '-f', is_flag=True, show_default=True, default=False, help="Text is a file")
|
||||
@click.option('--language', '-l', default='EN', help='Language, defaults to English', type=click.Choice(['EN', 'ES', 'FR', 'ZH', 'JP', 'KR'], case_sensitive=False))
|
||||
@click.option('--speaker', '-spk', default='EN-Default', help='Speaker ID, only for English, leave empty for default, ignored if not English. If English, defaults to "EN-Default"', type=click.Choice(['EN-Default', 'EN-US', 'EN-BR', 'EN-INDIA', 'EN-AU']))
|
||||
@click.option('--speed', '-s', default=1.0, help='Speed, defaults to 1.0', type=float)
|
||||
@click.option('--device', '-d', default='auto', help='Device, defaults to auto')
|
||||
def main(text, output_path, language, speaker, speed, device):
|
||||
def main(text, file, output_path, language, speaker, speed, device):
|
||||
if file:
|
||||
if not os.path.exists(text):
|
||||
raise FileNotFoundError(f'Trying to load text from file due to --file/-f flag, but file not found. Remove the --file/-f flag to pass a string.')
|
||||
else:
|
||||
with open(text) as f:
|
||||
text = f.read().strip()
|
||||
if text == '':
|
||||
raise ValueError('You entered empty text or the file you passed was empty.')
|
||||
language = language.upper()
|
||||
if language == '': language = 'EN'
|
||||
if speaker == '': speaker = None
|
||||
|
||||
Reference in New Issue
Block a user