Metadata-Version: 2.4
Name: broadcaster-studio
Version: 0.1.10
Summary: FFmpeg & Pillow based Ultra-fast Broadcast Studio Overlay Tool
Author: KwonPop
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: Pillow>=9.0.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🎬 Broadcaster Studio (broadcaster-studio)

**Broadcaster Studio**는 Python과 FFmpeg를 활용하여 고화질 뉴스 방송 자막, 긴급 속보 연출, 방송 시계 등을 초고속으로 렌더링하는 오픈소스 라이브러리입니다.

---

## 🚀 v0.1.9 신기능 (New Features)
- 🚨 **`add_breaking_news_flash()`**: 화면 화면 번쩍임 + 긴급 속보 중앙 타이틀 효과 추가
- 🏷️ **`add_channel_logo()`**: 방송사 로고 / 워터마크 오버레이 지원
- 🔗 **메서드 체이닝 (Method Chaining)** 완벽 지원

---

## 📦 설치 (Installation)

```bash
pip install broadcaster-studio
```

---

## 💡 v0.1.9 사용 예시 (Usage Example)

```python
import os
from broadcaster import BroadcasterStudio

input_video = "test.mp4"

if os.path.exists(input_video):
    studio = BroadcasterStudio(input_video)

    (
        studio
        .add_breaking_news_flash("[속보] BroadcasterStudio v0.1.9 배포!") # 속보 번쩍 효과
        .add_broadcast_clock(True)                                        # 우측 하단 방송 시계
        .add_news_ticker(
            category="[단독]", 
            text="권팝(12세) 개발자, 속보 플래시 효과 및 체이닝 메서드 공식 탑재!"
        )
    )

    studio.render("output_news.mp4")
```

---

## 📄 라이선스 (License)
MIT License
