Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielCherian committed Jul 29, 2020
2 parents eca95c8 + acaee82 commit 5eb44cb
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,48 @@
# 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
```



0 comments on commit 5eb44cb

Please sign in to comment.