From a8976e5f4ef86a8f21f4971cd054252da007ac6b Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 9 Jul 2019 18:54:46 +0200 Subject: [PATCH] Added favorites download example --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7cd89c8..e7a9723 100644 --- a/README.md +++ b/README.md @@ -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 - -- GitLab