https://github.com/gituser143/tube
A simple Video Sharing platform made with django!
https://github.com/gituser143/tube
video-sharing video-sharing-platform video-streaming youtube
Last synced: 13 days ago
JSON representation
A simple Video Sharing platform made with django!
- Host: GitHub
- URL: https://github.com/gituser143/tube
- Owner: Gituser143
- License: apache-2.0
- Created: 2021-04-06T17:06:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-21T13:50:17.000Z (over 4 years ago)
- Last Synced: 2025-04-03T03:22:21.163Z (6 months ago)
- Topics: video-sharing, video-sharing-platform, video-streaming, youtube
- Language: Python
- Homepage:
- Size: 203 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
tube
====A video sharing platform made with django!
Installation
------------### Get code from repository
```sh
git clone https://github.com/Gituser143/tube.git
cd tube
```### Install Python Dependencies:
```sh
pip3 install -r requirements.txt
```### External Dependencies:
Debian based systems:
```sh
sudo apt install ffmpeg
```Mac:
```sh
brew install ffmpeg
```From source, refer to instructions [here](https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg)
Running the application
-----------------------Navigate to `oyt_python` and Migrate only for the first time!
```sh
cd oyt_python
python3 manage.py migrate
```To start the server, run:
```sh
python3 manage.py runserver
```Navigate to `localhost:8000` to access the application!