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
| // this works well in the console - apparently, userjs managers have a | |
| // limitation that prevents them from running this or Spotify is a bitch | |
| // tested with latest Firefox ESR | |
| // load an album page, open your console, paste this, then right click | |
| // on any track and select "view credits" once to capture authentication | |
| const credits = new Map(); | |
| let auth; |
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
| <?php | |
| /* | |
| generates an iptv-player friendly m3u8 playlist with most tvp.pl vod channels; | |
| wont work outside of poland because of geoblocking, as of late, but MAY BE | |
| working when run on a server IN poland. | |
| */ |
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
| gawk "!visited[$0]++" FILE | sed "s#^([0-9]{1,}$)#\n\1#g" |
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
| /Calle.Number>EURE_NUMMER/!d | |
| s#.*<Type>\(.*\)</Type><Caller>\(.*\)</Caller>.*<Date>\(.*\)</Date><Duration>\(.*\)</Duration>#\1: \3 \4 EIN \2#g | |
| s#.*<Type>\(.*\)</Type><Called>\(.*\)</Called>.*<Date>\(.*\)</Date><Duration>\(.*\)</Duration>#\1: \3 \4 AUS \2#g | |
| s#<Calle.*</Port>##g | |
| s#<Count></Count><Path /></Call>##g | |
| # callist zb mit | |
| # fritzBoxShell.sh OnTel GetCallList 7 | |
| # holen, dann | |
| # sed -f callist.sed callist.xml | sort |
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
| s/\([begin|end]\)=\"10/\1=\"00/gi | |
| s/\([begin|end]\)=\"11/\1=\"01/gi |
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
| // this will scrape a button attribute and convert | |
| // More options for The Wounds We Bled by Heather Nova | |
| // to | |
| // Heather Nova - The Wounds We Bled | |
| // | |
| // works only if the spotify ui language is english | |
| var mlnk = ""; | |
| for (var i = 0, l = document.querySelectorAll('[data-testid="more-button"]').length - 1; i < l; ++i) { |
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
| #EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 12.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0 | |
| #EXTVLCOPT:http-referrer=https://popcorntimes.tv/ | |
| https://cdn0.popcorntimes.tv/pfad-zum-film.mp4 |
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
| @echo off | |
| setlocal enabledelayedexpansion | |
| for %%a in (%*) do ( | |
| ffprobe -v error -select_streams a -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 "%%~fa" | findstr /i "dts" >nul | |
| if !errorlevel! equ 0 ( | |
| set filename="%%~dpna-ac3.mkv" | |
| ffmpeg -i "%%~fa" -vcodec copy -scodec copy -acodec ac3 -b:a 640k %filename% | |
| echo converted %filename% | |
| ) |
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
| // save this as a bookmarklet, | |
| // go to your viewing history ( via https://www.netflix.com/settings ) | |
| // choose your profile and hit your bookmarklet | |
| javascript: var mlnk =""; for (var i = 0, l = document.getElementsByTagName("ul")[3].getElementsByTagName("li").length -1; i < l; ++i) { var mydate = document.getElementsByClassName("date")[i].innerText.split("."); if (mydate[1] < 10) { month = "0"+mydate[1] } else { month = mydate[1] } mlnk += mydate[0] + "." + month + "." + mydate[2] + "\t"; mlnk += document.getElementsByClassName("title")[i].innerText + "\n"; } navigator.clipboard.writeText(mlnk); | |
| // here's the text in human readable form: | |
| javascript: | |
| var mlnk = ""; | |
| for (var i = 0, l = document.getElementsByTagName("ul")[3].getElementsByTagName("li").length - 1; i < l; ++i) { |
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 Pluto TV .m3u8 Grabber FORK | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.8.5 | |
| // @description Captures m3u8 URLs via XHR and retrieves the last intercepted URL | |
| // @author GhostyTongue + tiny addition by mihau | |
| // @match *://*.pluto.tv/* | |
| // @grant none | |
| // @license MIT | |
| // @downloadURL https://update.greasyfork.org/scripts/506067/Pluto%20TV%20m3u8%20Grabber.user.js |
NewerOlder