SourceCode -- That Domain

Program and Script SourceCode

I do a little programming in my free time using python, and it's nice and pretty enjoyable. I put together some applications and command line utilities to serve my needs or just to do something creative, and the code is below. Enjoy.

Projects I'm Working On

DescribeMe

A small utility which you can enter an image path to and have a program return you a description of it, using the Google Teseract Engine library. Useful if you're blind. Currently, it doesn't work, but here is what I have so far.

Third-Party Dependencies
Show Code import PIL import pytesseract import tkinter as tk from tkinter import filedialog import pyperclip root = tk.Tk() root.withdraw() file_path = filedialog.askopenfilename() open_image = image.open(file_path) image_description = pytesseract.image_to_string(open_image) pyperclip.copy(image_description) print(image_description)
Last Updated on April 22, 2020

MergeUtil

This is actually a fully completed utility that allows you to merge an audio track of choice to a video track of choice. It needs some work before I can compile it into a Windows executable, but for now it works just fine as a python script

Third Party Dependencies