Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
3ac7ac25
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 1 年 前同步成功
通知
207
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
3ac7ac25
编写于
10月 20, 2022
作者:
D
david.95
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix review issue,test=tts
上级
0476e645
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
6 addition
and
11 deletion
+6
-11
paddlespeech/t2s/ssml/xml_processor.py
paddlespeech/t2s/ssml/xml_processor.py
+6
-11
未找到文件。
paddlespeech/t2s/ssml/xml_processor.py
浏览文件 @
3ac7ac25
...
...
@@ -35,8 +35,8 @@ class MixTextProcessor():
return
None
def
get_content_split
(
self
,
mixstr
):
''' 文本分解,顺序加了列表中,按非xml 和 xml 分开,对应的字符串,带标点符号
不能去除空格,因为xml 中tag 属性带空格
''' 文本分解,顺序加了列表中,按非
xml 和 xml 分开,对应的字符串,带标点符号
不能去除空格,因为
xml 中tag 属性带空格
'''
ctlist
=
[]
# print("Testing:",mixstr[:20])
...
...
@@ -77,17 +77,12 @@ class MixTextProcessor():
class
DomXml
():
def
__init__
(
self
,
xmlstr
):
print
(
"Parse xml str:"
,
xmlstr
)
self
.
tdom
=
parseString
(
xmlstr
)
#Document
# print("tdom:",type(self.tdom))
self
.
root
=
self
.
tdom
.
documentElement
#Element
# print("root:",type(self.root))
self
.
rnode
=
self
.
tdom
.
childNodes
#NodeList
# print("rnode:",type(self.rnode))
pass
def
get_text
(
self
):
'''返回
xml 内容的所有文本内容的
列表'''
'''返回
xml 内容的所有文本内容的
列表'''
res
=
[]
for
x1
in
self
.
rnode
:
...
...
@@ -107,7 +102,7 @@ class DomXml():
return
res
def
get_xmlchild_list
(
self
):
'''返回
xml 内容的列表, 包括所有文本内容(不带
tag)'''
'''返回
xml 内容的列表,包括所有文本内容(不带
tag)'''
res
=
[]
for
x1
in
self
.
rnode
:
...
...
@@ -127,7 +122,7 @@ class DomXml():
return
res
def
get_pinyins_for_xml
(
self
):
'''返回
xml 内容,如果字符串 和 拼音的 list , 如 [
'''
'''返回
xml 内容,字符串和拼音的 list
'''
res
=
[]
for
x1
in
self
.
rnode
:
...
...
@@ -155,7 +150,7 @@ class DomXml():
return
res
def
get_all_tags
(
self
,
tag_name
):
'''获取所有的tag 及属性值'''
'''获取所有的
tag 及属性值'''
alltags
=
self
.
root
.
getElementsByTagName
(
tag_name
)
for
x
in
alltags
:
if
x
.
hasAttribute
(
'pinyin'
):
# pinyin
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录