Metadata-Version: 2.1
Name: video-images-creator
Version: 0.1.46
Summary: Create videos from images using the 'video_images_creator' package.
Home-page: 
Author: Nikhil Sharma
Author-email: nikhilsharma972@gmail.com
License: BSD 2-clause
Classifier: Development Status :: 1 - Planning
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: pillow


# Video Images Creator

This package creates a video with animation for a set of Images urls(feature screens) along with there titles.




## Steps to generate your first video

#### Step 1:

Install the package using pip: 

pip install video_images_creator


#### Step 2

Create a python file Myfile.py with below code 

```
from video_images_creator import video_creator

feature_names = ["Splash Screen", "Search"] 
image_urls = ["https://buildernowassets.azureedge.net/builder-now-beta/uploads/staging/feature_figma/image/485/b478c7bd-84f8-48f2-81c7-3b9a5dbe7960.png", "https://buildernowassets.azureedge.net/builder-now-beta/uploads/staging/feature_figma/image/485/b478c7bd-84f8-48f2-81c7-3b9a5dbe7960.png"]

video_creator.build(image_urls, feature_names)
```

#You can customize the images and feature names

#### Step 3

Run your Python script to create the video inside the 'outputs' folder
