Skip to content

Instantly share code, notes, and snippets.

View ArthurBeaulieu's full-sized avatar
:octocat:
OUI

Arthur Beaulieu ArthurBeaulieu

:octocat:
OUI
  • Dassault Systèmes
  • Paris
  • 07:06 (UTC +01:00)
  • X @a_Messmaker
View GitHub Profile
@ArthurBeaulieu
ArthurBeaulieu / wistia-video-downloader.html
Created August 20, 2025 09:00
All-in-one wistia video downloader. Just download the .html file, and paste the link and thumbnail link inside the input to download the video
<!DOCTYPE html>
<html>
<head>
<title>Wistia Video Downloader</title>
</head>
<body>
<input id="to-dl" type="text" placeholder="Your wistia link and thumbnail clipboard">
<button id="submit">Download</button>
<p id="feedback">Paste a wistia video link and thumbnail here : right click on the video you want to download, and select "Copy link and thumbnail" in the contextual menu, then paste it in the input right over here</p>
</body>
@ArthurBeaulieu
ArthurBeaulieu / Overlay.js
Last active January 9, 2021 12:04
A quick loading overlay to be used when switching views or during heavy procssing.
// To use as your page loading:
// Best way is to embed in your HTML a DIV.overlay, without the hidden class
// This way, your page is loaded with the overlay on
// Do your initialization stuff, then just stop the loading, voilà!
// Attach to window to make it globally available in your runtime
window.overlay = document.querySelector('#overlay');
// ... Or, built an overlay DOM element when required
window.overlay = document.createElement('DIV');
@ArthurBeaulieu
ArthurBeaulieu / PyMood.py
Last active April 2, 2020 17:12
Reads a binary .mood file to get RGB values and some basic stats about track and samples
#!/usr/bin/env python3
import argparse
import statistics
global moodbarSamples
moodbarSamples = 1000 # This value is according to Moodbar definition (https://en.wikipedia.org/wiki/Moodbar)
## -------------------- Script execution context -------------------- ##