Metadata-Version: 2.1
Name: seedance-client
Version: 1.0.0
Summary: Official Python SDK for Seedance 2.5 native 30s AI video generator with multimodal references and synced audio.
Home-page: https://seedance25.tech
Author: Seedance 2.5
Author-email: support@seedance25.tech
License: UNKNOWN
Project-URL: Homepage, https://seedance25.tech
Project-URL: Interactive Studio, https://seedance25.tech/#generator
Project-URL: Prompt Library, https://seedance25.tech/prompts
Project-URL: Repository, https://github.com/lidong-tools/website-seedance25-tech
Project-URL: Bug Tracker, https://github.com/lidong-tools/website-seedance25-tech/issues
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Multimedia :: Video
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Seedance 2.5 Python SDK

[![PyPI version](https://img.shields.io/pypi/v/seedance-client.svg)](https://pypi.org/project/seedance-client/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python Versions](https://img.shields.io/pypi/pyversions/seedance-client.svg)](https://pypi.org/project/seedance-client/)
[![Official Website](https://img.shields.io/badge/Official%20Studio-seedance25.tech-blue)](https://seedance25.tech)

Official Python SDK for **[Seedance 2.5](https://seedance25.tech)** — the native 30s AI video generation model with 50+ multimodal references and synchronized audio rendering.

> 🎬 **Online Studio & Generator**: Experience the web generator directly at **[https://seedance25.tech](https://seedance25.tech)**.

---

## ✨ Features

- **Native 30s Video Generation**: Extended clip generation with consistent physics and motion.
- **Multimodal Video Prompts**: Seamlessly blend text, image references, and audio inputs.
- **Synchronized Audio Engine**: High-fidelity sound effects and ambient audio generation.
- **Zero Third-Party Dependencies**: Pure Python standard library implementation for maximum portability.
- **Complete Type Hinting**: Comprehensive IDE autocomplete support.

---

## 📦 Installation

```bash
pip install seedance-client
```

---

## 🚀 Quick Start

### 1. Generate Video with Synced Audio

```python
from seedance_client import SeedanceClient

client = SeedanceClient()

task = client.generate_video(
    prompt="Cinematic drone sweep over Nordic fjords during sunset, crystal clear reflections and ambient wind sound",
    aspect_ratio="16:9",
    resolution="1080p",
    duration=10,
    enable_audio=True,
)

print(f"Task submitted! ID: {task.get('taskId')}")
```

### 2. Check Task Progress

```python
task_status = client.get_task(task_id="YOUR_TASK_ID")
print("Status:", task_status.get("status"))
if task_status.get("videoUrl"):
    print("Download URL:", task_status.get("videoUrl"))
```

---

## 🔗 Official Links & Resources

- **Official Web Platform**: [https://seedance25.tech](https://seedance25.tech)
- **Interactive Generator**: [https://seedance25.tech/#generator](https://seedance25.tech/#generator)
- **Prompt Library**: [https://seedance25.tech/prompts](https://seedance25.tech/prompts)
- **Repository**: [https://github.com/lidong-tools/website-seedance25-tech](https://github.com/lidong-tools/website-seedance25-tech)

---

## 📄 License

MIT © [Seedance 2.5](https://seedance25.tech)


