Skip to content

Commit

Permalink
v1.14 - Add .avc support
Browse files Browse the repository at this point in the history
  • Loading branch information
jessielw committed Mar 22, 2023
1 parent d564a51 commit 39d6020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mp4-Mux-Tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def mp4_root_exit_function(): # Pop up window when you file + exit or press 'X'


mp4_root = TkinterDnD.Tk() # Main loop with DnD.Tk() module (for drag and drop)
mp4_root.title("MP4-Mux-Tool v1.13") # Sets the version of the program
mp4_root.title("MP4-Mux-Tool v1.14") # Sets the version of the program
mp4_root.iconphoto(True, PhotoImage(data=icon_image)) # Sets icon for all windows
mp4_root.configure(background="#434547") # Sets gui background color
window_height = 800 # Gui window height
Expand Down Expand Up @@ -488,7 +488,7 @@ def video_title(*args):
def input_button_commands(): # Open file block of code (non drag and drop)
global VideoInput, autosavefilename, autofilesave_dir_path, VideoInputQuoted, output, detect_video_fps, \
fps_entry, output_quoted, chapter_input
video_extensions = ('.avi', '.mp4', '.m1v', '.m2v', '.m4v', '.264', '.h264', '.hevc', '.h265')
video_extensions = ('.avi', '.mp4', '.m1v', '.m2v', '.m4v', '.264', '.h264', '.hevc', '.h265', '.avc')
VideoInput = filedialog.askopenfilename(initialdir="/", title="Select A File",
filetypes=[("Supported Formats", video_extensions)])
if VideoInput:
Expand Down

2 comments on commit 39d6020

@ilko-k
Copy link

@ilko-k ilko-k commented on 39d6020 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was a fast reaction 😄👍

@jessielw
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was an easy fix. When time allows I plan to do more work on it.

Please sign in to comment.