File size: 2,505 Bytes
872072f f03562f 872072f f03562f 7cd122b f03562f 7cd122b f03562f 7cd122b f03562f 7cd122b f03562f 5346044 7cd122b 5346044 f03562f 5346044 7cd122b f03562f 0cadb32 7dbe70c 2d247b4 7dbe70c ba94c66 7dbe70c ba94c66 7dbe70c ba94c66 7dbe70c ba94c66 7dbe70c ba94c66 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | ---
license: apache-2.0
task_categories:
- summarization
language:
- en
---
# 📚 Clip-CC Dataset (Movie Clips Edition)
**Clip-CC** is a curated dataset of 200 movie clips sourced from YouTube, each paired with a human-written summary and each video clipped to 1 minute and 30 second. It is designed for tasks such as video summarization, multimodal learning, and video-language alignment using real-world entertainment content.
---
## 🧾 Dataset Summary
- 🎥 200 movie clips from well-known films
- 📺 Each clip is referenced via a YouTube link
- 📝 Each clip includes a human-written summary describing the scene
- 💾 All metadata is stored in a .jsonl file (metadata.jsonl)
---
## 💡 Use Cases
- Video summarization and caption generation
- Vision-Language alignment
- Video QA and downstream educational AI tasks
- Fine-tuning multimodal models (e.g., Flamingo, Video-BERT, LLaVA)
---
## 📦 Dataset Structure
Each entry has:
| Field | Description |
|------------|------------------------------------------|
| `id` | Unique ID, e.g., `001` |
| `file_link`| YouTube link to the movie clip |
| `summary` | Human-written summary of video content |
### 🔍 Example
```json
{
"id": "001",
"file_link": "https://www.youtube.com/watch?v=zRFatzj_5do",
"summary": "A musical performance scene from Pitch Perfect showcasing a lively rendition of 'I've Got the Magic in Me'."
}
```
---
### 🚀 Usage
```code
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("your-username/clip-cc")
# Access a sample entry
print(dataset["train"][0])
```
---
### ⚖️ Disclaimers
- The Clip-CC dataset contains references (via YouTube links) to publicly available movie clips. No video files are hosted or redistributed through this dataset—only links to existing content on YouTube are included.
- All rights to the original video content remain with their respective copyright holders.
- The dataset is intended for research and educational purposes only, such as evaluating video summarization models, vision-language alignment, or building multimodal benchmarks.
- Users of this dataset are responsible for ensuring their usage complies with local laws and platform terms of service, including YouTube's Terms of Service.
- If you're a copyright holder and believe any content should not be referenced in this dataset, please reach out through the appropriate platform. |