A multi-audio :musical_note: converter CLI that makes some bitful use of ffmeg in media format conversion
audioConvertor is a multifile media format convertor command line tool. It allows conversion of files to various media types, the most emphasised on, being from video to audio.
The tool is a guide detailed out on @mugoh.ks/python-click-building-your-first-command-line-interface-application-6947d5319ef7">this blog post
2. Change to the repo directory
```shell
$ cd audioConvertor
Optionally install ffmpeg. You can skip this step.
Running the application for the first time will prompt for the installation.
$ apt-get install ffmpeg
$ apt install pipenv
$ pipenv install
$ pipenv shell
The usage options are accesible on the help menu. This can be displayed by running:
$ python convertor/cli.py --help
Required Options
--input_file -i
Path to video file
```shell
$ python convertor/cli.py -i /path/to/video/file/ -o /save/path/
```
Convert mulitple video files from multiple directories
$ python convert -i /path/to/root/directory/ -o /path/to/save/output/ --recursive
$ pipenv shell
$ pytest