Skip to content

Commit

Permalink
Update region tags to standard (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
alixhami authored Aug 21, 2018
1 parent b68edf0 commit e2bc09d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions texttospeech/audioProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function synthesizeText(
languageCode,
ssmlGender
) {
//[START tts_synthesize_text_with_audio_profile]
//[START tts_synthesize_text_audio_profile_beta]

// Imports the Google Cloud client library
const speech = require('@google-cloud/text-to-speech');
Expand Down Expand Up @@ -51,7 +51,7 @@ function synthesizeText(
console.log(`Audio content written to file: ${outputFile}`);
});
});
// [END tts_synthesize_text_with_audio_profile]
// [END tts_synthesize_text_audio_profile_beta]
}

require(`yargs`)
Expand Down
4 changes: 2 additions & 2 deletions texttospeech/quickstart.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

'use strict';

// [START texttospeech_quickstart]
// [START tts_quickstart]
const fs = require('fs');

// Imports the Google Cloud client library
Expand Down Expand Up @@ -52,4 +52,4 @@ client.synthesizeSpeech(request, (err, response) => {
console.log('Audio content written to file: output.mp3');
});
});
// [END texttospeech_quickstart]
// [END tts_quickstart]

0 comments on commit e2bc09d

Please sign in to comment.