README 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # -*- mode: org; org-html-head-include-default-style: nil; org-html-postamble: nil; after-save-hook: org-md-export-to-markdown; -*-
  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. ** Installation
  6. *** Packaging
  7. **** Uberjar
  8. To bundle the whole project into a self-contained uber-jar you need to follow these build steps:
  9. #+begin_src sh
  10. npm i
  11. npm run build
  12. clojure -T:frontend:build uberjar
  13. #+end_src
  14. After the last command is completed, you'll get a path to the uber-jar, which you can run like this:
  15. #+begin_src sh
  16. java -jar target/tubo-<VERSION>.jar
  17. #+end_src
  18. **** Docker
  19. You can use Docker Compose to set up Tubo.
  20. #+begin_src sh
  21. docker-compose up -d
  22. #+end_src
  23. **** Manual
  24. You set up Tubo manually via the [[https://guix.gnu.org/][GNU Guix]] package manager. First, download the necessary tooling:
  25. #+begin_src sh
  26. cd /path/to/tubo
  27. guix shell
  28. #+end_src
  29. Then, compile the downloader ahead-of-time:
  30. #+begin_src sh
  31. clojure -M -e "(compile 'tubo.downloader-impl)"
  32. #+end_src
  33. Fetch the front-end dependencies and build the front-end assets.
  34. #+begin_src sh
  35. npm i
  36. npm run build
  37. #+end_src
  38. Finally, compile the front-end.
  39. #+begin_src sh
  40. clojure -M:frontend release tubo
  41. #+end_src
  42. You can now start a local server that listens on port 3000 by running this:
  43. #+begin_src sh
  44. clojure -M:run
  45. #+end_src
  46. Access the front-end in your browser at =http://localhost:3000=.
  47. *** Reverse Proxy
  48. If you want to self-host Tubo and make it publicly accessible you'll need to set up a reverse proxy.
  49. **** Nginx
  50. #+begin_src nginx
  51. server {
  52. listen 443 ssl http2;
  53. server_name <TUBO_HOST>;
  54. ssl_certificate /etc/letsencrypt/live/<TUBO_HOST>/fullchain.pem;
  55. ssl_certificate_key /etc/letsencrypt/live/<TUBO_HOST>/privkey.pem;
  56. location / {
  57. proxy_pass http://localhost:3000;
  58. proxy_set_header X-Forwarded-For $remote_addr;
  59. proxy_set_header HOST $http_host;
  60. }
  61. }
  62. #+end_src
  63. ** Browser Extension Support
  64. *** [[https://einaregilsson.com/redirector/][Redirector]]
  65. 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).
  66. #+begin_src
  67. Description: YouTube video to Tubo stream
  68. Example URL: https://www.youtube.com/watch?v=YE7VzlLtp-4
  69. Include pattern: ^((?:https?://)(?:www.)?youtube.com/(watch\?v.*|shorts/.*))
  70. Redirect to: https://<TUBO_HOST>/stream?url=$1
  71. Example result:
  72. https://<TUBO_HOST>/stream?url=https://www.youtube.com/watch?v=YE7VzlLtp-4
  73. Pattern type: Regular Expression
  74. Apply to: Main window (address bar)
  75. #+end_src
  76. #+begin_src
  77. Description: SoundCloud stream to Tubo stream
  78. Example URL: https://soundcloud.com/unfa/stop-the-panic
  79. Include pattern: ^((?:https?://)(?:www.)?soundcloud.com/.*/.*)
  80. Redirect to: https://<TUBO_HOST>/stream?url=$1
  81. Example result:
  82. https://<TUBO_HOST>/stream?url=https://soundcloud.com/unfa/stop-the-panic
  83. Pattern type: Regular Expression
  84. Apply to: Main window (address bar)
  85. #+end_src
  86. #+begin_src
  87. Description: Bandcamp album to Tubo playlist
  88. Example URL: https://unfa.bandcamp.com/album/suppressed
  89. Include pattern: ^((?:https?://)(.*\.)?bandcamp.com/album/.*)
  90. Redirect to: https://<TUBO_HOST>/playlist?url=$1
  91. Example result: https://<TUBO_HOST>/playlist?url=https://unfa.bandcamp.com/album/suppressed
  92. Pattern type: Regular Expression
  93. Apply to: Main window (address bar)
  94. #+end_src
  95. #+begin_src
  96. Description: PeerTube (Framatube) channel to Tubo channel
  97. Example URL: https://framatube.org/accounts/framasoft@framatube.org
  98. Include pattern: ^((?:https?://)(?:www.)?framatube.org/accounts/.*)
  99. Redirect to: https://<TUBO_HOST>/channel?url=$1
  100. Example result:
  101. https://<TUBO_HOST>/channel?url=https://framatube.org/accounts/framasoft@framatube.org
  102. Pattern type: Regular Expression
  103. Apply to: Main window (address bar)
  104. #+end_src
  105. #+begin_src
  106. Description: media.ccc.de search query to Tubo search query
  107. Example URL: https://media.ccc.de/search/?q=37c3
  108. Include pattern: ^(?:https?://)media.ccc.de/search/\?q=(.*)
  109. Redirect to: https://<TUBO_HOST>/search?query=$1&serviceId=2
  110. Example result: https://<TUBO_HOST>/search?query=37c3&serviceId=2
  111. Pattern type: Regular Expression
  112. Apply to: Main window (address bar)
  113. #+end_src