Spaces:
Sleeping
Sleeping
File size: 2,983 Bytes
2f2406a |
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
#!/usr/bin/env python
# coding: utf-8
# Based on Microsoft Azure sample code found here: https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/samples/batch-synthesis/python/synthesis.py
# Original License Info Below:
# Copyright (c) Microsoft. All rights reserved.
# Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
#--------------------------------------------------------------------------------------------------------
import os
import json
import logging
import sys
import requests
logging.basicConfig(stream=sys.stdout, level=logging.ERROR,
format="[%(asctime)s] %(message)s", datefmt="%m/%d/%Y %I:%M:%S %p %Z")
logger = logging.getLogger(__name__)
# Your Speech resource key and region
# This example requires environment variables named "SPEECH_KEY" and "SPEECH_REGION"
AZURE_SPEECH_KEY = os.environ.get('SPEECH_KEY')
AZURE_SPEECH_REGION = os.environ.get('SPEECH_REGION')
NAME = "Simple synthesis"
DESCRIPTION = "Simple synthesis description"
# The service host suffix.
# For azure.cn the host suffix is "customvoice.api.speech.azure.cn"
SERVICE_HOST = "customvoice.api.speech.microsoft.com"
def submit_synthesis(payload):
url = f'https://{AZURE_SPEECH_REGION}.{SERVICE_HOST}/api/texttospeech/3.1-preview1/batchsynthesis'
header = {
'Ocp-Apim-Subscription-Key': AZURE_SPEECH_KEY,
'Content-Type': 'application/json'
}
response = requests.post(url, json.dumps(payload), headers=header)
if response.status_code < 400:
logger.info('Batch synthesis job submitted successfully')
logger.info(f'Job ID: {response.json()["id"]}')
return response.json()["id"]
else:
logger.error(f'Failed to submit batch synthesis job: {response.text}')
def get_synthesis(job_id):
url = f'https://{AZURE_SPEECH_REGION}.{SERVICE_HOST}/api/texttospeech/3.1-preview1/batchsynthesis/{job_id}'
header = {
'Ocp-Apim-Subscription-Key': AZURE_SPEECH_KEY
}
response = requests.get(url, headers=header)
if response.status_code < 400:
logger.info('Get batch synthesis job successfully')
logger.info(response.json())
#return response.json()['status']
return response
else:
logger.error(f'Failed to get batch synthesis job: {response.text}')
def list_synthesis_jobs(skip: int = 0, top: int = 100):
"""List all batch synthesis jobs in the subscription"""
url = f'https://{AZURE_SPEECH_REGION}.{SERVICE_HOST}/api/texttospeech/3.1-preview1/batchsynthesis?skip={skip}&top={top}'
header = {
'Ocp-Apim-Subscription-Key': AZURE_SPEECH_KEY
}
response = requests.get(url, headers=header)
if response.status_code < 400:
logger.info(f'List batch synthesis jobs successfully, got {len(response.json()["values"])} jobs')
logger.info(response.json())
else:
logger.error(f'Failed to list batch synthesis jobs: {response.text}')
|