-
Notifications
You must be signed in to change notification settings - Fork 205
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
ソング未対応のコアを読み込めなくなっている #1087
Comments
@PickledChair さん @takana-v さん すみません、もしよかったらお力お借りできないでしょうか・・・ 🙇 ちなみに過去のコアを配置できる場所は以前から変わらずユーザーディレクトリとかのままです! (自分の把握漏れなのにお願いしてしまって申し訳ないです 🙇 ) |
まとまった時間が取れるのが3月中旬以降になってしまうため、もし急ぎであれば他の方に修正をお願いしたいです🙇 |
とりあえずメソッドの存在の判別は、 ❯ python
Python 3.8.15 (default, Nov 6 2022, 22:50:15)
[GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import CDLL
>>> core = CDLL("./libvoicevox_core.so")
>>> "initialize" in dir(core)
False
>>> hasattr(core, "initialize")
True
>>> "initialize" in dir(core)
True
>>> hasattr(core, "存在しないメソッド")
False |
明後日くらいから時間ができるので、実装を担当できます
その方法で行こうと思います👍 |
@PickledChair ありがとうございます!! |
不具合の内容
エンジンは過去のコアに関してある程度の互換性を保つように設計されています。
しかしソング実装のタイミングで、ソング未実装のコアライブラリを読み込めないようになっていました。
とりあえず現状のまとめをissueにしてみました。
現象・ログ
0.14.6などの過去のコアを読み込もうとするとエラーになる
期待動作
0.14.6などの過去のコアも読み込める
その他
関連
The text was updated successfully, but these errors were encountered: