Removed the confirmation dialog on encode
[biamove.git] / biamove.py
1 #!/usr/bin/env python
2
3 # main application launcher for the BiaMovE application
4
5 from mainwindow import *
6
7 def main ():
8 root = Tkinter.Tk ()
9 root.title ("BiaMovE - Video encoder GUI")
10 wnd = MainWindow (master=root)
11 wnd.mainloop ()
12
13 if __name__ == "__main__":
14 main ()