-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
FileNotFoundError for AVA dataset #806
Comments
We don't need to generate filelist for ava because all ava samples share the exact same number of frames and format. There should be 27030 frames for each sample. Which script did you use to extract RGB frames? You can recut |
Thanks for fast reply. I ran So some video takes smaller number for frames than 27030. And also, vr = mmcv.VideoReader(full_path) can't read any frame from Thanks again for your kind supports and commitments :) |
Personally, I haven't tried to extract frames by opencv. Maybe for thoses videos with < 27030 frames, you can use ffmpeg to recut videos and extract frames. |
Maybe #807 could fix this issue. |
I could reproduce this bug even after #807
For ava, each video must have a fixed number(27030) of frames.
I would recommend that AVA dataset should not extract frames by OpenCV and we should remove related docs in tutorials. For other dataset, there is no requirement on the number of frames for each video, so extracting frames by OpenCV is ok. Any comments? @innerlee @kennymckormick @dreamerlin |
Okay, I'm trying to extract frames by using ffmpeg instead of OpenCV. Thank you all! |
@irvingzhang0512 Good comment |
@innerlee @dreamerlin |
Thanks for commitments of you all.
I got a FileNotFoundError when processing AVA dataset for LFB inference.
I followed your guideline to prepare AVA dataset and it worked for the other frames but not for
data/ava/rawframes/-IELREHX_js/img_22536.jpg
.I think there are some missing frames but data_loader is not holding the list of valid frames.
For other datasets, there are
*_val_list.txt
and*_train_list.txt
but not for AVA dataset.Is there any step that I missed?
I attached full error message below.
The text was updated successfully, but these errors were encountered: