Glossary 🤖
Terminology 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
│ mounts.json Application Mount Data
│ speaker.json User Voice Data
│
├─logs Logs
│ creator_2025-04-10.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_vsr.ass Extracted Subtitles, Format: ASS
│ │ test_vsr.srt Extracted Subtitles, Format: SRT
│ │ test_vsr.txt Extracted Subtitles, Format: TXT
│ │ test_vmr.jpg Marked Comparison Image
│ │ test_vmr.ma4 Video with Markings Removed
│ │ test_001.json Final Data, Format: (Filename_Identifier.json)
│ │ test_001.mp4 Final Video, Format: (Filename_Identifier.mp4)
│ │ test_001.srt Final Subtitles, Format: (Filename_Identifier.srt)
│ │ test_001.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_whisper.json Original Transcription Content
│ │
│ ├─stems Audio Separation Folder
│ │ test_noise_x.wav Noise-Reduced Voice
│ │ test_vocals.wav Speaker's Voice
│ │ test_vocals_bg.wav Background Music
│ │
│ ├─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": "female", // Gender (male: Male, female: 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)
}
]