AutoContent API
  • Getting started
  • 🔮API Docs
    • 🪄Create Content
    • ♻️Modify Podcast
    • 🪄Create Podcast with custom voices
    • 🪄Create Podcast with a custom script
    • 📽️Create Short
    • 🗣️Clone Voice
    • 🧑‍🤝‍🧑Get Voices
    • 📃Get Transcript
    • 🧑‍🤝‍🧑Separate Speakers Voices
    • ⚙️Get Status
    • 📖List content
    • ⚡Webhook
    • 📈Usage
    • Error codes
  • 🪙Credits
  • 📖Code Samples
    • NodeJS
    • Python
    • C#
    • PHP
  • 🌎Languages
  • 🗣️Voices
  • ❓FAQ
  • 🔌Open API
  • ⚒️Test it
  • 💳Billing
  • Support
Powered by GitBook
On this page
  • POST
  • Response
  1. API Docs

Separate Speakers Voices

Given a podcast url, this request will return individual audio files for all the speakers

POST

https://api.autocontentapi.com/content/SeparateSpeakersAudio

{
  "audioUrl": "string",
  "callbackData": "string"
}

Field
Possible Values

audioUrl

Link to an .mp3 or .wav file with the audio file that you would like to process. Required.

callbackData

Sample request

curl -X 'POST'
  'https://api.autocontentapi.com/Content/SeparateSpeakersAudio'
  -H 'accept: text/plain'
  -H 'Authorization: Bearer YOUR_TOKEN_HERE'
  -H 'Content-Type: application/json'
  -d '{
  "audioUrl": "https://your_podcast.wav"
}'

Response

{
    "request_id": "string",
    "error_message": "string"
}
Field
Possible Values

request_id

Id of the request.

resource.type

Error message when the request is not successful.

PreviousGet TranscriptNextGet Status

Last updated 2 months ago

Optional. Contains any custom data that you want to receive with the response or

🔮
🧑‍🤝‍🧑
Get Status
via webhook