We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd97808 commit 878e64dCopy full SHA for 878e64d
whisperGUI.py
@@ -3,7 +3,21 @@
3
4
@Gooey(required_cols=1,
5
target='main.exe',
6
- suppress_gooey_flag=True)
+ suppress_gooey_flag=True,
7
+ program_name='whisper.cppGUI',
8
+ menu=[{'name': 'File',
9
+ 'items': [{
10
+ 'type': 'AboutDialog',
11
+ 'menuTitle': 'Download GGML models',
12
+ 'name': 'Download the GGML models below',
13
+ 'website': 'https://huggingface.co/datasets/ggerganov/whisper.cpp/tree/main'
14
+ },{
15
+ 'type': 'Link',
16
+ 'menuTitle': 'Visit Our Site',
17
+ 'url': 'https://github.com/Topping1/whispercppGUI'
18
+ }]
19
20
+ )
21
def main():
22
parser = GooeyParser(description='GUI for whisper.cpp, a high-performance C++ port of OpenAI\'s Whisper')
23
0 commit comments