No description
Find a file
2020-03-29 08:36:14 +10:00
.github Add Github Workflows (#5) 2020-03-29 08:36:14 +10:00
app More minor UI tweaks 2020-03-28 23:08:47 +10:00
importers Add vimeo video importer 2020-03-28 13:11:54 +10:00
media Add backend support for serving lower quality videos (if available) 2020-03-28 15:59:16 +10:00
static More minor UI tweaks 2020-03-28 23:08:47 +10:00
templates More minor UI tweaks 2020-03-28 23:08:47 +10:00
tools Migrate to Go111Modules, Add Dockerfile and GoRelaser support 2020-03-21 08:20:16 +10:00
uploads Refactor video uploading in preparation for async transcoding 2020-03-21 22:58:14 +10:00
utils Refactored video importers 2020-03-28 12:16:45 +10:00
videos import code 2019-06-26 14:02:31 -05:00
.dockerignore Add a .dockerignore fiel 2020-03-28 16:54:51 +10:00
.gitignore Add support for keeping trakc of and viewing no. of views per video 2020-03-25 12:40:00 +10:00
.goreleaser.yml Migrate to Go111Modules, Add Dockerfile and GoRelaser support 2020-03-21 08:20:16 +10:00
.yamllint.yml Migrate to Go111Modules, Add Dockerfile and GoRelaser support 2020-03-21 08:20:16 +10:00
_config.yml Set theme jekyll-theme-architect 2020-03-23 11:16:49 +10:00
AUTHORS Add AUTHORS file and some other stats to the README 2020-03-25 11:38:11 +10:00
config.json Refactored thumbnail generation with configurable timeout and in-sycn with video transcoding 2020-03-26 14:50:49 +10:00
docker-compose.yml Added docker-compose reference stack using Traefik as LB 2020-03-23 16:58:37 +10:00
Dockerfile Added ffmpeg to Docker image 2020-03-22 18:22:36 +10:00
go.mod Add vimeo video importer 2020-03-28 13:11:54 +10:00
go.sum Add vimeo video importer 2020-03-28 13:11:54 +10:00
LICENSE Re-licensed 2020-03-23 16:58:37 +10:00
LICENSE.old Re-licensed 2020-03-23 16:58:37 +10:00
main.go Refactor video uploading in preparation for async transcoding 2020-03-21 22:58:14 +10:00
Makefile Fixed docker image 2020-03-21 11:03:00 +10:00
README.md Update README.md 2020-03-25 18:21:10 +10:00
screenshot-1.png Added screenshots to README 2020-03-25 09:35:29 +10:00
screenshot-2.png Added screenshots to README 2020-03-25 09:35:29 +10:00
version.go Migrate to Go111Modules, Add Dockerfile and GoRelaser support 2020-03-21 08:20:16 +10:00

tube

tube is a Youtube-like (without censorship and features you don't need!) Video Sharing App written in Go which also supports automatic transcoding to MP4 H.265 AAC, multiple collections and RSS feed.

Features

  • Easy to add videos (just move a file into the folder)
  • Easy to upload videos (just use the builtin uploader and automatic transcoder!)
  • Builtin ffmpeg-based Transcoder that automatically converts your uploaded content to MP4 H.264 / AAC
  • Builtin automatic thumbnail generator
  • No database (video info pulled from file metadata)
  • No JavaScript (the player UI is entirely HTML, except for the uploader which degrades!))
  • Easy to customize CSS and HTML template
  • Automatically generates RSS feed (at /feed.xml)
  • Clean, simple, familiar UI

Screenshots

screenshot-1 screenshot-2

Getting Started

From Source

$ git clone https://github.com/proogic/tube
$ cd tube
$ make
$ ./tube

Open http://127.0.0.1:8000/ in your Browser!

Using Docker

$ docker pull prologic/tube
$ docker run -p 8000:8000 -v /path/to/data:/data

Stargazers over time

Stargazers over time

Support

Support the ongoing development of Tube!

Sponser

Contributors

Thank you to all those that have contributed to this project, battle-tested it, used it in their own projects or products, fixed bugs, improved performance and even fix tiny typos in documentation! Thank you and keep contributing!

You can find an AUTHORS file where we keep a list of contributors to the project. If you contriibute a PR please consider adding your name there. There is also Github's own Contributors statistics.

License

tube source code is available under the MIT License.

Previously based off of tube by davy wybiral . (See LICENSE.old)