Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch-contrib
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch-contrib
Commits
2fed7d23
提交
2fed7d23
authored
5月 03, 2011
作者:
Chad Phillips
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add a demos profile, and seed it with the speech to text demo.
上级
13bec74c
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
85 行增加
和
0 行删除
+85
-0
conf.lua
hunmonk/jester/profiles/demos/conf.lua
+45
-0
speech_to_text.lua
hunmonk/jester/profiles/demos/sequences/speech_to_text.lua
+40
-0
没有找到文件。
hunmonk/jester/profiles/demos/conf.lua
0 → 100644
浏览文件 @
2fed7d23
--[[
Profile configuration file. All variables put in here will be processed once
during the jester bootstrap.
If you have a variable foo that you want to have a value of "bar", do:
foo = "bar"
Array/record syntax is like this:
foo = { bar = "baz", bing = "bong" }
Variables from the main configuration may be used in values, by accessing
them through the global.<varname> namespace.
Channel variables may be used in values, by accessing them through the
variable("<varname>") function.
Storage variables may be used in values, by accessing them through the
storage("<varname>") function.
Initial arguments may be used in values, by accessing them through the
args(<argnum>) function.
]]
--[[
Everything in this section should not be edited unless you know what you are
doing!
]]
-- Overrides the global debug configuration for this profile only.
debug
=
true
-- Overrides the global sequence path for this profile only.
sequence_path
=
global
.
profile_path
..
"/demos/sequences"
--[[
The sections below can be customized safely.
]]
--[[
Directory paths.
]]
-- The directory where recordings are stored temporarily while recording.
temp_recording_dir
=
"/tmp"
hunmonk/jester/profiles/demos/sequences/speech_to_text.lua
0 → 100644
浏览文件 @
2fed7d23
--[[
Records a sound file, then converts the speech to text -- with console
debugging on the result will be printed to the console.
The recording is limited to 10 seconds.
]]
file_to_translate
=
"speech_to_text_demo.wav"
-- Set up initial recording keys.
record_keys
=
{
[
"#"
]
=
":break"
,
}
return
{
{
action
=
"wait"
,
milliseconds
=
500
,
},
{
action
=
"record"
,
location
=
profile
.
temp_recording_dir
,
filename
=
file_to_translate
,
pre_record_sound
=
"phrase:beep"
,
max_length
=
10
,
silence_secs
=
2
,
keys
=
record_keys
,
},
{
action
=
"play_phrase"
,
phrase
=
"thank_you"
,
keys
=
record_keys
,
},
{
action
=
"speech_to_text_from_file"
,
filepath
=
profile
.
temp_recording_dir
..
"/"
..
file_to_translate
,
},
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论