tube/README.md

49 lines
1.6 KiB
Markdown
Raw Normal View History

2020-03-24 15:35:00 +03:00
# tube
2019-06-30 01:33:28 +03:00
2020-03-23 09:57:34 +03:00
`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
2020-03-23 15:44:42 +03:00
MP4 H.265 AAC, multiple collections and RSS feed.
2020-03-23 09:57:34 +03:00
## Features
2019-06-30 01:33:28 +03:00
- Easy to add videos (just move a file into the folder)
2020-03-23 09:57:34 +03:00
- 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
2019-06-30 01:33:28 +03:00
- No database (video info pulled from file metadata)
2020-03-23 09:57:34 +03:00
- No JavaScript (the player UI is entirely HTML, except for the uploader which degrades!))
2019-06-30 01:33:28 +03:00
- Easy to customize CSS and HTML template
2019-07-04 05:30:20 +03:00
- Automatically generates RSS feed (at `/feed.xml`)
2019-06-30 01:33:28 +03:00
- Clean, simple, familiar UI
Currently only supports MP4 video files so you may need to re-encode your media to MP4 using something like [ffmpeg](https://ffmpeg.org/).
Since all of the video info comes from metadata it's also useful to have a metadata editor such as [EasyTAG](https://github.com/GNOME/easytag) (which supports attaching images as thumbnails too).
2020-03-23 09:57:34 +03:00
## Getting Started
2019-06-30 01:33:28 +03:00
2020-03-23 09:57:34 +03:00
### From Source
2019-06-30 01:33:28 +03:00
2020-03-23 09:57:34 +03:00
```#!sh
$ git clone https://github.com/proogic/tube
$ cd tube
$ make
$ ./tube
```
2019-08-08 15:14:26 +03:00
2020-03-23 09:57:34 +03:00
Open http://127.0.0.1:8000/ in your Browser!
2019-08-08 15:14:26 +03:00
2020-03-23 09:57:34 +03:00
### Using Docker
2019-06-30 01:33:28 +03:00
2020-03-23 09:57:34 +03:00
```#!sh
$ docker pull prologic/tube
$ docker run -p 8000:8000 -v /path/to/data:/data
```
2020-03-23 09:51:03 +03:00
## License
tube source code is available under the MIT [License](/LICENSE).
Previously based off of [tube](https://github.com/wybiral/tube) by [davy wybiral
](https://github.com/wybiral). (See [LICENSE.old](/LICENSE.old))