Geen omschrijving

Miguel Ángel Moreno e4a7f293c7 docs: add mode to redirector code block examples 1 week geleden
.github 137f87f3cd chore: ignore readme changes in docker-publish workflow 2 maanden geleden
classes b545944e71 chore(git): Unignore classes directory 1 jaar geleden
resources 30a03d4fbf feat: add main player and replace video.js with vidstack 5 maanden geleden
src b6783eb780 fix(frontend): fix display of playlist avatar 2 weken geleden
.dockerignore c7dafc936b feat: Add Docker scripts 1 jaar geleden
.envrc 50ca1ec0cf chore: add Nix flake and clean up ignore files 2 weken geleden
.gitignore 50ca1ec0cf chore: add Nix flake and clean up ignore files 2 weken geleden
.zprint.edn e3a01a3534 chore: add zprint configuration file 2 weken geleden
Dockerfile cedef10bc5 chore: use tools-deps image instead 4 maanden geleden
LICENSE 916ba00f83 chore: Add license 1 jaar geleden
README e4a7f293c7 docs: add mode to redirector code block examples 1 week geleden
build.clj 01c3e19c6b chore: apply formatting and linting 2 weken geleden
deps.edn 01c3e19c6b chore: apply formatting and linting 2 weken geleden
docker-compose.yml f384d197fd chore: Refine docker-compose 1 jaar geleden
flake.lock 50ca1ec0cf chore: add Nix flake and clean up ignore files 2 weken geleden
flake.nix 50ca1ec0cf chore: add Nix flake and clean up ignore files 2 weken geleden
manifest.scm 80bb68bcad chore(guix): Add manifest 1 jaar geleden
package-lock.json d05dd33d75 chore: update package-lock.json 5 maanden geleden
package.json ad97ce56cc chore: add shadow-cljs to npm deps 5 maanden geleden
postcss.config.js b2c3fecbd1 chore: Add PostCSS configuration 1 jaar geleden
shadow-cljs.edn 81f03c0b44 chore: Rename project 1 jaar geleden
tailwind.config.js 30a03d4fbf feat: add main player and replace video.js with vidstack 5 maanden geleden
webpack.config.js ed540859f6 feat: improve video player styles 5 maanden geleden

README

# -*- 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://newpipe.net/][NewPipe]] experience to the web. It aims at providing a clean and simple user interface to consume media from your favorite streaming platforms. It currently supports the same services as NewPipe, including YouTube, SoundCloud, Bandcamp, and more.

* 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
npm run build
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-.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 {
listen 443 ssl http2;
server_name ;
ssl_certificate /etc/letsencrypt/live//fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live//privkey.pem;

location / {
proxy_pass http://localhost:3000;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header HOST $http_host;
}
}
#+end_src

* Public Instances
| URL | Country |
|-------------------------------+---------|
| https://tubo.media (Official) | 🇪🇸 |
| https://tubo.reallyaweso.me | 🇩🇪 |
| https://tubo.ducks.party | 🇩🇪 |

* Browser Extension Support
** [[https://einaregilsson.com/redirector/][Redirector]]
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://www.youtube.com/watch?v=YE7VzlLtp-4
Include pattern: ^((?:https?://)(?:www.)?youtube.com/(watch\?v.*|shorts/.*))
Redirect to: https:///stream?url=$1
Example result: https:///stream?url=https://www.youtube.com/watch?v=YE7VzlLtp-4
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://soundcloud.com/unfa/stop-the-panic
Include pattern: ^((?:https?://)(?:www.)?soundcloud.com/.*/.*)
Redirect to: https:///stream?url=$1
Example result: https:///stream?url=https://soundcloud.com/unfa/stop-the-panic
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://unfa.bandcamp.com/album/suppressed
Include pattern: ^((?:https?://)(.*\.)?bandcamp.com/album/.*)
Redirect to: https:///playlist?url=$1
Example result: https:///playlist?url=https://unfa.bandcamp.com/album/suppressed
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://framatube.org/accounts/framasoft@framatube.org
Include pattern: ^((?:https?://)(?:www.)?framatube.org/accounts/.*)
Redirect to: https:///channel?url=$1
Example result: https:///channel?url=https://framatube.org/accounts/framasoft@framatube.org
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://media.ccc.de/search/?q=37c3
Include pattern: ^(?:https?://)media.ccc.de/search/\?q=(.*)
Redirect to: https:///search?query=$1&serviceId=2
Example result: https:///search?query=37c3&serviceId=2
Pattern type: Regular Expression
Apply to: Main window (address bar)
#+end_src

** [[https://libredirect.github.io/][LibRedirect]]
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://github.com/libreom/predirect][Predirect]]
Serves the same purpose as LibRedirect but is Manifest V3 compatible. Tubo is supported by default for SoundCloud.

** [[https://github.com/dybdeskarphet/privacy-redirector][Privacy Redirector]]
A user-script that redirects popular social media platforms to their privacy respecting front-ends. Tubo is supported by default for YouTube and SoundCloud.