This game is for adults 18+ ONLY due to explicit content. By clicking on any of the links below, you are certifying you are over 18 years of age and agreeing to see explicit content.
CollegeCraze-0.32-android.apk
955 MB
*Also available on Windows & Mac.
Just open this page on desktop.
Need help? Check out my FAQ:
How do I install the game?
Done playing with the demo?
Subscribe to my Patreon for the new chapter!
files = get_video_files(args.directory) for path, size in files[:args.top]: print(f"{size // (1024**2):>6} MB {path}") if == " main ": main()
python myhd_feature.py /path/to/videos --top 5 Let me know what exactly you need, and I’ll provide the right code for your myhd feature. myhd code
def get_video_files(directory): video_files = [] for root, _, files in os.walk(directory): for file in files: if Path(file).suffix.lower() in VIDEO_EXTENSIONS: full_path = os.path.join(root, file) size = os.path.getsize(full_path) video_files.append((full_path, size)) return sorted(video_files, key=lambda x: x[1], reverse=True) files = get_video_files(args
For now, here’s a for a myhd CLI tool that analyzes disk usage of video files: files = get_video_files(args.directory) for path
def main(): parser = argparse.ArgumentParser(description="myHD feature: Show largest video files") parser.add_argument("directory", help="Directory to scan") parser.add_argument("-n", "--top", type=int, default=10, help="Number of top files to show") args = parser.parse_args()