https://github.com/dito97/video-to-pptx
A video-to-PPTX converter
https://github.com/dito97/video-to-pptx
converter pptx video
Last synced: 5 months ago
JSON representation
A video-to-PPTX converter
- Host: GitHub
- URL: https://github.com/dito97/video-to-pptx
- Owner: DiTo97
- License: gpl-3.0
- Created: 2022-10-14T07:51:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T02:24:21.000Z (over 3 years ago)
- Last Synced: 2025-10-25T23:55:14.402Z (8 months ago)
- Topics: converter, pptx, video
- Homepage:
- Size: 108 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# video-to-pptx
[](https://shields.io/)
[](https://shields.io/)
A video-to-PPTX-slides converter whose main goal is to convert scientific presentation to PPTX slides.
**N.B.:** The converter only supports videos hosted on YouTube for now.
The conversion process is roughly nine-fold:
- [ ] The video is downloaded in memory or to file storage with the [Pytube](https://pytube.io/en/latest/index.html) package;
- [ ] A sequence of frames is extracted from the video;
- [ ] A sequence of captions is extracted from the video;
- [ ] Too similar adjacent frames are filtered out, as they likely coincide with longer explanations by the author;
- [ ] If any frames have been filtered out, we might have to join some of the captions to align the sequences;
- [ ] The frames in the reduced sequence are [converted to SVG](https://github.com/IngJavierR/PngToSvg) to infer their structure;
- [ ] The SVG frames are converted to unpolished PPTX slides with an [SVG-to-PPTX converter](https://github.com/udp/svg-to-pptx);
- [ ] The unpolished PPTX slides are better formalized with the [Python-PPTX](https://python-pptx.readthedocs.io/en/latest/index.html) package*;
- [ ] The captions are attached as speaker notes ([NotesSlide](https://python-pptx.readthedocs.io/en/latest/api/slides.html#notesslide-objects) objects) to their corresponding PPTX slide.
*An example of [creating a PPTX presentation with Python-PPTX](https://towardsdatascience.com/creating-presentations-with-python-3f5737824f61).