-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
789e28d
commit 0853680
Showing
1 changed file
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
# Shokz | ||
# Shokz OpenSwim downloader | ||
[](https://www.nuget.org/packages/Shokz) | ||
|
||
Tool to download Podcasts from RSS feed to Shokz OpenSwim headphones. | ||
It does the transmission of the files in a specific order as it is an important criterion for playback sequence on [OpenSwim](https://intl.help.shokz.com/s/article/How-to-list-the-track-order-on-OpenSwim-formerly-Xtrainerz-17). | ||
|
||
# Installation | ||
Install .Net tool: | ||
``` | ||
dotnet tool install --global Shokz | ||
``` | ||
|
||
Verify the installation: | ||
``` | ||
shokz --help | ||
``` | ||
|
||
# Usage | ||
1. Make sure you plug in your OpenSwim headphones to your machine via USB. | ||
2. Run the [shokz](#shokz) command in the terminal with parameters to download Podcast to OpenSwim. | ||
|
||
# Commands | ||
## shokz | ||
``` | ||
shokz [<URL>] [--output <OUTPUT>] | ||
``` | ||
### Arguments | ||
- `URL`\ | ||
URL to RSS feed with Podcast | ||
|
||
### Options | ||
- `--output`\ | ||
Root path to download podcasts.\ | ||
Default values: | ||
- Mac: `/Volumes/OpenSwim` | ||
- Other platforms: not specified | ||
|
||
### Examples | ||
#### Without --output | ||
``` | ||
shokz https://feeds.megaphone.fm/QCEOS5292368649 | ||
``` | ||
|
||
#### With --output | ||
``` | ||
shokz https://feeds.megaphone.fm/QCEOS5292368649 --output /Volumes/OpenSwim/Podcasts | ||
``` | ||
|