This file contains hidden or 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
| // ==UserScript== | |
| // @name YouTube Playback Error Auto-Refresh | |
| // @namespace https://local.userscripts/youtube-error-refresh | |
| // @version 3.0.0 | |
| // @description When YouTube's "An error occurred, please try again later" playback overlay appears, clears the per-tab sessionStorage (mimicking a fresh tab) and reloads the SAME tab, until the video is playable. Language-independent. Does NOT autoplay. No new tabs. | |
| // @author Antonio Santoro | |
| // @match https://www.youtube.com/* | |
| // @match https://m.youtube.com/* | |
| // @run-at document-start | |
| // @grant none |
This file contains hidden or 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
| for %i in (*.wav) do ffmpeg -i "%i" -b:a 320k "%~ni.mp3" |
This file contains hidden or 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
| function ClickConnect(){ | |
| console.log("Working"); | |
| document.querySelector("colab-toolbar-button#connect").click() | |
| } | |
| setInterval(ClickConnect,60000) |