Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andremiras/tubedl
Online video downloader
https://github.com/andremiras/tubedl
Last synced: 6 days ago
JSON representation
Online video downloader
- Host: GitHub
- URL: https://github.com/andremiras/tubedl
- Owner: AndreMiras
- Created: 2014-04-21T14:07:49.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2024-09-26T10:20:20.000Z (3 months ago)
- Last Synced: 2024-12-15T20:25:01.610Z (9 days ago)
- Language: Python
- Homepage: tubedl.herokuapp.com
- Size: 538 KB
- Stars: 27
- Watchers: 4
- Forks: 32
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tubedl
[![Build Status](https://travis-ci.com/AndreMiras/tubedl.svg?branch=develop)](https://travis-ci.com/AndreMiras/tubedl)
## Online video downloader
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
Tube DL is a website for downloading videos from sites like YouTube.com.
It is built on top of [rg3/youtube-dl](https://github.com/rg3/youtube-dl), the [Django framework](https://github.com/django/django) and works for both Python2 and Python3.![Screenshot](https://raw.github.com/AndreMiras/tubedl/master/docs/tubedl.png)
## Install
Production environment:
```sh
make virtualenv
```
You also need system requirements e.g. for merging video/audio:
```sh
make system_dependencies
```## Run
With Gunicorn WSGI server:
```sh
gunicorn tubedl.wsgi
```
With Django development server:
```sh
python manage.py runserver
```## Tests
```sh
make test
```