diff --git a/common/README.md b/common/README.md index 00de247052413a1de3334e35ddd65599dcc1b161..f02764ac9a741b7b2a76d70c6940df4d53f411d4 100644 --- a/common/README.md +++ b/common/README.md @@ -67,6 +67,6 @@ You have 2 options to download the videos: 1. First, go on the [google sheet](https://docs.google.com/spreadsheets/d/1kIrMOjcKJ8hslZoVMx1D0H7QYj9nQLFvzUAQ1U4Le-I/edit#gid=0), and choose a video that nobody already did, and put your name in the 2nd column 2. Download the video, in **720p** 3. Rename it using the video id on twitch, and place it in [../dataset/twitch/videos](../dataset/twitch/videos) -5. Launch the python script [./research/scripts/extract_robots_views_from_video.py](./research/scripts/extract_robots_views_from_video.py), with the video id as parameter (In Pycharm, `Run` > `Edit Configurations...`, then in parameters enter the id). +5. Launch the python script [./research/scripts/extract_robots_views_from_video.py](./research/scripts/extract_robots_views_from_video.py), with the video id as parameter (In Pycharm, `Run` > `Edit Configurations...`, then in parameters enter the id). You can put multiple video ids by separating them with spaces. The frames will appear in the [../dataset/twitch/robots-views](../dataset/twitch/robots-views) folder. diff --git a/common/research/scripts/extract_robots_views_from_video.py b/common/research/scripts/extract_robots_views_from_video.py index 74737a9675902a24d7cf3cf01ad95a85206cc639..ec38e4345469d9a40faa29770964be9041f3c4aa 100644 --- a/common/research/scripts/extract_robots_views_from_video.py +++ b/common/research/scripts/extract_robots_views_from_video.py @@ -3,5 +3,5 @@ import sys from research.dataset.twitch.robots_views_extractor import RobotsViewExtractor if __name__ == '__main__': - _video_name = sys.argv[1] - RobotsViewExtractor(_video_name).run() + for _video_name in sys.argv[1:]: + RobotsViewExtractor(_video_name).run()