YoutubeBioFile implementation incorrect
The implementation of YoutubeBioFile.load()
https://gitlab.idiap.ch/bob/bob.bio.video/blob/master/bob/bio/video/database/youtube.py#L26
is incorrect. First, for video databases, it expects a third parameter, i.e., the frame_selector
, see: https://gitlab.idiap.ch/bob/bob.bio.video/blob/master/bob/bio/video/database/database.py#L18 and second, it does not find the files, as os.listdir
does only list the files, and not the files including the full path: https://gitlab.idiap.ch/bob/bob.bio.video/blob/master/bob/bio/video/database/youtube.py#L28