Skip to content

Instantly share code, notes, and snippets.

View mahadevan's full-sized avatar
😎
Testing the Waters !

Mahadevan Iyer mahadevan

😎
Testing the Waters !
View GitHub Profile
yt-dlp \
--no-playlist \
-f "bv*[height<=720][vcodec^=avc1]+ba[acodec^=mp4a]/b[height<=720]" \
--merge-output-format mp4 \
--embed-metadata \
--embed-chapters \
--embed-thumbnail \
--convert-thumbnails jpg \
--add-metadata \
--restrict-filenames \
@mahadevan
mahadevan / youtube_clean_watch_later_videos.js
Created February 22, 2021 16:14 — forked from qoomon/youtube_clean_watch_later_videos.js
Clean YouTube Watch Later Videos
// This script will remove all videos from watch later list
//
// Usage
//
// #1 go to https://www.youtube.com/playlist?list=WL
// #2 run following script
(async function() {
const sleep = (timeout) => new Promise(res => setTimeout(res, timeout))
const untilDefined = async (factory, timeout = 100) => {