Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Google Vision
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun

Mastercard
MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(DataFlex) IBM Cloud - Text to Speech - Synthesize Audio (GET)

Synthesizes text to audio that is spoken in the specified voice.

For more information, see https://cloud.ibm.com/apidocs/text-to-speech#synthesize-audio-get

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    String sMyBaseUrl
    Handle hoSbUrl
    Integer iNumReplaced
    String sTextToSynthesize
    Variant vBdResponseBody
    Handle hoBdResponseBody
    Integer iRespStatusCode
    String sTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Set ComLogin Of hoHttp To "apikey"
    Set ComPassword Of hoHttp To "my_apikey"
    Set ComBasicAuth Of hoHttp To True

    // Use your base URL shown in the credentials web page (below your apikey)
    Move "https://api.us-south.text-to-speech.watson.cloud.ibm.com/instances/31941e96-7b89-4d56-8993-9cd8f18ec2d8" To sMyBaseUrl

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbUrl
    If (Not(IsComObjectCreated(hoSbUrl))) Begin
        Send CreateComObject of hoSbUrl
    End
    Get ComAppend Of hoSbUrl sMyBaseUrl To iSuccess
    Get ComAppend Of hoSbUrl "/v1/synthesize?accept=ACCEPT_TYPE&voice=CHOSEN_VOICE&text=TEXT_TO_SYNTHESIZE" To iSuccess

    // Choose "audio/wav" for the output file type.
    Get ComUrlEncode Of hoHttp "audio/wav" To sTemp1
    Get ComReplace Of hoSbUrl "ACCEPT_TYPE" sTemp1 To iNumReplaced
    // See the choices for voices at https://cloud.ibm.com/apidocs/text-to-speech#synthesize-audio-get
    Get ComReplace Of hoSbUrl "CHOSEN_VOICE" "en-US_MichaelVoice" To iNumReplaced
    Move "When life gives you lemons, order the lobster tail." To sTextToSynthesize
    Get ComUrlEncode Of hoHttp sTextToSynthesize To sTemp1
    Get ComReplace Of hoSbUrl "TEXT_TO_SYNTHESIZE" sTemp1 To iNumReplaced

    // Send the GET to synthesize the voice.
    // The response file will be contained in bdResponseBody
    Get Create (RefClass(cComChilkatBinData)) To hoBdResponseBody
    If (Not(IsComObjectCreated(hoBdResponseBody))) Begin
        Send CreateComObject of hoBdResponseBody
    End
    Get ComGetAsString Of hoSbUrl To sTemp1
    Get pvComObject of hoBdResponseBody to vBdResponseBody
    Get ComQuickGetBd Of hoHttp sTemp1 vBdResponseBody To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "response status code = " iRespStatusCode

    If (iRespStatusCode = 200) Begin
        Get ComWriteFile Of hoBdResponseBody "qa_output/lobster.wav" To iSuccess
        Showln "Success!"
    End
    Else Begin
        Get ComGetString Of hoBdResponseBody "utf-8" To sTemp1
        Showln sTemp1
    End



End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.