]> njoseph.me Git - nimcoon.git/blame - README.md
Usage from emacs with Doom Emacs keybindings
[nimcoon.git] / README.md
CommitLineData
f7735b43 1# NimCoon
726cf1a7 2
3e3ba843 3Play videos from YouTube and PeerTube from the
44978125
JN
4command line using your preferred desktop media player.
5
ca251617 6NewPipe app for Android offers similar features.
893b4f6c 7
a6c167a7
JN
8This application is implemented in [Nim language](https://nim-lang.org) using
9only the standard library.
10
3c20e75c 11![nimcoon screenshot with search term 'baby yoda'](screenshot.png)
44978125 12
ca251617
JN
13## Motivation
14
15### No similar existing tool
16
17I tried all kinds of alternative YouTube players for the desktop. Most are either electron apps or slow web proxies. There was one cool bash script that did most of what I wanted called `ytview` but it had no way of copying the URL. I added this feature to the bash script but was still unsatisfied. There were CLI players written in Python but are usually a pain to install. They depend on a hard-coded YouTube API token and suffer from rate-limiting. I use youtube-dl with mpv usually (mostly because I like MPV over the YouTube JavaScript player). These tools have hundreds of options and I can't remember them. I needed a wrapper for them that does what I want, is easy to install(portable) and has a simple interface. I am not a big fan of Golang and its fat binaries. I discovered Nim around the same time I had this problem and decided to write this tool using just the standard library.
18
19### Digital Minimalism
20
21YouTube's business incentive is to make you watch as many videos as possible. If you open the YouTube website and are logged into it, you will just get distracted by recommendations and forget why you opened it in the first place. You might have wanted to watch a conference talk but end up going down a rabbit hole of other "interesting" videos customized for you.
22
23NimCoon has a spartan design. It doesn't even show images of the search results. I have had better success with managing my YouTube consumption after shifting to this tool. Pinafore's wellness settings are an inspiration for this.
24
25### Why no issues or merge requests?
26
27I made this just for myself. The development is completely based on my needs and wants. I am not going to put a lot of work into this project. But feel free to use it if it works for you.
28
44978125
JN
29## Features
30
31- [x] Search for videos using keywords
763f653f 32- [x] Stream videos and music from YouTube
52ecc638 33- [x] Play direct links from YouTube and PeerTube
d7688e97 34- [x] Stream video and music from magnet links and hyperlinks to torrent files
e9f0c7d0 35- [x] Download music
d2ebe4d2 36- [x] Download video
893b4f6c
JN
37- [x] Play YouTube playlists (MPV only)
38- [ ] Download YouTube playlists
c12cc641
JN
39- [x] Stream video from torrent file URLs
40- [x] BitTorrent is preferred for PeerTube video links
41- [ ] Search PeerTube (3.0 or later)
ca251617 42- [ ] YouTube Autoplay (music only)
44978125
JN
43- [ ] Configuration options
44
dfe4f811
JN
45| | YouTube | PeerTube (HTTP) | PeerTube (WebTorrent) |
46| -------- | -------- | -------- | -------- |
47| Music Streaming | ✅ | ✅ | ✅ |
48| Video Streaming | ✅ | ✅ | ✅ |
49| Music Download | ✅ | ✅ | |
50| Video Download | ✅ | ✅ | |
51| Stream Music from URL | ✅ | ✅ | |
52| Stream Video from URL | ✅ | ✅ | ✅ |
53| Download Music from URL | ✅ | ✅ | |
54| Download Video from URL | ✅ | ✅ | |
55| Stream Music Playlist | ✅ | | |
56| Stream Video Playlist | ✅ | | |
57| Download Music Playlist | | | |
58| Download Video Playlist | | | |
893b4f6c 59
3f6de5cb 60## Installation
44978125 61
3c20e75c 62Nim Coon depends on the following:
7d08d1af
JN
63- youtube-dl
64- mpv (recommended) or vlc
8d06ad69 65- peerflix and webtorrent (for magnet links)
7d08d1af 66
8d06ad69 67Install MPV or VLC using your distribution's package manager.
88a5646a
JN
68
69Install YouTube-dl
70``` sh
71pip3 install --user youtube-dl
72```
73
8d06ad69 74Install PeerFlix and WebTorrent
88a5646a 75```sh
0c2f0385 76npm install --global peerflix webtorrent-cli
88a5646a
JN
77```
78
0c2f0385
JN
79(Optional) If you want your YouTube downloads to be faster, install `aria2` download manager.
80
af9a966f
JN
81### Installing using Nimble
82
83NimCoon can be installed from Nimble repositories:
84
85``` sh
86nimble install nimcoon
87```
88
89You can also install from source by running the following command:
44978125 90
c4aeb618 91```sh
af9a966f 92nimble install
c4aeb618
JN
93```
94
af9a966f 95### Installing binary
44978125 96
af9a966f 97Download the latest build from GitlabCI (amd64 GNU/Linux only).
44978125 98
3f6de5cb 99```sh
af9a966f
JN
100wget https://gitlab.com/njoseph/nimcoon/-/jobs/artifacts/master/download?job=compile -O artifacts.zip
101unzip artifacts.zip
44978125
JN
102```
103
af9a966f
JN
104Copy the binary to somewhere on your path like /usr/local/bin
105
3f6de5cb 106## Usage
44978125
JN
107
108```sh
763f653f 109nimcoon "emacs"
44978125 110
c4aeb618 111# If your search query has multiple words, use quotes
763f653f 112nimcoon "nim lang"
f135dfc7 113
763f653f 114# Play audio of the first search result
3c20e75c 115nimcoon -m -l "counting stars"
763f653f
JN
116
117# Download audio of the first search result
118nimcoon -mld "counting stars"
119
120# Play direct video link
121nimcoon https://www.youtube.com/watch?v=QOEMv0S8AcA
122
123# Add -d to download or -m to select only audio or both
124nimcoon -md https://www.youtube.com/watch?v=hT_nvWreIhg
44978125 125```
c4aeb618 126
763f653f
JN
127After the search results are displayed, you can enter a number to play one
128result, "all" to play all the results or "q" to quit the program.
129
130If a number is entered, after the selected search result is played, the results
131are redisplayed, so that you can play the other results without having to search
132again.
133
134### Command line arguments
4827df7a 135
3c20e75c
JN
136| **Arguments** | **Explanation** |
137|-------------------|--------------------------------------------|
138| -m, --music | Play Music only, no video |
139| -l, --lucky | Try your luck with the first search result |
140| -f, --full-screen | Play video in full screen |
e9f0c7d0 141| -d, --download | Download video or music |
4827df7a 142
763f653f
JN
143Feel free to use these options in any combination. NimCoon will show a helpful
144error message if you pick incompatible options.
145
3f6de5cb
JN
146## Development
147
148One-liner for compiling and running
c4aeb618
JN
149
150```sh
763f653f 151nim c -d:ssl -r src/nimcoon.nim 'nim lang'
68fd8100 152```
e26cfd93
JN
153
154## Privacy
155
156To avoid storing your nimcoon searches in `zsh` history, run this command
157
158```sh
159setopt histignorespace
160```
161
162Then, add a space before typing nimcoon in the shell, like " nimcoon"
163
164```sh
165 nimcoon "this is private"
166```
167
168The same can be achieved in `bash` by setting an environment variable
169```sh
170export HISTCONTROL=ignoreboth
171```
ca251617 172