This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/////////////////////////////////////////////////////////////////////////////////////////////////// | |
// WAT DO | |
//------------------------------------------------------------------------------------------------- | |
// Intended to scrape youtube video thumbnail, title (with embeded hyperlink), estimated date. And | |
// save as a .html file | |
/////////////////////////////////////////////////////////////////////////////////////////////////// | |
// USAGE | |
//------------------------------------------------------------------------------------------------- | |
// - Open up your browser's dev tools (CTRL + SHIFT + C [works for me]) | |
// - Navigate to 'Console' tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
::Change directory below to point to your youtube-dl folder | |
cd "C:\Users\%USERNAME%\Downloads\youtube-dl" | |
setlocal EnableDelayedExpansion | |
set "input=" | |
set "p-start=" | |
set "p-end=" |