Initial commit: Linux Transcriber app with multi-language and auto-detection support

This commit is contained in:
Jean
2026-06-04 17:02:35 +02:00
commit 3439c0d90d
4038 changed files with 586721 additions and 0 deletions

8
venv/bin/pyrcc5 Executable file
View File

@@ -0,0 +1,8 @@
#!/home/jean/linux-transcriber/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from PyQt5.pyrcc_main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())