Metadata-Version: 2.1
Name: av-helper
Version: 1.0.4
Summary: An Audio-Video Helper Utility Package in Python
Home-page: https://github.com/Vibhu-Agarwal/av_helper
Author: Vibhu Agarwal
Author-email: vibhu4agarwal@gmail.com
License: GPLv3+
Keywords: audio video av moviepy
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: certifi (==2019.11.28)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: decorator (==4.4.2)
Requires-Dist: idna (==2.9)
Requires-Dist: imageio (==2.8.0)
Requires-Dist: imageio-ffmpeg (==0.4.1)
Requires-Dist: moviepy (==1.0.1)
Requires-Dist: numpy (==1.18.1)
Requires-Dist: opencv-contrib-python (==4.2.0.32)
Requires-Dist: Pillow (==7.0.0)
Requires-Dist: proglog (==0.1.9)
Requires-Dist: requests (==2.23.0)
Requires-Dist: tqdm (==4.43.0)
Requires-Dist: urllib3 (==1.25.8)

# av_helper
![Publish Python Package](https://github.com/Vibhu-Agarwal/av_helper/workflows/Publish%20Python%20Package/badge.svg)

An Audio-Video Helper Utility Package in Python

## Installation
```
$ pip3 install av-helper
```
[Visit](https://pypi.org/project/av-helper/) the PyPI page of the package.

## Usage
```python
>>> from av_helper import convert_video_to_audio
>>> audio_file_name = convert_video_to_audio('audio_file_in_video_format.mp4')

>>> from av_helper import merge_audio_video as merge_av
>>> output_video = merge_av(audio_file_name, 'video_file_name.mp4')

>>> from av_helper import save_audio_video_file as save_av
>>> save_av(output_video)
```


