npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@background404/node-red-contrib-voicevox-core

v0.1.1

Published

Node for VOICEVOX CORE

Downloads

56

Readme

node-red-contrib-voicevox-core

voicevox_coreを利用したNode-REDのノードです。
文字列を受け取り、音声ファイルを出力します。

▼voicevox_coreはこちら
https://github.com/VOICEVOX/voicevox_core

▼VOICEVOXはこちら
https://voicevox.hiroshiba.jp/

[!CAUTION] 現状ではWindowsにしか対応していません。
またPythonの環境が必要で、仮想環境にパッケージがインストールされます。

動作確認環境

  • Windows 10
  • Python 3.8.3
  • Node.js v20.10.0
  • npm 9.1.3

voicevox_coreは0.15.3がインストールされます。

サンプルフロー

examplesフォルダに入っています。
sample-flow.jpg

音声ファイルの保存先フォルダを指定する必要があります。
話者のIDはプルダウンで選択できます。
edit.png

msg.voiceID、msg.voiceFolderに値を入れて、ノードに渡すこともできます。
この場合、msgの値が優先されます。
msg.png

Node-RED関連

ファイル構成

  • .js: ノードの機能
  • .html: エディタでの表示
  • package.json: インストール時に使用、ノードのパスを指定

.jsの中のchild_processで、Pythonのプログラムを実行しています。

ローカルでの実行

ダウンローダのURLやバージョンを変更したいときは、このリポジトリをダウンロードしてください。
Node-REDのノードとして追加できます。

▼インストールする場合
npm install <フォルダのパス>
▼アンインストールする場合
npm uninstall <パッケージ名>

Python関連

Pythonで実行するための環境構築を行うことができます。
pyenvフォルダがPythonの仮想環境になっています。activate後、voicevox関連のファイルを実行できます。

  • setup.py: 環境構築
  • downloader.py: ダウンローダの実行
  • voicevox.py: 音声ファイルを出力(第一引数:文字列、第二引数:話者のID、第三引数:音声ファイルの保存先)
  • id_list.py: 話者のリストを表示

リポジトリをダウンロード後、このディレクトリでnpm installを実行すると、setup.pyが実行されます。

検討事項

  • Pythonプログラム実行中の表示
    • 音声ファイルを出力するのに少し時間がかかります。
    • 出力中にノードのステータスを表示して、分かりやすくしようと思っています。
  • 何を出力するか
    • read fileノードで音声ファイルを開いてバイナリバッファで送ることもできますが、このノードでバイナリバッファを送るほうが使いやすいかも?
    • バイナリバッファで送るとファイルに保存しなくてもよくなりますが、出力に時間がかかります。
    • 選択できるようにしようかなと思っています。

その他情報

▼Node-RED User Group Japan 「ノードの開発」
https://nodered.jp/docs/creating-nodes/
▼PythonでVOICEVOX COREを使ってみる(音声合成)
https://404background.com/program/voicevox-core/
▼Node-REDとVOICEVOX COREで音声合成(Python)
https://404background.com/program/node-red-voicevox/
▼python-venvノードと同じ仕組みで、インストール時にPythonの仮想環境を構築するようにしました。
https://404background.com/program/node-create-python-venv/