hangzhaomit / Sound-of-Pixels

Codebase for ECCV18 "The Sound of Pixels"
http://sound-of-pixels.csail.mit.edu
MIT License
371 stars 74 forks source link

Download / pre-process data #6

Open kmonachopoulos opened 5 years ago

kmonachopoulos commented 5 years ago

Seeing from the issues, this is a common request... How do we download the video files using the .JSON file? How can we pre-process to extract the downloaded videos into the format :

data ├── audio ├── acoustic_guitar │ ├── M3dekVSwNjY.mp3 │ ├── ... │ ├── trumpet │ ├── STKXyBGSGyE.mp3 │ ├── ... │ ├── ...

└── frames | ├── acoustic_guitar │ | ├── M3dekVSwNjY.mp4 │ | | ├── 000001.jpg │ | | ├── ... │ | ├── ... │ ├── trumpet │ | ├── STKXyBGSGyE.mp4 │ | | ├── 000001.jpg │ | | ├── ... │ | ├── ... │ ├── ...

Are there any scripts provided for these ? Thanks.