Skip to content

Commit ffce086

Browse files
committed
Add sample files for playCombined.ino
1 parent c824e95 commit ffce086

File tree

5 files changed

+1
-1
lines changed

5 files changed

+1
-1
lines changed

assets/exampleContent/ZH/0A.wav

32.9 KB
Binary file not shown.

assets/exampleContent/ZH/0B.wav

35.5 KB
Binary file not shown.

assets/exampleContent/ZH/0C.wav

37.2 KB
Binary file not shown.

assets/exampleContent/ZH/0D.wav

35.5 KB
Binary file not shown.

assets/exampleContent/createContent.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $SpeechSynthesizer.SelectVoice('Microsoft Zira Desktop')
44
$streamFormat = [System.Speech.AudioFormat.SpeechAudioFormatInfo]::new(16000,[System.Speech.AudioFormat.AudioBitsPerSample]::Sixteen,[System.Speech.AudioFormat.AudioChannel]::Mono)
55
New-Item -Name "ZH" -ItemType Directory -ErrorAction SilentlyContinue
66

7-
for ($i=0; $i -le 10; $i++) {
7+
for ($i=0; $i -le 24; $i++) {
88
$SpeechSynthesizer.SetOutputToWaveFile((get-location).Path+'\ZH\'+($i).ToString('00') +'.wav',$streamFormat)
99
$SpeechSynthesizer.Speak($i)
1010
}

0 commit comments

Comments
 (0)