Skip to content

PyVogen:开源歌声合成引擎Vogen的python实现

License

Notifications You must be signed in to change notification settings

oxygen-dioxide/vogen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyVogen

Github | Gitee | Gitlab | Bitbucket | Coding

PyVogen是开源歌声合成引擎Vogen的python实现

本python库依赖以下库: wget tqdm numpy pyworld jyutping tabulate pypinyin pyperclip onnxruntime simpleaudio more-itertools

安装

pip install vogen

示例

以下是文件读写示例,音频合成等更多示例参见文档

import vogen as vg

#打开文件
vf=vg.openvog("myproject.vog")

# 获取第0乐句的歌词与拼音列表
u=vf.utts[0]
lyrics=[i.lyric for i in u.notes]
roms=[i.rom for i in u.notes]
print(lyrics)
print(roms)

#保存文件
vf.save("myproject2.vog")

相关链接

vogen仓库

vogen作者的b站空间(vogen试听页面)