Skip to content

Commit 8d4b8dd

Browse files
author
Miłosz Thiede
committed
remove junk
1 parent ccd03f8 commit 8d4b8dd

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

src/libba.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,8 @@ def find_vid_res(pathToInputVideo):
8181
cmd = "ffprobe -v quiet -print_format json -show_streams"
8282
args = shlex.split(cmd)
8383
args.append(pathToInputVideo)
84-
# run the ffprobe process, decode stdout into utf-8 & convert to JSON
8584
ffprobeOutput = subprocess.check_output(args).decode("utf-8")
8685
ffprobeOutput = json.loads(ffprobeOutput)
87-
88-
# find height and width
8986
height = ffprobeOutput["streams"][0]["height"]
9087
width = ffprobeOutput["streams"][0]["width"]
9188

@@ -95,4 +92,3 @@ def find_vid_res(pathToInputVideo):
9592

9693
if __name__ == "__main__":
9794
print("! Please do not run this as a standalone.")
98-
# shutil.rmtree("bc-tmp")

src/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ def add_part():
9191
# Clean terminal for us
9292
print("\n"*os.get_terminal_size()[1])
9393
print (u"{}[2J{}[;H".format(chr(27), chr(27)), end="")
94-
# print("\033c",end="")
95-
# clear()
9694
#A simple function which prints out formatted string with color and what is it.
9795
def prform(which:str, string:str):
9896
INFO = Fore.BLUE+"i "+Fore.WHITE

src/test-decode.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)