• Converts input text into a blob and corresponding audio element which are both returned. The blob can be used for the raw audio data The audio element can play the audio using Element.play() and Element.pause()

    Parameters

    • args: any

    Returns Promise<{
        audio_element: any;
        blob: any;
    }>