🎙️ Introducing Speaker Separation!

Exciting news—our API now features Speaker Separation! Isolate individual speakers from mono audio files, transforming them into stereo recordings with distinct channels. Dive deeper into dialogues with precision analysis. Check out how simple it is to use:

import nijtaio

# Set up API parameters
params = {  
    'separate': True,  
    # Add other anonymization parameters here  
}
# [...]
# Send audio for processing
response = nijtaio.send_request(["path/to/audio.wav"], params)
# [...]

Check the Speaker Separation section in the documentation for the complete sample code.