Metadata-Version: 2.1
Name: yt-ripper
Version: 0.0.2
Summary: Project with Python to download videos and mp3 files of youtube in the terminal
Home-page: https://github.com/atticus64/pycritty
Author: Jonathani Atticus64
Author-email: jonaenglish64@gmail.com
Keywords: youtube
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Terminals :: Terminal Emulators/X Terminals
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# __Terminal script__ to download videos and convert to *mp3*
## By Jona
---
 _This script will be one of my tools to learn python and terminal utilities_

<img src="./assets/python-logo.png" alt="python" width="190"/><img src="./assets/powershell-logo.png" alt="powershell" width="190"/>

## Important
The dependencies of this script is the package *python3*, *pytube*, *colorama* and ffmpeg in linux

if you dont have pip install with: 

```
apt install python3-pip
```

Or your package manager for your distro

And install ffmpeg with the command:
**In Debian and Ubuntu Based:**

```
apt install ffmpeg
```
**In Fedora and CentOS:**
```
dnf install ffmpeg ffmpeg-devel
```
**In ArchLinux:** 
```
pacman -R ffmpeg4.0
```
And verify you have ffmpeg with:
```
ffmpeg --version
```

## Init virtual env

```bash
python3 -m venv .env
```

## install Dependencies 

```bash
pip install -r requirements.txt 
```

## Run cli

```bash
python3 yt_ripper/main.py
```

#### Demo Video
[![asciicast](https://asciinema.org/a/544630.svg)](https://asciinema.org/a/544630)
