Cleanup in tools/: Remove unused VB scripts and fix properties.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17421 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e15adcd3cb
commit
254566b113
10 changed files with 170 additions and 285 deletions
|
@ -5,7 +5,7 @@
|
|||
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
# \/ \/ \/ \/ \/
|
||||
# $Id: configure 13215 2007-04-20 11:58:39Z bagder $
|
||||
# $Id$
|
||||
#
|
||||
# Purpose: extract and gather info from a build and put that in a standard
|
||||
# way in the output file. Meant to be put in rockbox zip package to help and
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
'***************************************************************************
|
||||
' __________ __ ___.
|
||||
' Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
' Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
' Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
' Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
' \/ \/ \/ \/ \/
|
||||
' $Id: sapi5_init_tts.vbs$
|
||||
'
|
||||
' Copyright (C) 2007 Steve Bavin, Jens Arnold, Mesar Hameed
|
||||
'
|
||||
' All files in this archive are subject to the GNU General Public License.
|
||||
' See the file COPYING in the source tree root for full license agreement.
|
||||
'
|
||||
' This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
' KIND, either express or implied.
|
||||
'
|
||||
'***************************************************************************
|
||||
Dim oSpVoice, sVoice
|
||||
|
||||
Set oSpVoice = CreateObject("SAPI.SpVoice")
|
||||
If Err.Number <> 0 Then
|
||||
WScript.Echo "Error - could not get SpVoice object. " & _
|
||||
"SAPI 5 not installed?"
|
||||
Err.Clear
|
||||
WScript.Quit 1
|
||||
End If
|
||||
|
||||
WScript.Quit 0
|
|
@ -1,18 +0,0 @@
|
|||
'***************************************************************************
|
||||
' __________ __ ___.
|
||||
' Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
' Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
' Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
' Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
' \/ \/ \/ \/ \/
|
||||
' $Id: sapi5_stop_tts.vbs$
|
||||
'
|
||||
' Copyright (C) 2007 Steve Bavin, Jens Arnold, Mesar Hameed
|
||||
'
|
||||
' All files in this archive are subject to the GNU General Public License.
|
||||
' See the file COPYING in the source tree root for full license agreement.
|
||||
'
|
||||
' This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
' KIND, either express or implied.
|
||||
'
|
||||
'***************************************************************************
|
|
@ -1,68 +0,0 @@
|
|||
'***************************************************************************
|
||||
' __________ __ ___.
|
||||
' Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
' Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
' Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
' Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
' \/ \/ \/ \/ \/
|
||||
' $Id: sapi5_voice.vbs$
|
||||
'
|
||||
' Copyright (C) 2007 Steve Bavin, Jens Arnold, Mesar Hameed
|
||||
'
|
||||
' All files in this archive are subject to the GNU General Public License.
|
||||
' See the file COPYING in the source tree root for full license agreement.
|
||||
'
|
||||
' This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
' KIND, either express or implied.
|
||||
'
|
||||
'***************************************************************************
|
||||
' Purpose: Make a voice clip file for the given text
|
||||
' Parameters: $0 - text to convert
|
||||
' $1 - file to write spoken text into (WAV format)
|
||||
|
||||
|
||||
|
||||
'To be done:
|
||||
' - Somehow, persist oSpVoice across multiple clips to increase speed
|
||||
' - Allow user to override voice, speed and/or format (currently uses Control Panel defaults for voice/speed)
|
||||
' - Voice specific replacements/corrections for pronounciation (this should be at a higher level really)
|
||||
|
||||
Const SSFMCreateForWrite = 3
|
||||
|
||||
Const SPSF_8kHz16BitMono = 6
|
||||
Const SPSF_11kHz16BitMono = 10
|
||||
Const SPSF_12kHz16BitMono = 14
|
||||
Const SPSF_16kHz16BitMono = 18
|
||||
Const SPSF_22kHz16BitMono = 22
|
||||
Const SPSF_24kHz16BitMono = 26
|
||||
Const SPSF_32kHz16BitMono = 30
|
||||
Const SPSF_44kHz16BitMono = 34
|
||||
Const SPSF_48kHz16BitMono = 38
|
||||
|
||||
Dim oSpVoice, oSpFS, nAudioFormat, sText, sOutputFile
|
||||
|
||||
sText = Replace(WScript.Arguments(0), "\", "")
|
||||
sOutputFile = WScript.Arguments(1)
|
||||
nAudioFormat = SPSF_22kHz16BitMono 'Audio format to use, recommended settings:
|
||||
'- for AT&T natural voices, use SPSF_32kHz16BitMono
|
||||
'- for MS voices, use SPSF_22kHz16BitMono
|
||||
|
||||
Set oSpVoice = CreateObject("SAPI.SpVoice")
|
||||
If Err.Number <> 0 Then
|
||||
WScript.Echo "Error - could not get SpVoice object. " & _
|
||||
"SAPI 5 not installed?"
|
||||
Err.Clear
|
||||
WScript.Quit 1
|
||||
End If
|
||||
|
||||
Set oSpFS = CreateObject("SAPI.SpFileStream")
|
||||
oSpFS.Format.Type = nAudioFormat
|
||||
oSpFS.Open sOutputFile, SSFMCreateForWrite, False
|
||||
Set oSpVoice.AudioOutputStream = oSpFS
|
||||
oSpVoice.Speak sText
|
||||
oSpFS.Close
|
||||
|
||||
Set oSpFS = Nothing
|
||||
Set oSpVoice = Nothing
|
||||
Set oArgs = Nothing
|
||||
WScript.Quit 0
|
0
tools/sapi_voice.vbs
Executable file → Normal file
0
tools/sapi_voice.vbs
Executable file → Normal file
|
@ -5,7 +5,7 @@
|
|||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id: voicefont.h 15675 2007-11-18 22:01:31Z amiconn $
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2004 by Jörg Hohensohn
|
||||
*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id: wavtrim.h 14229 2007-08-07 10:21:03Z linus $
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2004 by Jörg Hohensohn
|
||||
*
|
||||
|
|
0
tools/wn2rdf.pl
Normal file → Executable file
0
tools/wn2rdf.pl
Normal file → Executable file
Loading…
Reference in a new issue