From c8026ab7942f55afe62651628989b06ca7a5646a Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Wed, 2 Jan 2019 01:04:38 -0500 Subject: Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d6e8edc..be39284 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ --- `podcast` is a command line podcast player. + [Linux x64 binary download](https://github.com/njaremko/podcast/releases/download/0.6.1/podcast-x86-64-linux) + + SHA256 Checksum: 8968f43678364808bb550642047249101f3b03c43f6ee55e4516b7a7f59d6075 + NOTE: Playback requires either mpv or vlc to be installed It currently supports: -- cgit v1.2.3 From ccb02e57677908eaba10c4181ebf2303b8599b6a Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Wed, 2 Jan 2019 01:18:00 -0500 Subject: Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index be39284..956456e 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,21 @@ Individually: `podcast download $podcast_name 4` Multiple: `podcast download $podcast_name 1,5,9-12,14` All: `podcast download $podcast_name` + +You can also use a portion of the name. +Podcast will pick the first podcast alphabetically that contains the given word (Case-Insensitive). + +Example Usage: +```sh +$ podcast subscribe "http://feeds.feedburner.com/mbmbam" +$ podcast ls bro # List all the episodes of My Brother, My Brother, and Me +(447) MBMBaM 440: The Naming of 2019 +(446) MBMBaM 439: Face 2 Face: Candlenights 2018 +... +(2) My Brother, My Brother and Me: Episode 02 +(1) My Brother, My Brother and Me: Episode 01 +$ podcast play bro # Play the latest episode of mbmbam +$ podcast play "my brother" 446 # Play "MBMBaM 439: Face 2 Face: Candlenights 2018" +$ podcast download bro # Download all episodes of mbmbam + +``` -- cgit v1.2.3 From 32b8c003b3a73ce104ab1dbd0e1604418268b8a5 Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Wed, 2 Jan 2019 01:18:45 -0500 Subject: Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 956456e..9350f08 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ Podcast will pick the first podcast alphabetically that contains the given word Example Usage: ```sh $ podcast subscribe "http://feeds.feedburner.com/mbmbam" +$ podcast ls +My Brother, My Brother And Me $ podcast ls bro # List all the episodes of My Brother, My Brother, and Me (447) MBMBaM 440: The Naming of 2019 (446) MBMBaM 439: Face 2 Face: Candlenights 2018 -- cgit v1.2.3 From 0049014e41b8d7eaaefc76bd1cda9e47f1fd883a Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Wed, 2 Jan 2019 22:19:33 -0500 Subject: Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9350f08..333ffa7 100644 --- a/README.md +++ b/README.md @@ -51,5 +51,12 @@ $ podcast ls bro # List all the episodes of My Brother, My Brother, and Me $ podcast play bro # Play the latest episode of mbmbam $ podcast play "my brother" 446 # Play "MBMBaM 439: Face 2 Face: Candlenights 2018" $ podcast download bro # Download all episodes of mbmbam - +$ podcast download brother -e "The Naming" # Download the latest episode containing "The Naming" +Downloading: /home/njaremko/Podcasts/My Brother, My Brother And Me/MBMBaM 440: The Naming of 2019.mp3 +$ podcast download bro 44 -e -a # Download all episodes containing "44" +File already exists: /home/njaremko/Podcasts/My Brother, My Brother And Me/MBMBaM 440: The Naming of 2019.mp3 +Downloading: /home/njaremko/Podcasts/My Brother, My Brother And Me/MBMBaM 344: The Cream Beams to the Tower of Flavortown.mp3 +Downloading: /home/njaremko/Podcasts/My Brother, My Brother And Me/MBMBaM 244: Slimefoot.mp3 +Downloading: /home/njaremko/Podcasts/My Brother, My Brother And Me/MBMBaM 144: Kick it Forward.mp3 +Downloading: /home/njaremko/Podcasts/My Brother, My Brother And Me/My Brother, My Brother and Me 44: Chunk Pump.mp3 ``` -- cgit v1.2.3