Skip to content

Commit 0b473c9

Browse files
committed
Release v1.0.3
1 parent 5ab45c7 commit 0b473c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vidminal.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ def main():
197197
extract_and_set_ffmpeg_bin() # pulls ffmpeg from zip, sets env, whatever
198198
print('Turns videos into ugly terminal art. With sound.')
199199
print('Made by a lazy coder. @github/SajagIN')
200-
vid = input('Video file? (default: BadApple.mp4): ').strip() or 'BadApple.mp4'
200+
vid_input = input('Video file? (default: BadApple.mp4): ').strip()
201+
vid = find_resource_path(vid_input) if vid_input else find_resource_path('BadApple.mp4')
201202
temp = input('Temp folder? (default: temp): ').strip() or 'temp'
202203
try:
203204
width = int(input('How wide? (default: 80): ').strip() or 80)

0 commit comments

Comments
 (0)