Metadata-Version: 2.1
Name: mix-splitter
Version: 0.1
Summary: Download all the songs in a youtube mix.
Home-page: https://github.com/alexdr00/mix_splitter
Author: Alexander Rendón
Author-email: alexrendon2109@gmail.com
License: MIT
Description: # MIX SPLITTER
        Download all the songs in a youtube mix using
        a console script.  
        
        This script reads the songs in the description or a source and downloads them separetely using youtube-dl.  
        ## Prerequisites
        Since this script uses youtube-dl we need to install some of its dependencies.
        
        `sudo apt-get install ffmpeg`  
        `sudo apt-get install atomicparsley`
        
        This script also requires:
        * Python >=3.6
        * Pip 3
        
        ## Installation
        If you want to use the script globally, make sure
        you're not inside a virtual environment
        
        `python3.6 -m pip install mix-splitter --upgrade`
        
        Type `mix-splitter`  in the console  
        If that worked you should see this:  
        
        > *** You must provide one source to download the songs ***
        
        
        If you don't see that, you need to do the following step: 
        
        
        ##### Add ~/.local/bin to $PATH 
        1. Open bash_profile  
        `sudo nano ~/.bash_profile`
        2. Paste this at the end of the file  
        `export PATH=$PATH:~/.local/bin`
        3. Restart the terminal  
        
        
        ## Usage
        
        #### Basic
        `mix-splitter -u '<YOUTUBE_MIX_URL>'`
        
        **Note 1:** Make sure to enclose the URL with quotes  
        **Note 2:** That will dowload the songs in the current directory
        
        ---
        
        
        #### If you want specify the directory where the songs are downloaded
        with `-l`  
        `mix-splitter -u '<YOUTUBE_MIX_URL>' -l /directory/to/download/the_songs`
        
        ---
        #### Specify album artist
        Sometimes the mixes' description just contain the title of the songs (with no artist). This is usually an artist's album. To download these kind of mixes, you can specify the name of the artist with `-a`.
        
        `mix-splitter -u '<YOUTUBE_MIX_URL>' -a <ARTIST>`
        
        
        ## What mixes are compatible?
        Those that have the songs in the description.
        
        Sometimes the mixes don't contain the song titles in the description, but they're provided in the comments.
        
        In a case like that, copy the the part of the comment that contains the songs and paste that in a new .txt file.
        
        Separate each song with a new line (if it isn't already like that).
        
        Then execute the script with the command `-s` and append the path of that .txt file.
        
        `mix-splitter -s /file/that/contains/the_songs.txt`  
        
        **Note 3:** Since that file already contains the songs to download, the youtube mix url is no longer necessary. So just providing the path is enough.
        
        ## License
        
        This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
        
        
        
        
        
        
        
        
        
        
        
         
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
