Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -40,6 +40,23 @@ Each split contains:
|
|
| 40 |
- `[id].json`: Segment information and transcription.
|
| 41 |
- `metadata.jsonl`: Mapping of audio files to transcriptions.
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
### metadata.jsonl format
|
| 44 |
```json
|
| 45 |
{"file_name": "female_mlf_01130_00015565294.wav", "transcription": "അങ്ങനെ രണ്ടാം ലോകമഹായുദ്ധം അവസാനിച്ചു"}
|
|
|
|
| 40 |
- `[id].json`: Segment information and transcription.
|
| 41 |
- `metadata.jsonl`: Mapping of audio files to transcriptions.
|
| 42 |
|
| 43 |
+
### VibeVoice JSON format
|
| 44 |
+
Each audio file is accompanied by a JSON file with the following structure:
|
| 45 |
+
```json
|
| 46 |
+
{
|
| 47 |
+
"audio_duration": 2.523,
|
| 48 |
+
"audio_path": "female_mlf_01130_00015565294.wav",
|
| 49 |
+
"segments": [
|
| 50 |
+
{
|
| 51 |
+
"start": 0.0,
|
| 52 |
+
"end": 2.523,
|
| 53 |
+
"text": "അങ്ങനെ രണ്ടാം ലോകമഹായുദ്ധം അവസാനിച്ചു",
|
| 54 |
+
"speaker": 0
|
| 55 |
+
}
|
| 56 |
+
]
|
| 57 |
+
}
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
### metadata.jsonl format
|
| 61 |
```json
|
| 62 |
{"file_name": "female_mlf_01130_00015565294.wav", "transcription": "അങ്ങനെ രണ്ടാം ലോകമഹായുദ്ധം അവസാനിച്ചു"}
|