Metadata-Version: 2.1
Name: audio-cat
Version: 0.0.2
Summary: audio splitter and labeler
Home-page: https://github.com/nathanielCherian/audio-cat
Author: Nathaniel Cherian
Author-email: nathaniel@sylica.com
License: MIT
Download-URL: https://github.com/nathanielCherian/audio-cat/archive/v0.0.2.tar.gz
Description: # audio-cat
        high-level api to split and categorize audio samples, intended for data collection
        
        Installation
        ------------
        ```
        pip install audio-cat
        ```
        or
        ```
        git clone https://github.com/nathanielCherian/audio-cat.git
        pip install -e audio-cat
        ```
        audio-cat implements ffmpeg to proccess download it [here](https://www.ffmpeg.org/download.html) and add it to your path (from enviornment variables)
        
        CLI Usage
        ---------
        audio-cat can be used by command line for quick and easy sound wrangling
        
        ```
        $ audio-cat [command] --optionals
        ```
        
        **Download** and chop sound from a youtube video
        ```
        $ audio-cat download [URL] [TITLE]
        
        URL       video url
        TITLE     name to save audio
        
        --des     destination default=audio
        --split   split interval default=2500 (set -1 for download only)
        --blurb   full audio storage default=FULL_AUDIO
        --dataset create dataset for samples
        ```
        
        **Create Dataset** from chopped samples
        ```
        $ audio-cat dataset [PATH] [TITLE]
        
        PATH      path to directory containing segments
        TITLE     desired title of dataset
        
        --des     destination default=datasets
        ```
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
