aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-09-25 02:37:00 +0300
committerThanos Apollo <[email protected]>2023-09-25 02:48:10 +0300
commit1386a918c52deea9daac58447657fe78b40c4cdb (patch)
treec66ac81da45e8b5dc1220f2c4fffbfc707260376 /README.md
parent1acb7b40df89093ad25c12a6dfee8fc568adee23 (diff)
Update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md30
1 files changed, 3 insertions, 27 deletions
diff --git a/README.md b/README.md
index cfcbba3..5173923 100644
--- a/README.md
+++ b/README.md
@@ -7,15 +7,6 @@
This package provides the ability to scrape YouTube or any Invidious
instance, with the results displayed in a read-only org-mode buffer.
-Key features:
- - Search video query
- - Play video URL, *by default with MPV*
- - Save video URL with a custom name/label
- - Download video, *this package serves also as a front-end for
- yt-dlp, thus supporting platforms beyond YouTube/Invidious.*
-
-
-
## Installation
You can install it via [MELPA](https://melpa.org/#/yeetube)
@@ -44,24 +35,9 @@ sudo apt install mpv yt-dlp
### Configuration
#### Media Player
-Changing `yeetube-player` example:
+By default `yeetube-player` is set to `yeetube-mpv`, you can use
+[mpv.el](https://github.com/kljohann/mpv.el), [GNU/Emms](https://www.gnu.org/software/emms/) or other similar packages like so:
``` emacs-lisp
-(setq yeetube-player 'vlc)
+(setq yeetube-player 'emms-play-url)
```
-
-You can also use [mpv.el](https://github.com/kljohann/mpv.el) or other
-similar packages with yeetube by simple redefining `yeetube-play-url`
-to something like this:
-
-``` emacs-lisp
- (defun yeetube-play-url (url)
- "Open URL using mpv-play-url."
- (when (string-prefix-p "http" url)
- (mpv-play-url url)))
-```
-
-## Contributing
-
-- [Mailing list](https://lists.sr.ht/~thanosapollo/yeetube.el)
-- [Tickets](https://todo.sr.ht/~thanosapollo/yeetube.el)