This is a SCRIPT-8 cassette.
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
| ffmpeg -i "$1" -r 14 -an -vf scale=1080:1920 -filter:v "setpts=0.5*PTS" "$1.fr.mp4" | |
| #exit; | |
| ffmpeg -i "$1.fr.mp4" -r 30 -filter:v "setpts=0.5*PTS" "$1.rs.mp4" | |
| ffmpeg -i "$1.rs.mp4" -filter_complex "[0:v]reverse,fifo[r];[0:v][r] concat=n=2:v=1 [v] " -map "[v]" "$1.b.mp4" | |
| for i in {1..4}; do printf "file '%s'\n" $1.b.mp4 >> list.$1.txt; done | |
| ffmpeg -f concat -i list.$1.txt -c copy $1.boomerang.mp4 | |
| rm "$1.fr.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
| Stap 1: Tampermonkey installeren | |
| Chrome: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=nl | |
| Firefox: https://addons.mozilla.org/nl/firefox/addon/tampermonkey/ | |
| Stap 2: | |
| Surf naar hier en installeer: https://openuserjs.org/scripts/timbroddin/VRT_NU_Video_Player_full_screen_livestream | |
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
| setInterval(() => document.title = `${window.queueViewModel.ticket.progress()*100}%`, 1000); |
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
| const flow = machine => { | |
| machine.register("intro", ({ machine, conv, input }) => { | |
| conv.ask("Dit is een kleine demonstratie. Wat is je naam?"); | |
| return { | |
| next: "vraag_naam" | |
| }; | |
| }); | |
| machine.register("vraag_naam", ({ machine, conv, input }) => { |
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
| Looking for files in /Users/timbroddin/Downloads/messages 2/inbox/HLNCOMMENTS_A-SR9EtryQ/*.json | |
| Totaal aantal berichten: 16088 | |
| ----------------------------------- | |
| Aantal berichten | |
| ----------------------------------- | |
| ┌──────────────────┬────────┬─────────┐ | |
| │ Naam │ Aantal │ Percent │ | |
| ├──────────────────┼────────┼─────────┤ |
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
| { | |
| posts { | |
| entries { | |
| artist { | |
| name | |
| } | |
| photographers { | |
| firstName | |
| lastName | |
| fullName |
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
| version: "2" | |
| services: | |
| portainer: | |
| image: portainer/portainer | |
| container_name: portainer | |
| ports: | |
| - 9000:9000 | |
| labels: | |
| - "traefik.http.routers.portainer.rule=Host(`portainer.example.com`)" | |
| - "traefik.http.routers.portainer.tls=true" |
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
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a1/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a2/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a3/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a4/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a5/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a6/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a7/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a8/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a9/ | |
| https://www.vrt.be/vrtnu/a-z/dertigers/4/dertigers-s4a10/ |
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
| const CopyrightPlugin = { | |
| requestDidStart(requestContext) { | |
| return { | |
| willSendResponse(context) { | |
| context.response.extensions = { | |
| ...context.response.extensions, | |
| copyright: | |
| "All data returned by this API is copyrighted by Wannabes and the respective photographer(s).", | |
| }; | |
| }, |