Metadata-Version: 2.1
Name: cambai
Version: 0.0.1
Summary: Camb AI API Python Library
Home-page: https://github.com/cr2007/cambai
Author: Chandrashekhar R
Author-email: hi.cskhere@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pydantic (>=2.7.1,<3.0.0)
Requires-Dist: pytest (>=8.2.1,<9.0.0)
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
Requires-Dist: requests (>=2.32.2,<3.0.0)
Requires-Dist: rich (>=13.7.1,<14.0.0)
Project-URL: Repository, https://github.com/cr2007/cambai
Description-Content-Type: text/markdown

# Camb AI API Wrapper

This is a Python wrapper for the CambAI API. It is designed to make it easy to interact with the CambAI API from Python.

> [!IMPORTANT]
> This library is still is still in active development.
> There will still be some fixes and improvements to be made.

## Installation

> [!WARNING]
> `pip install` has not been setup just yet. Will be updated once ready

~~To install the CambAI API Wrapper, you can use `pip` to install:~~

```bash
pip install camb-ai-pip
```

# To Do

- [X] Dubbing
- [X] Get Source/Target Langauges
- [X] Get Dubbing Status
- [X] Get Dubbed Run Details
- [X] TTS
- [ ] Testing

## Usage

### TTS

```python
from cambai import CambAI, Gender
from dotenv import load_dotenv

load_dotenv()

def main():
    client = CambAI()
    print(client.get_all_voices())

    client.tts(
        text="Hello, World!",
        language=1,
        gender=Gender.MALE,
        age=25,
        voice_id=<enter-voice-id>,
        debug=True,
        polling_interval=3
    )

if __name__ == "__main__":
    main()
```

Output:
```
[
    {'id': 8913, 'voice_name': 'Monaco'},
    {'id': 8914, 'voice_name': 'Billie'},
    {'id': 8915, 'voice_name': 'Noor'},
    {'id': 8916, 'voice_name': 'Logan'}
]
Starting TTS process
TTS Task Started: {'task_id': 'c8b8e3cd-ad17-4458-83ad-349432da117b'}
TTS Status: PENDING, Run ID: None
Sleeping for 3 seconds
TTS Status: PENDING, Run ID: None
Sleeping for 3 seconds
TTS Status: PENDING, Run ID: None
Sleeping for 3 seconds
TTS Status: SUCCESS, Run ID: 11768
File directory does not exist. Creating directory...
TTS audio written to tts_stream_11768.wav
```

### Dubbing

```python
from cambai import CambAI
from dotenv import load_dotenv
from rich import print

load_dotenv()

def main():
    print("Starting...")
    client = CambAI()

    ## Dubbing example

    # You can get the list of source and target languages by calling the 'get_languages' method
    client.get_languages("source", write_to_file=True)

    print("Sending URL")
    values = client.dub(
        video_url="", # Insert any public accessible URL here (e.g. YouTube, Vimeo, etc.)
        source_language=1,  # English (United States)
        target_language=76, # French (France)
        debug=True,         # Set to False to not view the debug print statements
        polling_interval=10 # Set the interval to check the status of the dubbing task
    )

    print(f"Output Video URL: {values["video_url"]}")
    print(f"Output Audio URL: {values["audio_url"]}")

if __name__ == "__main__":
    main()
```

