File: sample_transcribe_from_url_async.py

package info (click to toggle)
python-azure 20251202%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 786,344 kB
  • sloc: python: 6,510,493; ansic: 804; javascript: 287; sh: 204; makefile: 198; xml: 109
file content (59 lines) | stat: -rw-r--r-- 2,210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------

"""
FILE: sample_transcribe_from_url_async.py

DESCRIPTION:
    This sample demonstrates how to asynchronously transcribe audio from a publicly
    accessible URL using the Azure AI Transcription client.

USAGE:
    python sample_transcribe_from_url_async.py

    Set the environment variables with your own values before running the sample:
    1) AZURE_SPEECH_ENDPOINT - the endpoint to your Speech resource.
    2) AZURE_SPEECH_API_KEY - your Speech API key.
"""

import asyncio
import os


async def sample_transcribe_from_url_async():
    # [START transcribe_from_url_async]
    from azure.core.credentials import AzureKeyCredential
    from azure.ai.transcription.aio import TranscriptionClient
    from azure.ai.transcription.models import TranscriptionOptions

    # Get configuration from environment variables
    endpoint = os.environ["AZURE_SPEECH_ENDPOINT"]
    api_key = os.environ["AZURE_SPEECH_API_KEY"]

    # Create the transcription client
    async with TranscriptionClient(endpoint=endpoint, credential=AzureKeyCredential(api_key)) as client:
        # URL to your audio file (must be publicly accessible)
        audio_url = "https://example.com/path/to/audio.wav"

        # Configure transcription options
        options = TranscriptionOptions(locales=["en-US"])

        # Transcribe the audio from URL
        # The service will access and transcribe the audio directly from the URL
        result = await client.transcribe_from_url(audio_url, options=options)

        # Print the transcription result
        print(f"Transcription: {result.combined_phrases[0].text}")

        # Print duration information
        if result.duration_milliseconds:
            print(f"Audio duration: {result.duration_milliseconds / 1000:.2f} seconds")
    # [END transcribe_from_url_async]


if __name__ == "__main__":
    asyncio.run(sample_transcribe_from_url_async())