Metadata-Version: 2.1
Name: mediakit
Version: 0.1.2
Summary: Download YouTube videos fast, directly from the command line
Home-page: https://github.com/diego-aquino/mediakit
Author: Diego Aquino
Author-email: diegocruzdeaquino@gmail.com
License: MIT
Download-URL: https://github.com/diego-aquino/mediakit/archive/v0.1.2.tar.gz
Description: <h1 align="center">
          MediaKit
        </h1>
        
        <p align="center">
          <i>Download YouTube videos fast, directly from the command line</i>
        </p>
        
        <p align="center">
          <a href="#features">Features</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
          <a href="#installation">Installation</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
          <a href="#how-to-use">How to use</a>
        </p>
        
        ---
        
        **MediaKit** is a command line tool for downloading videos from YouTube.
        
        ## Features
        
        - Quickly download YouTube videos with a single command on your terminal
        
        ## Installation
        
        To install MediaKit, you'll need to have [Python 3](https://www.python.org/downloads/) (>= 3.6) and [pip](https://pip.pypa.io/en/stable/installing/) already installed on your computer. With those packages available, run:
        
        ```bash
        pip install mediakit
        ```
        
        or
        
        ```bash
        pip3 install mediakit
        ```
        
        ## How to use
        
        You can download a video with MediaKit by running:
        
        ```bash
        mediakit <video_url> [<output_path>]
        ```
        
        - **video_url**: the URL of the YouTube video to download (e.g. http://www.youtube.com/watch?v=...).
        - **output_path**: optional destination folder to where to save the downloads. If not provided, this will default to the current directory.
        
        After running this command, an interactive CLI will guide you through the download process.
        
        > **Note:** You can also provide a name for the downloaded file. To do that, include it in the output path (e.g. path/to/folder/video.mp4).
        
        ### Examples of use:
        
        Download to the current directory
        ```bash
        mediakit https://www.youtube.com/watch?v=m7AFEULF9LI
        ```
        
        Download to **~/Videos**
        ```bash
        mediakit https://www.youtube.com/watch?v=m7AFEULF9LI ~/Videos
        ```
        
        Download to **~/Videos** with name **song.mp4**
        ```bash
        mediakit https://www.youtube.com/watch?v=m7AFEULF9LI ~/Videos/song.mp4
        ```
        
        ---
        
        Made by [Diego Aquino](https://github.com/diego-aquino/) :sunglasses:. [Connect with me!](https://www.linkedin.com/in/diego-aquino)
        
Keywords: youtube,media,video,audio,download,convert,command line,cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Multimedia :: Video :: Conversion
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
Requires-Python: >=3.6
Description-Content-Type: text/markdown
