Metadata-Version: 2.1
Name: audio-to-animation-video
Version: 0.1.0
Summary: animation library
Home-page: https://ucmate.com/
Author: Dhananjay Kumar Roy
Author-email: dkrextra@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Medium multiply
A small demo library for a Medium publication about publishing libraries.

### Installation
```
pip install audio-to-animation-video
```

### Get started
How to multiply one number by another with this lib:

```Python
# Example usage
frame_sz = (720, 500)
images_directory = 'image/girl1'
image_filename = 'girl'  # file should be girl_A.png or jpg
audio_file = "audio/audio1.mp3"
output_video_path = 'video.mp4'
output_path = 'video_with_audio3.mp4'
background = (255,255,255)  # "image/bg/bg1.jpg" #(255, 255, 255)


generator = AudioLipSyncVideo(images_directory, image_filename, audio_file, output_video_path, output_path, frame_sz, background)
generator.generate_video()
```

