File size: 1,803 Bytes
673fb0e d3035bf 924586c 673fb0e | 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 | ---
license: mit
task_categories:
- other
language:
- en
tags:
- gui
- video
- youtube
- urls
---
# GUI-Net-Video
A collection of video URLs for GUI-related tasks, organized by platform or application.
This dataset provides the **video URLs** collected for [**TongUI: Internet-Scale Trajectories from Multimodal Web Tutorials for Generalized GUI Agents**](https://arxiv.org/abs/2504.12679) — a framework that turns multimodal web tutorials (including YouTube videos) into large-scale GUI agent trajectories. Each URL is paired with a GUI task description (the `.txt` filename) and grouped by platform/app.
- **Paper:** [arXiv:2504.12679](https://arxiv.org/abs/2504.12679)
- **Project:** [tongui-agent.github.io](https://tongui-agent.github.io/)
- **Code:** [TongUI-agent/TongUI-agent](https://github.com/TongUI-agent/TongUI-agent)
**Stats:** 32 platforms · 2,627 task files · 126,506 URLs (~2 MB as `urls.zip`)
## Structure
```
urls/
├── {Platform}/ # e.g. Youtube, Chrome, Google, Windows, ...
│ └── {Task name}.txt # one URL per line
```
Each `.txt` file is named after a GUI task (e.g. `Viewing search results.txt`) and contains one YouTube (or related) URL per line.
## Platforms
31 platforms/apps are included: Alibaba, Amazon, Android, Aol_search, Baidu, Bing, Chrome, Discord, Etsy, Excel, Facebook, Github, Google, Instagram, Linkedin, MATLAB, Macos, Notion, PPT, Pinterest, Reddit, Telegram, Tiktok, Twitter, Ubuntu, VScode, Wechat, Whatsapp, Windows, Word, Yandex, Youtube.
## Usage
```python
from pathlib import Path
for txt in Path("urls").rglob("*.txt"):
platform = txt.relative_to("urls").parts[0]
task = txt.stem
urls = [line.strip() for line in txt.read_text().splitlines() if line.strip()]
print(platform, task, len(urls))
```
|