README 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. # -*- mode: org; org-html-head-include-default-style: nil; org-html-postamble: nil; -*-
  2. #+OPTIONS: toc:nil num:nil
  3. * Tubo
  4. 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.
  5. ** Features
  6. - No ads
  7. - Background player
  8. - Playback queue
  9. - User playlists
  10. - System/Light/Dark themes
  11. ** Installation
  12. *** Packaging
  13. **** Uberjar
  14. To bundle the whole project into a self-contained uber-jar you need to follow these build steps:
  15. #+begin_src sh
  16. npm i
  17. npm run build
  18. clojure -T:frontend:build uberjar
  19. #+end_src
  20. After the last command is completed, you'll get a path to the uber-jar, which you can run like this:
  21. #+begin_src sh
  22. java -jar target/tubo-<VERSION>.jar
  23. #+end_src
  24. **** Docker
  25. For Docker, there's an image available in Docker Hub you can use:
  26. #+begin_src sh
  27. docker pull migalmoreno/tubo
  28. docker run --publish 3000:3000 -d --name tubo migalmoreno/tubo:latest
  29. #+end_src
  30. There's also a Docker Compose file available which you can run like this:
  31. #+begin_src sh
  32. docker compose up -d
  33. #+end_src
  34. *** Reverse Proxy
  35. 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:
  36. **** Nginx
  37. #+begin_src nginx
  38. server {
  39. listen 443 ssl http2;
  40. server_name <TUBO_HOST>;
  41. ssl_certificate /etc/letsencrypt/live/<TUBO_HOST>/fullchain.pem;
  42. ssl_certificate_key /etc/letsencrypt/live/<TUBO_HOST>/privkey.pem;
  43. location / {
  44. proxy_pass http://localhost:3000;
  45. proxy_set_header X-Forwarded-For $remote_addr;
  46. proxy_set_header HOST $http_host;
  47. }
  48. }
  49. #+end_src
  50. ** Public Instances
  51. | URL | Country |
  52. |-------------------------------+---------|
  53. | https://tubo.media (Official) | 🇪🇸 |
  54. | https://tubo.reallyaweso.me | 🇩🇪 |
  55. | https://tubo.ducks.party | 🇩🇪 |
  56. ** Browser Extension Support
  57. *** [[https://einaregilsson.com/redirector/][Redirector]]
  58. 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).
  59. #+begin_src
  60. Description: YouTube video to Tubo stream
  61. Example URL: https://www.youtube.com/watch?v=YE7VzlLtp-4
  62. Include pattern: ^((?:https?://)(?:www.)?youtube.com/(watch\?v.*|shorts/.*))
  63. Redirect to: https://<TUBO_HOST>/stream?url=$1
  64. Example result:
  65. https://<TUBO_HOST>/stream?url=https://www.youtube.com/watch?v=YE7VzlLtp-4
  66. Pattern type: Regular Expression
  67. Apply to: Main window (address bar)
  68. #+end_src
  69. #+begin_src
  70. Description: SoundCloud stream to Tubo stream
  71. Example URL: https://soundcloud.com/unfa/stop-the-panic
  72. Include pattern: ^((?:https?://)(?:www.)?soundcloud.com/.*/.*)
  73. Redirect to: https://<TUBO_HOST>/stream?url=$1
  74. Example result:
  75. https://<TUBO_HOST>/stream?url=https://soundcloud.com/unfa/stop-the-panic
  76. Pattern type: Regular Expression
  77. Apply to: Main window (address bar)
  78. #+end_src
  79. #+begin_src
  80. Description: Bandcamp album to Tubo playlist
  81. Example URL: https://unfa.bandcamp.com/album/suppressed
  82. Include pattern: ^((?:https?://)(.*\.)?bandcamp.com/album/.*)
  83. Redirect to: https://<TUBO_HOST>/playlist?url=$1
  84. Example result: https://<TUBO_HOST>/playlist?url=https://unfa.bandcamp.com/album/suppressed
  85. Pattern type: Regular Expression
  86. Apply to: Main window (address bar)
  87. #+end_src
  88. #+begin_src
  89. Description: PeerTube (Framatube) channel to Tubo channel
  90. Example URL: https://framatube.org/accounts/framasoft@framatube.org
  91. Include pattern: ^((?:https?://)(?:www.)?framatube.org/accounts/.*)
  92. Redirect to: https://<TUBO_HOST>/channel?url=$1
  93. Example result:
  94. https://<TUBO_HOST>/channel?url=https://framatube.org/accounts/framasoft@framatube.org
  95. Pattern type: Regular Expression
  96. Apply to: Main window (address bar)
  97. #+end_src
  98. #+begin_src
  99. Description: media.ccc.de search query to Tubo search query
  100. Example URL: https://media.ccc.de/search/?q=37c3
  101. Include pattern: ^(?:https?://)media.ccc.de/search/\?q=(.*)
  102. Redirect to: https://<TUBO_HOST>/search?query=$1&serviceId=2
  103. Example result: https://<TUBO_HOST>/search?query=37c3&serviceId=2
  104. Pattern type: Regular Expression
  105. Apply to: Main window (address bar)
  106. #+end_src
  107. *** [[https://libredirect.github.io/][LibRedirect]]
  108. 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.
  109. *** [[https://github.com/libreom/predirect][Predirect]]
  110. Serves the same purpose as LibRedirect but is Manifest V3 compatible. Tubo is supported by default for SoundCloud.
  111. *** [[https://github.com/dybdeskarphet/privacy-redirector][Privacy Redirector]]
  112. A user-script that redirects popular social media platforms to their privacy respecting front-ends. Tubo is supported by default for YouTube and SoundCloud.