Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- video-to-video
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- multilingual
|
| 8 |
+
tags:
|
| 9 |
+
- video-dubbing
|
| 10 |
+
- lip-sync
|
| 11 |
+
- audio-video
|
| 12 |
+
- ltx-2
|
| 13 |
+
- justdubit
|
| 14 |
+
- multimodal
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1<n<100
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Audiovisual Translation Dubbing Dataset
|
| 20 |
+
|
| 21 |
+
A paired video dataset for training video dubbing and lip-sync models, as described in the paper **"JUST-DUB-IT: Video Dubbing via Joint Audio-Visual Diffusion"**.
|
| 22 |
+
|
| 23 |
+
📄 **Project**: [justdubit.github.io](https://justdubit.github.io)
|
| 24 |
+
💻 **Code**: [github.com/justdubit/just-dub-it](https://github.com/justdubit/just-dub-it)
|
| 25 |
+
🤗 **Model**: [huggingface.co/justdubit/justdubit](https://huggingface.co/justdubit/justdubit)
|
| 26 |
+
|
| 27 |
+
## Dataset Description
|
| 28 |
+
|
| 29 |
+
This dataset contains paired video samples for training synchronized audio-video dubbing models. Each sample includes:
|
| 30 |
+
|
| 31 |
+
- **Target video**: The dubbed output with translated speech and synchronized lip movements
|
| 32 |
+
- **Reference video**: The original source video used as conditioning
|
| 33 |
+
- **Face segmentation masks**: (Optional) Binary masks highlighting facial regions for masked loss training
|
| 34 |
+
- **Text captions**: Structured prompts with speaker description, language, and dialogue
|
| 35 |
+
|
| 36 |
+
### Intended Use
|
| 37 |
+
|
| 38 |
+
- Training LoRA adapters for video dubbing tasks
|
| 39 |
+
- Fine-tuning audio-video models for lip-sync generation
|
| 40 |
+
- Research in multimodal translation and dubbing
|
| 41 |
+
|
| 42 |
+
### Dataset Structure
|
| 43 |
+
|
| 44 |
+
The dataset is organized as follows:
|
| 45 |
+
|
| 46 |
+
- `audiovisual_translation_dub/`
|
| 47 |
+
- `dataset.json` - Metadata file with captions and paths
|
| 48 |
+
- `videos/` - Dubbed output videos
|
| 49 |
+
- `target_001.mp4`
|
| 50 |
+
- `target_002.mp4`
|
| 51 |
+
- ...
|
| 52 |
+
- `references/` - Original source videos
|
| 53 |
+
- `reference_001.mp4`
|
| 54 |
+
- `reference_002.mp4`
|
| 55 |
+
- ...
|
| 56 |
+
- `masks/` - (Optional) Face segmentation masks
|
| 57 |
+
- `mask_001.mp4`
|
| 58 |
+
- `mask_002.mp4`
|
| 59 |
+
- ...
|
| 60 |
+
- `validation/` - Validation samples
|
| 61 |
+
- `sample.mp4`
|
| 62 |
+
|
| 63 |
+
### Data Format
|
| 64 |
+
|
| 65 |
+
The `dataset.json` file contains entries in the following format:
|
| 66 |
+
|
| 67 |
+
[
|
| 68 |
+
{
|
| 69 |
+
"caption": "The woman is speaking English, saying: 'Hello, how are you today?'",
|
| 70 |
+
"media_path": "videos/target_001.mp4",
|
| 71 |
+
"reference_path": "references/reference_001.mp4",
|
| 72 |
+
"mask_path": "masks/mask_001.mp4"
|
| 73 |
+
}
|
| 74 |
+
]
|