A Chrome extension for capturing the shared slides from a streaming feed (such as that from a conference live stream or a zoom call).
It works by detecting the video element on the page and then capturing the current frame from that video, every second. To not save the same slide twice, it uses perceptual hashing (using the pHash algorithm) to detect when a frame has changed more than 5%. For efficiency, it first uses average hashing to compare the average luminance of the thumbnails of the frames to only run phash on the frames for which the average hash is not identical (which is 10x quicker than running phash on all frames). Once video is playing, press "Start Capture" to start capturing the shared slides. When finished, press "Download All Frames" to download all the captured frames as a ZIP file. For best results, set the video quality as high as possible in the video player.
Illustrative example from the live stream of a conference:
Pressing the advanced options will allow specifying the crop direction and the width and height percentages of the captured frame (if for example only part of the video feed is the slides, and the rest is a header or banner)
- Customizable frame cropping
- Multiple crop directions (9 positions)
- Adjustable width and height percentages
Since this extension is not available on the Chrome Web Store (I did not want to pay Google), follow these steps to install it manually:
- Download or clone this repository to your local machine
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" by toggling the switch in the top-right corner
- Click "Load unpacked" and select the extension directory
- The extension should now be installed and visible in your Chrome toolbar
- Navigate to a webpage containing video content
- Click the extension icon in your Chrome toolbar to open the popup
- Click "Start Capture" to begin capturing frames
- Use the advanced options to customize capture settings:
- Select crop direction (9 positions available)
- Adjust width and height percentages
- Click "Stop Capture" when you're done
- Use "Download All Frames" to save all captured frames as a ZIP file
I have only tested this on one conference so far, so I am sure there are some edge cases that are not handled. If you find any issues, please let me know or create a pull request.
This project is licensed under the GPLv3 license. See the LICENSE file for details.