Save to include videos/gifs #1432
Replies: 3 comments 1 reply
-
Actually, videos can be saved if you uncheck the option document.querySelectorAll(".video-overlay").forEach(overlayElement => overlayElement.remove()) FYI, here's the saved page with this changes applied before saving it: Level_Difficulty _ BachateSteps.com _ Bachata Database with 900_ moves_combos! (4_4_2024 2_48_53 PM).html.zip |
Beta Was this translation helpful? Give feedback.
-
Awesome, that worked! Would you happen to know how to make all the videos play? It seems even when I allow javascript to download all the videos don't play simultaneously offline as when loading the page online. |
Beta Was this translation helpful? Give feedback.
-
Run the code instead to also autoplay all the videos. Note that you could convert it to a bookmarklet for more convenience. document.querySelectorAll(".video-overlay").forEach(overlayElement => overlayElement.remove()); document.querySelectorAll("video").forEach(videoElement => videoElement.autoplay = true); |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
I would like to save a page that contains many dance clips in gif format.
When saving the page it does not include all the images or any videos. At best, there are just some static images.
I've enabled all options under Images section including setting the maximum idle time to 10s.
Describe the solution you'd like
Way to pre-load all the videos that are visible and save as a single file.
Describe alternatives you've considered (optional)
I'm open to any other alternatives! Would just like to be able to access the site offline.
Beta Was this translation helpful? Give feedback.
All reactions