SoccerNet / sn-tracking

Repository containing all necessary codes to get started on the SoccerNet Tracking challenge. This repository also contains benchmark methods to get started.
70 stars 17 forks source link

Complete match videos #10

Open AkshayalakshmiVK opened 1 year ago

AkshayalakshmiVK commented 1 year ago

Hello! Are captions available for the 12 single-camera games released? I am currently working on an idea that uses tackles of players and produces captions. I am curious if the captions can be downloaded somewhere.

SilvioGiancola commented 1 year ago

Hi @AkshayalakshmiVK , yes, they are released. You can download them with that python code:

import SoccerNet
from SoccerNet.Downloader import SoccerNetDownloader
mySoccerNetDownloader=SoccerNetDownloader(LocalDirectory="path/to/SoccerNet")
mySoccerNetDownloader.downloadRAWVideo(dataet="SoccerNet-Tracking")

Let me know if that works on your end.