gdead/README.md

60 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2021-07-05 18:45:29 -06:00
# gdead
2022-01-05 18:30:36 -07:00
Play Grateful Dead shows in your terminal.
2021-07-05 18:45:29 -06:00
## Installation
```sh
# Download
2021-07-05 19:06:08 -06:00
git clone https://gitea.gf4.pw/ki9/gdead.git /usr/local/src/gdead
2021-07-05 18:45:29 -06:00
# "Build"
ln -s /usr/local/src/gdead/gdead /usr/local/bin/gdead
```
## Usage
```
2022-07-10 10:29:34 -06:00
gdead [-g|--gui] [-r|--rand|--random] [-a|--aud|--audience] [year [month [day]]]
```
Takes `year`, `month`, and `day` as arguments and plays the top-rated soundboard on [archive.org](https://archive.org/details/GratefulDead). Providing no unnamed parameters searches the entire vault.
2021-07-08 23:40:11 -06:00
**NOTE**: *The date parsing is still pretty primitive so don't be an edge case: use 4-digit years and 2-digit months/days.*
2022-07-10 10:29:34 -06:00
### GUI or terminal
By default `gdead` will open your show with `nvlc`, which uses an ncurses-based terminal interface. To open the show as a playlist in vlc's GUI, use the `-g` flag.
### Audience recordings
By default, `gdead` only returns soundboards and matrices. To use audience-recordings too, use the `-a` flag
### Random
To sort by random instead of rating, use the `-r` flag.
## Examples
Play the top-rated version of Woodstock Festival, including audience-tapes:
```sh
gdead -a 1969 08 16
```
Play a random show from '72:
2021-07-05 18:45:29 -06:00
```sh
gdead -r 1972
2021-07-05 18:45:29 -06:00
```
2021-07-05 20:05:08 -06:00
## License
2021-07-05 20:14:55 -06:00
gdead - Stream Grateful Dead soundboards from archive.org\
2022-01-05 18:30:36 -07:00
Copyright © 2021-2022 Keith Irwin [www.ki9.us](https://www.ki9.us/)
2021-07-05 20:05:08 -06:00
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.