mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-17 08:35:08 -04:00
Implement Feature Request #25
This commit is contained in:
parent
8c6bf23ce4
commit
7e14479403
4 changed files with 44 additions and 36 deletions
|
@ -21,7 +21,9 @@ if not os.path.isdir(CACHE_DIR):
|
|||
|
||||
@click.group(invoke_without_command=True)
|
||||
@click.option("-c", "--convert", metavar="CODEC", help="alac, mp3, flac, or ogg")
|
||||
@click.option("-u", "--urls", metavar="URLS", help="Url from Qobuz, Tidal, SoundCloud, or Deezer")
|
||||
@click.option(
|
||||
"-u", "--urls", metavar="URLS", help="Url from Qobuz, Tidal, SoundCloud, or Deezer"
|
||||
)
|
||||
@click.option(
|
||||
"-q",
|
||||
"--quality",
|
||||
|
@ -113,7 +115,9 @@ def filter_discography(ctx, **kwargs):
|
|||
|
||||
@cli.command()
|
||||
@click.option("-t", "--type", default="album", help="album, playlist, track, or artist")
|
||||
@click.option("-s", "--source", default="qobuz", help="qobuz, tidal, soundcloud, or deezer")
|
||||
@click.option(
|
||||
"-s", "--source", default="qobuz", help="qobuz, tidal, soundcloud, or deezer"
|
||||
)
|
||||
@click.argument("QUERY", nargs=-1)
|
||||
@click.pass_context
|
||||
def search(ctx, **kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue