using ffmpeg directly instead of AAXtoMP3

This commit is contained in:
benton 2021-11-06 14:29:50 -05:00
parent c5c8750587
commit 98faaa4579
4 changed files with 29 additions and 68 deletions

View file

@ -39,8 +39,8 @@ def main(path):
else:
click.echo(f'Error: Files of type {path_type} are not supported.\n', err=True)
click.echo('Only the following file types are currently supported:', err=True)
click.echo(' * ACSM (Adobe)\n')
click.echo(' * AAX (Audible)\n')
click.echo(' * ACSM (Adobe)\n', err=True)
click.echo(' * AAX (Audible)\n', err=True)
click.echo('Please open a feature request at:', err=True)
click.echo(f' https://github.com/BentonEdmondson/knock/issues/new?title=Support%20{path_type}%20Files&labels=enhancement', err=True)
sys.exit(1)