Skip to content

Instantly share code, notes, and snippets.

View gokaybiz's full-sized avatar
🌪️
Focusing

gokaybiz

🌪️
Focusing
View GitHub Profile
@gokaybiz
gokaybiz / m3u8ToMp4.txt
Created October 26, 2022 13:56
Download movies from vidmoly.
aria2c -x 5 $MasterM3U8URL
aria2c -x 5 -i master.m3u8
aria2c -x 20 -i index-v1-a1.m3u8
find ../seg-*.ts -print0 | sort -zV | xargs -0 cat > noCountryForOldMen.ts
ffmpeg -i noCountryForOldMen.ts -vcodec copy -acodec copy -bsf:a aac_adtstoasc noCountryForOldMen.mp4
@gokaybiz
gokaybiz / main.py
Created February 8, 2023 07:58
DiabloIII zoom utility
import pymem
import windows
PROCESS_NAME = 'Diablo III64.exe'
THREADSTACK0 = 0x000007D8
OFFSETS = [0xC10, 0xAD8, 0x48, 0x18]
def get_thread_local_storage(process_name: str):
target_process = None
pointer_size = 4 * 2