Metadata-Version: 2.4
Name: seedance-ai-video
Version: 1767581.341.557
Summary: High-quality integration for https://supermaker.ai/video/seedance-ai-video/
Home-page: https://supermaker.ai/video/seedance-ai-video/
Author: SuperMaker
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# seedance-ai-video

A Python library designed to simplify interaction with the seedance-ai-video platform. This package provides convenient tools for automating video-related tasks and showcasing the platform's core functionalities.

## Installation

You can install `seedance-ai-video` using pip:
bash
pip install seedance-ai-video

## Basic Usage Examples

Here are a few examples demonstrating how to use the `seedance-ai-video` library:

**1. Generating a Simple Video Preview:**
python
from seedance_ai_video import video_generator

# Create a video preview using a sample image and text
video_generator.create_preview(
    image_path="path/to/your/image.jpg",
    text_overlay="Check out this awesome video!",
    output_path="preview.mp4"
)

print("Video preview generated successfully!")

**2. Adding Watermark to an Existing Video:**
python
from seedance_ai_video import video_editor

# Add a watermark to an existing video
video_editor.add_watermark(
    video_path="path/to/your/video.mp4",
    watermark_path="path/to/your/watermark.png",
    output_path="watermarked_video.mp4",
    position="top_right" # Can be top_left, top_right, bottom_left, bottom_right
)

print("Watermark added to the video!")

**3. Creating a Slideshow from Images:**
python
from seedance_ai_video import slideshow_generator

# Create a slideshow from a list of images
image_list = [
    "path/to/image1.jpg",
    "path/to/image2.png",
    "path/to/image3.jpeg"
]

slideshow_generator.create_slideshow(
    image_paths=image_list,
    output_path="slideshow.mp4",
    transition_duration=1.5, # Duration of each transition in seconds
    slide_duration=5 # Duration of each slide in seconds
)

print("Slideshow created successfully!")

**4. Extracting Audio from a Video:**
python
from seedance_ai_video import audio_extractor

# Extract audio from a video file
audio_extractor.extract_audio(
    video_path="path/to/your/video.mp4",
    output_path="audio.mp3"
)

print("Audio extracted successfully!")

**5. Converting Video Format:**
python
from seedance_ai_video import video_converter

# Convert a video from one format to another
video_converter.convert_format(
    input_path="path/to/your/video.avi",
    output_path="converted_video.mp4",
    target_format="mp4" # Available formats depend on underlying libraries
)

print("Video format converted successfully!")

## Feature List

*   **Video Preview Generation:** Quickly generate previews from images with text overlays.
*   **Watermark Addition:** Easily add watermarks to existing video files.
*   **Slideshow Creation:** Create engaging slideshows from a list of images.
*   **Audio Extraction:** Extract audio tracks from video files.
*   **Video Format Conversion:** Convert videos between various formats.
*   **Simple API:** Provides a user-friendly and intuitive API for easy integration.
*   **Cross-Platform Compatibility:** Designed to work across different operating systems.

## License

MIT License

This project is a gateway to the seedance-ai-video ecosystem. For advanced features and full capabilities, please visit: https://supermaker.ai/video/seedance-ai-video/
