]> njoseph.me Git - nimcoon.git/blob - README.md
Add more items to feature list
[nimcoon.git] / README.md
1 # CLI Tube
2
3 Play videos from YouTube (and maybe other sources in the future) from the
4 command line using your preferred desktop media player.
5
6 This application is implemented in [Nim language](https://nim-lang.org).
7
8 ## Features
9
10 - [x] Search for videos using keywords
11 - [ ] Download or watch videos
12 - [ ] Configuration options
13 - [ ] Choice of video players
14 - [ ] Show video URLs or not
15 - [ ] Play audio only
16 - [ ] Pagination of search results
17
18 ## Usage
19
20 ### As a script
21
22 You must have nim installed locally for this to work.
23
24 ```sh
25 nim c -d:ssl -r cli_tube.nim emacs
26
27 # If your search query has multiple words, use quotes
28 nim c -d:ssl -r cli_tube.nim 'nim lang'
29 ```
30
31 ### Using the binary
32
33 Please use the binary in the repository for now.
34 Will setup GitLab CI to publish proper binaries later.
35
36 ```sh
37 ./cli_tube emacs
38
39 ./cli_tube 'nim lang'
40 ```