Skip to content
Snippets Groups Projects
Verified Commit a8976e5f authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Added favorites download example

parent 1922618f
Branches
No related tags found
No related merge requests found
......@@ -44,13 +44,15 @@ funkwhale tracks ls jekk
# Download a track to the ~/Music directory
funkwhale tracks download -d ~/Music <track_id>
# Download a track and customize the target directory
funkwhale tracks download -d ~/Music -t "{artist}/{album} ({year})/{title}.{extension}" <track_id>
# Download all tracks matching a search, in ogg format
funkwhale tracks ls jekk --ids --limit 0 | xargs funkwhale tracks download -f ogg -d ~/Music
# Download all favorited tracks
funkwhale tracks ls --filter "favorites=true" --ids --limit 0 | xargs funkwhale tracks download -d ~/Music
# Download a track and pipe the output directly to VLC
funkwhale tracks download <track_id> | cvlc -
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment