#ai #api #lib #animation #text-to-video

d-id

A library for interacting with D-ID's API

1 unstable release

0.1.0 Nov 17, 2023

#267 in Video

MIT license

265KB
1.5K SLoC

A lib crate for interacting with D-ID's Api

API Support
Live Streaming

⚙️ Requirements

  • Set API key as environment variable D_ID_API_KEY

🗣️ Usage

Talks

  • Create talking head videos from just text or audio
use d_id::{get_talk, TalkRequestBodyBuilder, upload_image_by_file, Result};

#[tokio::main]
async fn main() -> Result<()> {
    let image = upload_image_by_file("img_test.jpg").await?;

    let req= TalkRequestBodyBuilder::with_text_script()
        .source_url(&image.url)?
        .input("Hello, world!")?
        .build()?;

    let new_talk = req.create_talk().await?;

    let talk = get_talk(&new_talk.id).await?;

    println!("{:#?}", talk);

    Ok(())

}

Dependencies

~32–50MB
~1M SLoC