Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Text-to-Speech Code Samples for Listing Voices and Synthesizing Speech #4

Merged
merged 32 commits into from
Apr 27, 2018
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
880cb25
Sample: List available voices [tts_list_voices]
Mar 22, 2018
fbe2481
Samples: Synthesize Speech (text, ssml, string, local file)
Mar 23, 2018
34dce9b
Merge branch 'master' into samples
alexander-fenster Mar 23, 2018
562a440
Samples: extract speech synthesis samples
Mar 23, 2018
5131b3a
s/var/const/g
Mar 23, 2018
4b01e93
Samples: add quickstart
Mar 23, 2018
d33b076
Samples: change printed output after writing mp3 files
Mar 23, 2018
d3ac34d
Add samples to .cloud-repo-tools
Mar 23, 2018
e9615a1
Merge branch 'samples' of github.com:googleapis/nodejs-text-to-speech…
Mar 23, 2018
6eb1ea6
Samples: update with prettier
Mar 23, 2018
0db5e36
$ npm run generate-scaffolding
Mar 23, 2018
964afec
Samples: fix lint error for unused closure arg var
Mar 23, 2018
d43ad19
Samples: use simple SSML examples, eg. <speak>Hello there.</speak>
Mar 23, 2018
b2ab081
Update links and whatnot
Mar 24, 2018
f47d62e
making lint and samples work in circle
alexander-fenster Mar 24, 2018
6edf91d
Regen README
Mar 24, 2018
11fa592
samples package.json
alexander-fenster Mar 24, 2018
c8c52e2
Merge branch 'samples' of github.com:googleapis/nodejs-text-to-speech…
alexander-fenster Mar 24, 2018
e6fe3f6
Update synthesize.js sample CLI help to show existing TXT and SSML re…
Mar 24, 2018
9e5daf1
Merge branch 'samples' of github.com:googleapis/nodejs-text-to-speech…
Mar 24, 2018
d18510c
s/SSML Gender/SSML Voice Gender/g
Mar 24, 2018
e235bf3
Samples: update writing bytes to mp3 files to be async
Mar 24, 2018
ed07e6b
Update quickstart to write mp3 file asynchronously
Mar 24, 2018
fced808
Samples: Use async I/O when writing MP3 files
Mar 24, 2018
fea561e
Samples - updated with prettier
Mar 24, 2018
811f1ca
Samples: update Quickstart to use async file I/O when writing MP3 file
Mar 24, 2018
01df278
Merge branch 'master' into samples
alexander-fenster Mar 26, 2018
469b101
Upgrade repo-tools to 2.2.6 and run scaffolding
Mar 28, 2018
3cc9711
Merge branch 'samples' of github.com:googleapis/nodejs-text-to-speech…
Mar 28, 2018
754f4ec
Merge branch 'master' into samples
Mar 28, 2018
e383927
Fix typo in README
Apr 27, 2018
cb32701
make lint pass
alexander-fenster Apr 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Samples: fix lint error for unused closure arg var
  • Loading branch information
Rebecca Taylor committed Mar 23, 2018
commit 964afecd58f7e01559f2d529db64fa5931576718
2 changes: 1 addition & 1 deletion samples/listVoices.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function listVoices() {

require(`yargs`) // eslint-disable-line
.demand(1)
.command(`list-voices`, `List supported voices.`, {}, opts => listVoices())
.command(`list-voices`, `List supported voices.`, {}, () => listVoices())
.example(`node $0 list-voices`)
.wrap(120)
.recommendCommands()
Expand Down