SilvioGiancola / SoccerNet-code

SoccerNet: A Scalable Dataset for Action Spotting in Soccer Videos
106 stars 25 forks source link

data issue #16

Open juvien opened 4 years ago

juvien commented 4 years ago

i tried this ./src/SoccerNet_CSV_Downloader.sh data/SoccerNet_V1.1_Features.csv many time .when it download for some time the happen this problem : Permission denied: https://drive.google.com/uc?id=1ZqEQLNGYYRxMRn3GM1ZQR0YF5ftgd6Zy Maybe you need to change permission over 'Anyone with the link'?

how can i solve this,excuse

kosciukiewicz commented 4 years ago

I have the same error and it seems that the problem is with the gdown library itself. I tried to download features with wget or curl but it seems that google is blocking automatic request with recaptha or something (based on raw curl response I got).

I come up with simple solution to download only features I want (don't want to downlaod all 111GB for now) and I used rclone to config gdrive with my credentials https://rclone.org/drive/ .

All you need to do is during the remote config set root-folder-id to shared folder id that appears in gdrive links:

for example for features link:

https://drive.google.com/drive/folders/1qkIeQCGaHg0_CUCHvh3hQFTlq26D20Ts

it's 1qkIeQCGaHg0_CUCHvh3hQFTlq26D20Ts

Then only use this command:

rclone copy -v soccer-net:/ ~/Downloads/SoccerNet_V1.1_Features --exclude "*I3D.npy" --exclude "*C3D.npy"

where soccer-net is my remote name and 'exclude' part is for metioned features filtering

Hope it helps!

SilvioGiancola commented 4 years ago

@kosciukiewicz That is a very nice trick to by-pass Google Drive limitation! I wish I knew that library beforehand :)