Metadata-Version: 2.1
Name: video_upscaler
Version: 0.2.0
Summary: A package for resizing videos using Automatic1111 web UI
Home-page: https://github.com/Yalton/video_upscaler
Author: Dalton Bailey
Author-email: drbailey117@example.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: ffmpeg-python
Requires-Dist: Pillow
Requires-Dist: webuiapi

# Stable Diffusion Video Upscaler

Stable Diffusion Video Upscaler is a Python package that allows you to upscale videos using the Automatic1111 web UI. It provides a convenient way to upscale video resolution while maintaining the original framerate and audio.

## Features

- Upscale videos to a specified width and height
- Maintain the original framerate of the video
- Preserve the audio from the original video
- Utilize the Automatic1111 web UI for high-quality upscaling

## Requirements

- Python 3.6 or higher
- FFmpeg installed and available in the system PATH
- Automatic1111 web UI running with the `--api` flag

## Installation

1. Make sure you have FFmpeg installed on your system. You can download it from the official website: [https://ffmpeg.org/](https://ffmpeg.org/)

2. Set up the Automatic1111 web UI:
   - Clone the repository: [https://github.com/AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
   - Follow the installation instructions provided in the repository's README.
   - Launch the web UI with the `--api` flag to enable the API access:
     ```
     python launch.py --api
     ```

3. Install the Video Upscaler package using pip:
   ```
   pip install video-upscaler
   ```

## Usage

1. Import the `VideoUpscaler` class from the package:
   ```python
   from video_upscaler import VideoUpscaler
   ```

2. Create an instance of the `VideoUpscaler` class:
   ```python
   upscaler = VideoUpscaler(host='localhost', port=7860)
   ```
   - `host`: The hostname or IP address where the Automatic1111 web UI is running (default: `'localhost'`).
   - `port`: The port number on which the Automatic1111 web UI is running (default: `7860`).

3. Use the `upscale_video` method to upscale a video:
   ```python
   upscaler.upscale_video(input_video, output_video, output_width, output_height)
   ```
   - `input_video`: The path to the input video file.
   - `output_video`: The path where the upscaled video will be saved.
   - `output_width`: The desired width of the upscaled video.
   - `output_height`: The desired height of the upscaled video.

   Example:
   ```python
   upscaler.upscale_video("input_video.mp4", "output_video.mp4", 1920, 1080)
   ```

4. The upscaled video will be saved to the specified output path.

5. This will take some time depending on the machine Running Automatic111 along with the length and framerate of your input video

## Example

```python
from video_upscaler import VideoUpscaler

# Create an instance of VideoUpscaler
upscaler = VideoUpscaler(host='localhost', port=7860)

# Upscale a video
upscaler.upscale_video("input_video.mp4", "output_video.mp4", 1920, 1080)
```

## Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.

## Acknowledgments

- [Automatic1111 web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) for providing the upscaling functionality.
- [FFmpeg](https://ffmpeg.org/) for video processing capabilities.
