├── .github └── workflows │ └── main.yml ├── LICENSE ├── README.md ├── voicevox_core_vendor ├── CMakeLists.txt ├── open_jtalk_dict_dir.h.in └── package.xml ├── voicevox_ros2 ├── CMakeLists.txt ├── include │ └── voicevox_ros2 │ │ ├── mixer.hpp │ │ └── voicevox_ros2_component.hpp ├── package.xml └── src │ └── voicevox_ros2_component.cpp └── voicevox_ros2_msgs ├── CMakeLists.txt ├── msg └── Talk.msg └── package.xml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/README.md -------------------------------------------------------------------------------- /voicevox_core_vendor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_core_vendor/CMakeLists.txt -------------------------------------------------------------------------------- /voicevox_core_vendor/open_jtalk_dict_dir.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_core_vendor/open_jtalk_dict_dir.h.in -------------------------------------------------------------------------------- /voicevox_core_vendor/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_core_vendor/package.xml -------------------------------------------------------------------------------- /voicevox_ros2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2/CMakeLists.txt -------------------------------------------------------------------------------- /voicevox_ros2/include/voicevox_ros2/mixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2/include/voicevox_ros2/mixer.hpp -------------------------------------------------------------------------------- /voicevox_ros2/include/voicevox_ros2/voicevox_ros2_component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2/include/voicevox_ros2/voicevox_ros2_component.hpp -------------------------------------------------------------------------------- /voicevox_ros2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2/package.xml -------------------------------------------------------------------------------- /voicevox_ros2/src/voicevox_ros2_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2/src/voicevox_ros2_component.cpp -------------------------------------------------------------------------------- /voicevox_ros2_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /voicevox_ros2_msgs/msg/Talk.msg: -------------------------------------------------------------------------------- 1 | uint32 speaker_id 2 | string text 3 | bool queuing false 4 | -------------------------------------------------------------------------------- /voicevox_ros2_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutrobo/voicevox_ros2/HEAD/voicevox_ros2_msgs/package.xml --------------------------------------------------------------------------------