Skip to content

Commit

Permalink
video_frames fix: apparently we got smart and stopped counting the .m…
Browse files Browse the repository at this point in the history
…etadata.json file in num_rows
  • Loading branch information
dale-wahl committed Jan 11, 2024
1 parent be6ea8c commit d2d7e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processors/visualisation/video_frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def process(self):
output_directory = staging_area.joinpath('frames')
output_directory.mkdir(exist_ok=True)

total_possible_videos = self.source_dataset.num_rows - 1 # for the metadata file that is included in archives
total_possible_videos = self.source_dataset.num_rows
processed_videos = 0

self.dataset.update_status("Extracting video frames")
Expand Down

0 comments on commit d2d7e81

Please sign in to comment.