Compare commits
No commits in common. "16c0893afafe709bc661e7fcac344edfab1a8f00" and "25a555cc29d15870a48a7c519a5cd77bf1834e9f" have entirely different histories.
16c0893afa
...
25a555cc29
12
__init__.py
12
__init__.py
|
|
@ -3,6 +3,18 @@ Blender VoiceVox Plugin
|
||||||
VoiceVoxを使用した音声合成と字幕表示を同時に行うBlenderアドオン
|
VoiceVoxを使用した音声合成と字幕表示を同時に行うBlenderアドオン
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
bl_info = {
|
||||||
|
"name": "VoiceVox TTS & Subtitles",
|
||||||
|
"author": "Hare",
|
||||||
|
"version": (1, 0, 0),
|
||||||
|
"blender": (5, 0, 0),
|
||||||
|
"location": "View3D > Sidebar > VoiceVox",
|
||||||
|
"description": "VoiceVoxによる音声合成と字幕表示",
|
||||||
|
"warning": "",
|
||||||
|
"doc_url": "",
|
||||||
|
"category": "Sequencer",
|
||||||
|
}
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from . import operators
|
from . import operators
|
||||||
from . import operators_reference
|
from . import operators_reference
|
||||||
|
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
schema_version = "1.0.0"
|
|
||||||
|
|
||||||
id = "voicevox_tts"
|
|
||||||
version = "1.0.0"
|
|
||||||
name = "VoiceVox TTS & Subtitles"
|
|
||||||
tagline = "VoiceVox speech synthesis and subtitle display"
|
|
||||||
maintainer = "Hare <noreply@example.com>"
|
|
||||||
type = "add-on"
|
|
||||||
|
|
||||||
tags = ["Sequencer", "Video Tools"]
|
|
||||||
|
|
||||||
blender_version_min = "5.0.0"
|
|
||||||
|
|
||||||
license = [
|
|
||||||
"SPDX:MIT",
|
|
||||||
]
|
|
||||||
|
|
||||||
[build]
|
|
||||||
paths_exclude_pattern = [
|
|
||||||
"__pycache__/",
|
|
||||||
"/.git/",
|
|
||||||
"/.direnv/",
|
|
||||||
"/.claude/",
|
|
||||||
"*.pyc",
|
|
||||||
]
|
|
||||||
Loading…
Reference in New Issue
Block a user