Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cli
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
funkwhale
cli
Commits
298f7144
Verified
Commit
298f7144
authored
6 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
More documentation
parent
9f9494dc
No related branches found
No related tags found
No related merge requests found
Pipeline
#4201
passed
6 years ago
Stage: test
Stage: build
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+41
-1
41 additions, 1 deletion
README.md
with
41 additions
and
1 deletion
README.md
+
41
−
1
View file @
298f7144
...
...
@@ -19,7 +19,47 @@ curl -L "https://dev.funkwhale.audio/funkwhale/cli/-/jobs/artifacts/master/raw/f
# Usage
``funkwhale --help``
```
bash
# get help
funkwhale
--help
# get help on a specific command
funkwhale tracks
ls
--help
# get login
funkwhale
-H
https://demo.funkwhale.audio login
# credentials are demo and demo on this server
# Store the server URL to avoid specifying it on the CLI
echo
"FUNKWHALE_SERVER_URL=https://demo.funkwhale.audio"
>>
.env
# Create a library
funkwhale libraries create
--visibility
=
me
# Upload some content to the server
funkwhale uploads create <library_id> ~/Music/
**
/
*
.mp3
# Search some tracks
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 a track and pipe the output directly to VLC
funkwhale tracks download <track_id> | vlc
# Delete your library
funkwhale libraries
rm
<library_id>
# Logout
funkwhale
logout
```
# Installation (from source)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment