| Account | Team | Code |
|---|---|---|
| Jaidchen (Main) | Mystic | 5533 4645 1999 |
| Jaidli (Zweitaccount) | Valor | 4440 8080 1561 |
| Jaidilein (Testaccount) | Mystic | 0615 2607 3855 |
| V-Codec | A-Codec | profile | pix_fmt | qscale | File Size | Speed |
|---|---|---|---|---|---|---|
| prores_ks | pcm_s16le | 1610 MB | 164 % | |||
| prores_ks | pcm_s16le | proxy | 353 MB | 103 % | ||
| prores_ks | pcm_s16le | proxy | 4 | 740 MB | 726 % | |
| prores_ks | pcm_s16le | proxy | 10 | 424 MB | 738 % | |
| prores_ks | pcm_s16le | proxy | 12 | 375 MB | 762 % | |
| prores_ks | pcm_s16le | proxy | 16 | 309 MB | 729 % |
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
| ; From https://gist.github.com/Jaid/41f660b57989f2b82f53c8a287040b17 | |
| print(message, title := unset) { | |
| if IsSetRef(&title) { | |
| print title ": " message | |
| } else { | |
| ; Output for exe files | |
| /*@Ahk2Exe-Keep | |
| FileAppend message "`n", "*" | |
| */ | |
| ; Output for ahk files |
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
| #Warn All, StdOut | |
| #SingleInstance Prompt | |
| SetTitleMatchMode "RegEx" | |
| ProcessSetPriority "High" |
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
| ; From https://gist.github.com/Jaid/407c0f2b01aace1125ea34915ce1f6bb | |
| full_command_line := DllCall("GetCommandLine", "str") | |
| if not (A_IsAdmin or RegExMatch(full_command_line, " /restart(?!\S)")) { | |
| try { | |
| if A_IsCompiled { | |
| Run '*RunAs "' A_ScriptFullPath '" /restart' | |
| } else { | |
| Run '*RunAs "' A_AhkPath '" /restart "' A_ScriptFullPath '"' | |
| } | |
| } |
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
| titleSearch := "My Window" | |
| matchCount := WinGetCount titleSearch | |
| OutputDebug "Window count: " matchCount "`n" | |
| hwnd := WinGetID titleSearch | |
| OutputDebug "Window Handle: " hwnd "`n" | |
| windowTitle := WinGetTitle hwnd | |
| OutputDebug "Window Title: " windowTitle "`n" |
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
| class Stopwatch { | |
| time := false | |
| __New() { | |
| this.start() | |
| } | |
| start() { | |
| this.time := A_TickCount | |
| } | |
| end() { | |
| return A_TickCount - this.time |