-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
audio_query_from_presetにて、synthesisした際、設定と異なる音声データが出力される。 #1321
Comments
@Mega-Gorilla 具体的に言うとこちらです。 # audio_query
if preset_id is not None:
query_data = audio_query_from_preset(text=text, preset_id=preset_id)
##### ここでspeakerを入れ替える必要がある #####
else:
query_data = audio_query(text, speaker, max_retry)
print(query_data)
# synthesis
voice_data = synthesis(speaker, query_data, max_retry)
audio = AudioSegment.from_wav(io.BytesIO(voice_data))
play(audio) |
preset側でspeakerを指定できるのに、synthesisでもう一回speakerを指定しないといけないのはかなりややこしいかもですね・・・。 |
大変ありがとうございます! 具体的には、
原因としては、私の方で、 こちらの認識不足で、ご迷惑をおかけしてしまって申し訳ないです! |
解決してよかったです! ドキュメントについては検討したいと思います。 |
不具合の内容
不具合概要
audio_queryにて作成したクエリと、audio_query_from_presetで作成したクエリで作成される音声が異なる。
具体的な再現手法
現象・ログ
◯audio_query ナースロボ→audio_query 春日部つむぎ→audio_query_from_preset ナースロボ→audio_query_from_preset 春日部つむぎの順で再生
https://twitter.com/Mega_Gorilla_/status/1660293569951989760
再現手順
ソースコード
https://drive.google.com/file/d/1yOynhQsallhKuIEAFs5LX4R82nKRQ9HK/view?usp=share_link
上記コードを実行することにより、現象の動画を再現可能です。
期待動作
VOICEVOXのバージョン
0.14.5
OSの種類/ディストリ/バージョン
その他
取り急ぎ作成した、issueのため不明点等については、質問いただければ幸いです。
The text was updated successfully, but these errors were encountered: