Glossary 🤖
Explanation of Terms and Outputs in CreatorBox
Directory Description
Explanation of subdirectories
and files
under the CreatorBox
folder
Directory Structure
Below is the explanation of the subdirectories and files under the CreatorBox
folder:
├models Models
├src Code
├static Static Resources
├webapp Output Directory
├─cache Cache
│ llm.db Large Model Cache Data
├─data Data │ gradio.json Application Mount Data │ settings.json User Preferences │ speaker.json User Voice Data
│
├─logs Logs
│ creator_2025-01-01.log Runtime Logs
│
├─spk Speaker Voices
│ MacArthur.wav Custom Voice Clip
│
├─temp Temporary
│ └─test Video Directory
│ │ test.jpg Source Cover
│ │ test.mp4 Source Video (This video originates from `upload` and does not affect the source video)
│ │ test.srt Source Subtitles
│ │ test.wav Source Audio
│ │ test_en.json Final Data, Format: (Filename_Identifier.json)
│ │ test_en.mp4 Final Video, Format: (Filename_Identifier.mp4)
│ │ test_en.srt Final Subtitles, Format: (Filename_Identifier.srt)
│ │ test_en.wav Final Audio, Format: (Filename_Identifier.wav)
│ │
│ ├─dubbing Dubbing Folder
│ │ 0.wav Audio, Format: (Index.wav)
│ │ .....
│ │ test.wav
│ │
│ ├─json Data Folder
│ │ test_draft_content.json Draft Output from Editing Software
│ │ test_draft_input.json Draft Content Input
│ │ test_asr.json Audio Transcription Data
│ │
│ ├─stems Audio Separation Folder
│ │ test_vocals.wav Speaker's Voice
│ │ test_instrumental.wav Background Instrumental
│ │
│ ├─tts Text-to-Speech Folder
│ │ 00_c94f3e.wav Audio, Format: (Index:2d_MD5.wav)
│ │ .....
│ │ test.wav
│ │
│ ├─voices Voice Processing Folder
│ │ 0.wav Audio, Format: (Index.wav)
│ │
│ ├─vsf Subtitle Recognition Folder
│
│
├─tts Audition
│ cosy_SiMei_1.0_105_0.wav Audition Audio for Character `Si Mei`
│ ...
│
├─upload Upload
│ test.mp4 Uploaded Video
│
├─download Download
│ youtube-video.mp4 Downloaded Video
│ youtube-video.json Downloaded Video Data
Data Description
Using test.mp4
with identifier 001
as an example
json
[
{
"idx": 0, // Index
"spk": 0, // Speaker
"lang":"zh", // Language
"start": 2590, // Start time (ms)
"end": 2979, // End time (ms)
"duration": 1.3, // Duration (s)
"text": "臭猴子", // Original content
"text_trans": "Hey, monkey.", // Translation
"voice": "四妹", // Voice
"speed": 1.0 // Speed
}
]
Voice Data
User customized
voice data
json
[
{
"id": "405260", // Primary Key
"type": 3, // Type (1: Built-in, 2: Video, 3: User)
"speaker": "Si Mei", // Name
"gender": 2, // Gender (1: Male, 2: Female)
"path": "webapp/voices/SiMei.wav", // Voice Path
"text": "这山岭外的世界究竟是什么样的?", // Text
"duration": 8.382, // Duration
"locale": "zh-CN", // Language
"status": 1 // Status (0: Disabled, 1: Enabled)
}
]