invidious/README.md

197 lines
6.5 KiB
Markdown
Raw Normal View History

2017-11-30 00:12:23 +00:00
# Invidious
2017-11-23 07:48:55 +00:00
2018-09-04 14:22:10 +00:00
## Invidious is an alternative front-end to YouTube
2017-11-23 07:48:55 +00:00
2018-11-19 20:44:24 +00:00
- Audio-only mode (and no need to keep window open on mobile)
2018-09-04 02:42:49 +00:00
- [Open-source](https://github.com/omarroth/invidious) (AGPLv3 licensed)
- No ads
- No need to create a Google account to save subscriptions
- Lightweight (homepage is ~4 KB compressed)
- Tools for managing subscriptions:
- Only show unseen videos
- Only show latest (or latest unseen) video from each channel
- Delivers notifications from all subscribed channels
- Automatically redirect homepage to feed
- Import subscriptions from YouTube
- Dark mode
- Embed support
- Set default player options (speed, quality, autoplay, loop)
- Does not require JS to play videos
- Support for Reddit comments in place of YT comments
2018-10-31 14:42:29 +00:00
- Import/Export subscriptions, watch history, preferences
2018-09-04 02:42:49 +00:00
- Does not use any of the official YouTube APIs
2018-11-14 02:38:56 +00:00
- Developer [API](https://github.com/omarroth/invidious/wiki/API)
2018-09-04 02:42:49 +00:00
2018-08-25 20:43:39 +00:00
Liberapay: https://liberapay.com/omarroth
2018-08-13 16:35:46 +00:00
Patreon: https://patreon.com/omarroth
2018-08-13 19:20:49 +00:00
BTC: 356DpZyMXu6rYd55Yqzjs29n79kGKWcYrY
BCH: qq4ptclkzej5eza6a50et5ggc58hxsq5aylqut2npk
2018-08-13 16:35:46 +00:00
2019-01-06 03:51:08 +00:00
Onion links:
- kgg2m7yk5aybusll.onion
- axqzx4s6s54s32yentfqojs3x5i7faxza6xo3ehd4bzzsg2ii4fv2iid.onion
2017-11-23 07:48:55 +00:00
## Installation
2018-09-29 15:10:41 +00:00
### Docker:
#### Build and start cluster:
```bash
$ docker-compose up
```
And visit `localhost:3000` in your browser.
#### Rebuild cluster:
```bash
$ docker-compose build
```
#### Delete data and rebuild:
```bash
$ docker volume rm invidious_postgresdata
$ docker-compose build
```
2018-10-31 14:42:29 +00:00
### Arch Linux:
2018-03-09 16:48:01 +00:00
2018-01-29 02:31:35 +00:00
```bash
2018-10-31 14:42:29 +00:00
# Install dependencies
$ sudo pacman -S shards crystal imagemagick librsvg
# Setup PostgresSQL
$ sudo systemctl enable postgresql
$ sudo systemctl start postgresql
$ sudo -i -u postgres
$ createuser -s YOUR_USER_NAME
$ createdb YOUR_USER_NAME
$ exit
# Setup Invidious
$ git clone https://github.com/omarroth/invidious
$ cd invidious
$ ./setup.sh
2018-07-19 01:09:28 +00:00
$ shards
2018-10-31 14:42:29 +00:00
$ crystal build src/invidious.cr --release
2018-01-29 02:31:35 +00:00
```
2018-10-31 14:42:29 +00:00
### On Ubuntu:
2018-03-09 16:48:01 +00:00
2018-01-29 02:31:35 +00:00
```bash
2018-10-31 14:42:29 +00:00
# Install dependencies
$ curl -sSL https://dist.crystal-lang.org/apt/setup.sh | sudo bash
$ sudo apt update
$ sudo apt install crystal libssl-dev libxml2-dev libyaml-dev libgmp-dev libreadline-dev librsvg2-dev postgresql imagemagick libsqlite3-dev
2018-10-31 14:42:29 +00:00
# Setup PostgreSQL
$ sudo systemctl enable postgresql
$ sudo systemctl start postgresql
$ sudo -i -u postgres
$ createuser -s YOUR_USER_NAME_HERE
$ createdb YOUR_USER_NAME_HERE
$ exit
# Setup Invidious
$ git clone https://github.com/omarroth/invidious
$ cd invidious
$ ./setup.sh
2018-07-19 01:09:28 +00:00
$ shards
2018-10-31 14:42:29 +00:00
$ crystal build src/invidious.cr --release
2018-01-29 02:31:35 +00:00
```
2018-10-31 14:42:29 +00:00
### On OSX:
2018-03-09 16:48:01 +00:00
2018-01-29 02:31:35 +00:00
```bash
2018-10-31 14:42:29 +00:00
# Install dependencies
$ brew update
$ brew install shards crystal-lang postgres imagemagick librsvg
2018-03-09 16:48:01 +00:00
2018-10-31 14:42:29 +00:00
# Setup Invidious
$ git clone https://github.com/omarroth/invidious
$ cd invidious
2018-01-29 02:58:41 +00:00
$ ./setup.sh
2018-10-31 14:42:29 +00:00
$ shards
$ crystal build src/invidious.cr --release
2018-07-19 01:25:11 +00:00
```
2018-01-29 02:31:35 +00:00
## Usage:
2017-11-23 07:52:37 +00:00
```bash
2018-09-29 15:10:41 +00:00
$ crystal build src/invidious.cr --release
$ ./invidious -h
Usage: invidious [arguments]
-b HOST, --bind HOST Host to bind (defaults to 0.0.0.0)
-p PORT, --port PORT Port to listen for connections (defaults to 3000)
-s, --ssl Enables SSL
--ssl-key-file FILE SSL key file
--ssl-cert-file FILE SSL certificate file
-h, --help Shows this help
-t THREADS, --crawl-threads=THREADS
Number of threads for crawling (default: 1)
-c THREADS, --channel-threads=THREADS
Number of threads for refreshing channels (default: 1)
2018-10-31 14:42:29 +00:00
-f THREADS, --feed-threads=THREADS
Number of threads for refreshing feeds (default: 1)
2018-09-29 15:10:41 +00:00
-v THREADS, --video-threads=THREADS
Number of threads for refreshing videos (default: 1)
2017-11-23 07:52:37 +00:00
```
2017-11-23 07:48:55 +00:00
2018-01-29 02:31:35 +00:00
Or for development:
2018-03-09 16:48:01 +00:00
2017-11-23 07:52:37 +00:00
```bash
2018-01-29 02:31:35 +00:00
$ curl -fsSLo- https://raw.githubusercontent.com/samueleaton/sentry/master/install.cr | crystal eval
$ ./sentry
2017-11-23 07:52:37 +00:00
```
2017-11-23 07:48:55 +00:00
## Optional
Create a systemd service to run Invidious in background. Edit `invidious.service` to change your installation path and log location. Than copy and enable the systemd service.
```
$ sudo cp invidious.service /etc/systemd/system/invidious.service
$ sudo systemctl enable invidious.service
$ sudo systemctl start invidious.service
```
2018-08-02 20:18:33 +00:00
## Extensions
- [Alternate Tube Redirector](https://addons.mozilla.org/en-US/firefox/addon/alternate-tube-redirector/): Automatically open Youtube Videos on alternate sites like Invidious or Hooktube.
- [Invidious Redirect](https://greasyfork.org/en/scripts/370461-invidious-redirect): Redirects Youtube URLs to Invidio.us (userscript)
2018-11-30 21:10:56 +00:00
- [iPhone Redirector Shortcut](https://www.icloud.com/shortcuts/6bbf26d989cf4d07a5fe1626efbc0950): Automatically open YouTube videos in Invidious (iPhone shortcut)
2018-12-07 16:25:41 +00:00
- [Youtube to Invidious](https://greasyfork.org/en/scripts/375264-youtube-to-invidious): Scan page for youtube embeds and urls and replace with Invidious (userscript)
- [Invidious Downloader](https://github.com/erupete/InvidiousDownloader): Tampermonkey userscript for downloading videos or audio on Invidious (userscript)
2018-08-02 20:18:33 +00:00
2018-12-05 01:22:54 +00:00
## Made with Invidious
2018-12-05 03:28:49 +00:00
- [FreeTube](https://github.com/FreeTubeApp/FreeTube): An Open Source YouTube app for privacy.
- [CloudTube](https://github.com/cloudrac3r/cadencegq): Website featuring pastebin, image host, and YouTube player
- [PeerTubeify](https://gitlab.com/Ealhad/peertubeify): On YouTube, displays a link to the same video on PeerTube, if it exists.
2018-12-05 01:22:54 +00:00
2017-11-23 07:48:55 +00:00
## Contributing
2018-03-09 16:48:01 +00:00
1. Fork it ( https://github.com/omarroth/invidious/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
2017-11-23 07:48:55 +00:00
## Contact
2019-01-21 21:33:25 +00:00
Feel free to send an email to omarroth@protonmail.com or join our [Matrix Server](https://riot.im/app/#/room/#invidious:matrix.org), or #invidious on Freenode.
You can also view release notes on the [releases](https://github.com/omarroth/invidious/releases) page or in the CHANGELOG.md included in the repository.
## License
[![GNU AGPLv3 Image](https://www.gnu.org/graphics/agplv3-155x51.png)](http://www.gnu.org/licenses/agpl-3.0.en.html)
2017-11-23 07:48:55 +00:00
Invidious is Free Software: You can use, study share and improve it at your
will. Specifically you can redistribute and/or modify it under the terms of the
[GNU Affero General Public License](https://www.gnu.org/licenses/agpl.html) as
published by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.