Skip to content

Instantly share code, notes, and snippets.

View austinyen56's full-sized avatar
🏠
Working from home

Austin Yen austinyen56

🏠
Working from home
View GitHub Profile
@austinyen56
austinyen56 / photosort.py
Last active February 19, 2024 01:26
Photo and Video Sort
import os
from datetime import datetime
from tkinter import *
from tkinter.filedialog import askdirectory
import shutil
def photoSort():
path = askdirectory(title='Select your folder')
for i in os.listdir(path):
if i.endswith('.XML'):
@austinyen56
austinyen56 / wows.py
Last active August 4, 2022 19:56
WOWS Updater
"""
Made by @austinyen56
Allows automatic update for default max framerate in wows. Also removes all unecessary VO mods.
"""
import os
import xml.etree.ElementTree as ET
import shutil
@austinyen56
austinyen56 / ytdownload.py
Last active March 18, 2023 17:06
Music Downloader
# [YouTube Downloader]
# Made by @austinyen56
# Allows you to download music from most streaming services (YT, SoundCloud... etc) in multiple formats(mp3, wav, flac)
# Supports thumbnail embedding for mp3 option only
# - Requires yt-dlp to be installed (python -m pip install -U yt-dlp)
# - Must download and add ffmpeg.exe in 'C:\Users\<Name>\AppData\Local\Programs\Python\Python3<ver>\Scripts' in addition with the ffmpeg library
import os