123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- # -*- mode: org; org-html-head-include-default-style: nil; org-html-postamble: nil; -*-
- #+OPTIONS: toc:nil num:nil
- #+TITLE: tubo
- Tubo is a streaming front-end focused on bringing the [[https:
- * Features
- - No ads
- - Background player
- - Playback queue
- - User playlists
- - System/Light/Dark themes
- * Installation
- ** Packaging
- *** Uberjar
- To bundle the whole project into a self-contained uber-jar you need to follow these build steps:
- #+begin_src sh
- npm i
- clojure -T:frontend:build uberjar
- #+end_src
- After the last command is completed, you'll get a path to the uber-jar, which you can run like this:
- #+begin_src sh
- java -jar target/tubo-<VERSION>.jar
- #+end_src
- *** Docker
- For Docker, there's an image available in Docker Hub you can use:
- #+begin_src sh
- docker pull migalmoreno/tubo
- docker run --publish 3000:3000 -d --name tubo migalmoreno/tubo:latest
- #+end_src
- There's also a Docker Compose file available which you can run like this:
- #+begin_src sh
- docker compose up -d
- #+end_src
- ** Reverse Proxy
- If you want to self-host Tubo and make it publicly accessible you'll need to set up a reverse proxy. The following shows some example configurations for various web servers:
- *** Nginx
- #+begin_src nginx
- server
- }
- #+end_src
- * Public Instances
- | URL | Country |
- |-------------------------------+---------|
- | https:
- | https:
- | https:
- * Browser Extension Support
- ** [[https:
- You can manually add any redirect rule based on regex patterns with this extension. Below are some sample configurations to redirect links from supported services to Tubo so you get a basic idea of how to write manual Redirector rules. Note the =serviceId= of each service is: YouTube (0), SoundCloud(1), media.ccc.de(2), PeerTube(3), and Bandcamp(4).
- #+begin_src conf-colon
- Description: YouTube video to Tubo stream
- Example URL: https:
- Include pattern: ^((?:https?:
- Redirect to: https:
- Example result: https:
- Pattern type: Regular Expression
- Apply to: Main window (address bar)
- #+end_src
- #+begin_src conf-colon
- Description: SoundCloud stream to Tubo stream
- Example URL: https:
- Include pattern: ^((?:https?:
- Redirect to: https:
- Example result: https:
- Pattern type: Regular Expression
- Apply to: Main window (address bar)
- #+end_src
- #+begin_src conf-colon
- Description: Bandcamp album to Tubo playlist
- Example URL: https:
- Include pattern: ^((?:https?:
- Redirect to: https:
- Example result: https:
- Pattern type: Regular Expression
- Apply to: Main window (address bar)
- #+end_src
- #+begin_src conf-colon
- Description: PeerTube (Framatube) channel to Tubo channel
- Example URL: https:
- Include pattern: ^((?:https?:
- Redirect to: https:
- Example result: https:
- Pattern type: Regular Expression
- Apply to: Main window (address bar)
- #+end_src
- #+begin_src conf-colon
- Description: media.ccc.de search query to Tubo search query
- Example URL: https:
- Include pattern: ^(?:https?:
- Redirect to: https:
- Example result: https:
- Pattern type: Regular Expression
- Apply to: Main window (address bar)
- #+end_src
- ** [[https:
- Redirects many popular services to their alternative front-ends. Has a ton of features and an active community. Tubo is supported by default for YouTube and SoundCloud.
- ** [[https:
- Serves the same purpose as LibRedirect but is Manifest V3 compatible. Tubo is supported by default for SoundCloud.
- ** [[https:
- A user-script that redirects popular social media platforms to their privacy respecting front-ends. Tubo is supported by default for YouTube and SoundCloud.
|