Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
9
9
203012124
202010631
202010629
202009426
202010985
202009985
202009346
202010704
202009954
202011254
202010695
203011616
202010566
202009720
202010612
202008796
202011294
203011772
202009259
202010087
202008841
202010577
202008732
202010784
203011115
203011716
202009853
202011481
202010842
202008817
202009009
202009715
202011305
203012049
202009695
202008808
202009348
202010660
203011546
202009359
203010341
202009310
202009744
202009273
203011618
202010301
202011465
202008789
202010250
203011573
203012109
202011382
202010513
203011138
202010676
202009317
202009738
202009814
202009813
202011228
202009979
202011169
203012051
202011226
202011328
202009301
202009839
202009845
202009802
202009281
202010225
203010350
202011462
203011718
202011425
202011446
202011732
202011230
202010879
202009016
202010620
202010802
202010530
202010877
203011906
202011195
203011624
202009319
202010570
202009792
202009828
203011060
202011282
202011377
202011366
202010703
202009350
202011302
202010357
203012107
End of preview. Expand in Data Studio

YouTube_Talking

YouTube_Talking is a large in-the-wild conversational dataset: 2,983 English single-speaker talking-head videos (interviews + speeches) with derived multimodal annotations — speech audio, FLAME face motion, SMPL-X body, HaMeR hands, active-speaker segments, and motion tokens. It is one of the datasets used by ViBES (CVPR 2026).

⚠️ Research use only. The source videos are copyrighted YouTube content and are NOT redistributed — you download them yourself from the URL list. We do ship the expensive model-output annotations (TalkNet active-speaker, 4D-Humans / MHR body, FLAME face, fitted SMPL-X, HaMeR hands) so you can skip hundreds of GPU-hours of re-processing. Cheap/deterministic steps (audio extraction, tokenization, HF packing) are reproduced with the shipped scripts. License: CC-BY-NC-4.0.

Contents

YouTube_Talking/
├── video_urls.csv             (2,983 rows: id,url,language,type,body_parts,num_people,duration_min)
├── download_youtube_talking.py (downloader for the source videos)
├── talknet_pywork.tar         (TalkNet active-speaker results, pywork/ per video)
├── 4d_humans_results.tar      (4D-Humans body recovery, per-video .pkl)
├── mhr_results.tar            (MHR body, per-frame .npz)
├── smplxflame_25.tar          (fitted SMPL-X body+face @25fps)
├── FLAME_coeffs_25.tar        (FLAME face coefficients @25fps)
├── hamer_results.tar          (HaMeR hand recovery, per-frame .pkl)
├── train_processed.txt        (346 fully-processed clip ids)
├── val_processed.txt / test_processed.txt   (9 / 11)
├── train_unprocessed.txt / val_unprocessed.txt / test_unprocessed.txt
├── README.md
└── LICENSE

Each *.tar extracts to its directory in place (tar -xf <name>.tar). The talknet_pywork.tar gives talknet_output/<id>/pywork/{scores,tracks,faces,scene}.pckl. The *_processed.txt splits list the clips with full multimodal processing.

Not shipped (regenerate locally): the videos themselves, the extracted audio (audios/, audios_original/), speaking-segment crops, transcripts, and the motion/audio tokens — all cheap to recompute from the downloaded videos + shipped annotations using the scripts below.

How to use

  1. Download videospython download_youtube_talking.py --url_csv video_urls.csv --output_dir videos
  2. Extract the shipped annotationsfor f in *.tar; do tar -xf "$f"; done
  3. Reconstruct audio / tokens / HF dataset from the videos + annotations — follow the step-by-step recipe in the ViBES repo: docs/1-data/youtube_talking.md.

All preprocessing scripts live in the ViBES repo under preprocess/.

License

CC-BY-NC-4.0 — non-commercial research use only. Source videos remain under their original YouTube terms; this release redistributes none of them.

Citation

@inproceedings{zhang2026vibes,
  title={ViBES: A Conversational Agent with Behaviorally-Intelligent 3D Virtual Body},
  author={Juze Zhang and Changan Chen and Xin Chen and Heng Yu and Tiange Xiang and Ali Sartaz Khan and Shrinidhi Kowshika Lakshmikanth and Ehsan Adeli},
  booktitle={CVPR},
  year={2026},
}
Downloads last month
29