├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── README.md ├── resources ├── icon.bmp ├── icon.ico ├── icon.png ├── icon.rc ├── mic.png ├── preview.png ├── resources.qrc └── stop.png └── src ├── build.bat ├── filequeue.cpp ├── filequeue.h ├── livetranscriber.cpp ├── livetranscriber.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── settings.cpp ├── settings.h ├── setup.iss ├── transcriptionpipeline.cpp ├── transcriptionpipeline.h ├── windowhelper.cpp └── windowhelper.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /Output 3 | CMakeLists.txt.user 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/README.md -------------------------------------------------------------------------------- /resources/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/icon.bmp -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icon.rc: -------------------------------------------------------------------------------- 1 | IDR_MAINFRAME ICON DISCARDABLE "icon.ico" 2 | -------------------------------------------------------------------------------- /resources/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/mic.png -------------------------------------------------------------------------------- /resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/preview.png -------------------------------------------------------------------------------- /resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/resources.qrc -------------------------------------------------------------------------------- /resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/resources/stop.png -------------------------------------------------------------------------------- /src/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/build.bat -------------------------------------------------------------------------------- /src/filequeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/filequeue.cpp -------------------------------------------------------------------------------- /src/filequeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/filequeue.h -------------------------------------------------------------------------------- /src/livetranscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/livetranscriber.cpp -------------------------------------------------------------------------------- /src/livetranscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/livetranscriber.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/setup.iss -------------------------------------------------------------------------------- /src/transcriptionpipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/transcriptionpipeline.cpp -------------------------------------------------------------------------------- /src/transcriptionpipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/transcriptionpipeline.h -------------------------------------------------------------------------------- /src/windowhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/windowhelper.cpp -------------------------------------------------------------------------------- /src/windowhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehtabmahir/easy-whisper-ui/HEAD/src/windowhelper.h --------------------------------------------------------------------------------