├── .flake8 ├── .github ├── FUNDING.yml └── workflows │ ├── auto_rebase.yml │ ├── build.yml │ ├── check.yml │ └── import_cert.sh ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── assets │ ├── fonts │ │ ├── quarter_rest.ttf │ │ └── roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ ├── generate_icons.sh │ ├── icon.icns │ ├── icon.ico │ ├── icon.svg │ └── quarter_rest.svg ├── electron-builder.config.js ├── generated │ └── .gitkeep ├── get_version.js ├── ipc │ ├── ipc_main.ts │ └── ipc_renderer.ts ├── jest.config.js ├── main_process │ ├── index.ts │ ├── menu.ts │ ├── server.ts │ ├── types.ts │ ├── vite_main.config.js │ └── windowList.ts ├── package-lock.json ├── package.json ├── scripts │ ├── build.js │ ├── dev.js │ └── generate_licenses.mjs ├── src │ ├── components │ │ ├── App.tsx │ │ ├── FilePicker.tsx │ │ ├── Menu.tsx │ │ ├── TitleBar.tsx │ │ ├── Tour.tsx │ │ ├── Util.tsx │ │ ├── theme.ts │ │ ├── useElementSize.ts │ │ └── useListener.ts │ ├── core │ │ ├── document.spec.ts │ │ ├── document.ts │ │ ├── ffmpeg.ts │ │ ├── otio.ts │ │ ├── player.ts │ │ ├── webvtt.spec.ts │ │ └── webvtt.ts │ ├── index.css │ ├── index.html │ ├── index.tsx │ ├── pages │ │ ├── About.tsx │ │ ├── Editor │ │ │ ├── Cursor.tsx │ │ │ ├── Document.pup.spec.ts │ │ │ ├── Document.tsx │ │ │ ├── ExportDocumentDialog.tsx │ │ │ ├── ExportOptions │ │ │ │ ├── Audio.tsx │ │ │ │ ├── Otio.tsx │ │ │ │ ├── Subtitles.tsx │ │ │ │ ├── Text.tsx │ │ │ │ ├── Video.tsx │ │ │ │ └── index.ts │ │ │ ├── Filter │ │ │ │ └── index.tsx │ │ │ ├── MenuBar.tsx │ │ │ ├── Paragraph.tsx │ │ │ ├── Player.tsx │ │ │ ├── TitleBar.tsx │ │ │ └── index.tsx │ │ ├── Landing.tsx │ │ ├── LanguageSettings.tsx │ │ ├── ModelManager.tsx │ │ ├── Transcribe.tsx │ │ └── Transcribing.tsx │ ├── server_api │ │ ├── api.ts │ │ └── index.ts │ ├── state │ │ ├── editor │ │ │ ├── display.ts │ │ │ ├── edit.spec.ts │ │ │ ├── edit.ts │ │ │ ├── index.ts │ │ │ ├── io.ts │ │ │ ├── play.spec.ts │ │ │ ├── play.ts │ │ │ ├── selection.spec.ts │ │ │ ├── selection.ts │ │ │ ├── selectors.spec.ts │ │ │ ├── selectors.ts │ │ │ ├── transcript_correction.spec.ts │ │ │ ├── transcript_correction.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── nav.ts │ │ ├── server.ts │ │ ├── transcribe.ts │ │ └── util.ts │ ├── tour │ │ ├── EditorTour.tsx │ │ ├── LandingTour.tsx │ │ ├── LanguageSettingsTour.tsx │ │ ├── ModelManagerTour.tsx │ │ └── TranscribeTour.tsx │ ├── types │ │ ├── appdirectiory.d.ts │ │ ├── css_properties.d.ts │ │ ├── fessonia.d.ts │ │ ├── ffmpeg-static.d.ts │ │ ├── import_meta.d.ts │ │ ├── navigator.d.ts │ │ ├── svg.d.ts │ │ ├── test_helper.d.ts │ │ └── window.d.ts │ ├── util │ │ ├── document_linter.ts │ │ ├── index.spec.ts │ │ ├── index.ts │ │ ├── itertools.spec.ts │ │ ├── itertools.ts │ │ ├── jest_puppeteer_electron_environment.js │ │ ├── jest_puppeteer_electron_environment.pup.spec.ts │ │ ├── log.ts │ │ ├── reducer_test_helper.ts │ │ └── test_helper.ts │ └── vite_renderer.config.js └── tsconfig.json ├── doc ├── fileformat_v3.md ├── pf_funding_logos.svg └── screenshot.png └── server ├── .gitignore ├── README.md ├── app ├── __init__.py ├── config.py ├── main.py ├── models.py ├── models.yml ├── otio.py ├── tasks.py └── transcribe.py ├── build_server.sh ├── poetry.lock ├── pyoxidizer.bzl ├── pyproject.toml ├── run.py └── scripts ├── generate_models_list.py ├── list_tasks.py └── transcribe.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/auto_rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.github/workflows/auto_rebase.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/import_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.github/workflows/import_cert.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | app/server/ 4 | 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/README.md -------------------------------------------------------------------------------- /app/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/.eslintrc.json -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.prettierignore: -------------------------------------------------------------------------------- 1 | src/resources/ 2 | -------------------------------------------------------------------------------- /app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/.prettierrc -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/README.md -------------------------------------------------------------------------------- /app/assets/fonts/quarter_rest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/quarter_rest.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/assets/fonts/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/fonts/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /app/assets/generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/generate_icons.sh -------------------------------------------------------------------------------- /app/assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/icon.icns -------------------------------------------------------------------------------- /app/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/icon.ico -------------------------------------------------------------------------------- /app/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/icon.svg -------------------------------------------------------------------------------- /app/assets/quarter_rest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/assets/quarter_rest.svg -------------------------------------------------------------------------------- /app/electron-builder.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/electron-builder.config.js -------------------------------------------------------------------------------- /app/generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/get_version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/get_version.js -------------------------------------------------------------------------------- /app/ipc/ipc_main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/ipc/ipc_main.ts -------------------------------------------------------------------------------- /app/ipc/ipc_renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/ipc/ipc_renderer.ts -------------------------------------------------------------------------------- /app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/jest.config.js -------------------------------------------------------------------------------- /app/main_process/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/index.ts -------------------------------------------------------------------------------- /app/main_process/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/menu.ts -------------------------------------------------------------------------------- /app/main_process/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/server.ts -------------------------------------------------------------------------------- /app/main_process/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/types.ts -------------------------------------------------------------------------------- /app/main_process/vite_main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/vite_main.config.js -------------------------------------------------------------------------------- /app/main_process/windowList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/main_process/windowList.ts -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/package.json -------------------------------------------------------------------------------- /app/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/scripts/build.js -------------------------------------------------------------------------------- /app/scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/scripts/dev.js -------------------------------------------------------------------------------- /app/scripts/generate_licenses.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/scripts/generate_licenses.mjs -------------------------------------------------------------------------------- /app/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/App.tsx -------------------------------------------------------------------------------- /app/src/components/FilePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/FilePicker.tsx -------------------------------------------------------------------------------- /app/src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/Menu.tsx -------------------------------------------------------------------------------- /app/src/components/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/TitleBar.tsx -------------------------------------------------------------------------------- /app/src/components/Tour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/Tour.tsx -------------------------------------------------------------------------------- /app/src/components/Util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/Util.tsx -------------------------------------------------------------------------------- /app/src/components/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/theme.ts -------------------------------------------------------------------------------- /app/src/components/useElementSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/useElementSize.ts -------------------------------------------------------------------------------- /app/src/components/useListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/components/useListener.ts -------------------------------------------------------------------------------- /app/src/core/document.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/document.spec.ts -------------------------------------------------------------------------------- /app/src/core/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/document.ts -------------------------------------------------------------------------------- /app/src/core/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/ffmpeg.ts -------------------------------------------------------------------------------- /app/src/core/otio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/otio.ts -------------------------------------------------------------------------------- /app/src/core/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/player.ts -------------------------------------------------------------------------------- /app/src/core/webvtt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/webvtt.spec.ts -------------------------------------------------------------------------------- /app/src/core/webvtt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/core/webvtt.ts -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/index.html -------------------------------------------------------------------------------- /app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/index.tsx -------------------------------------------------------------------------------- /app/src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/About.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/Cursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Cursor.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/Document.pup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Document.pup.spec.ts -------------------------------------------------------------------------------- /app/src/pages/Editor/Document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Document.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportDocumentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportDocumentDialog.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/Audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/Audio.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/Otio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/Otio.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/Subtitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/Subtitles.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/Text.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/Video.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/ExportOptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/ExportOptions/index.ts -------------------------------------------------------------------------------- /app/src/pages/Editor/Filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Filter/index.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/MenuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/MenuBar.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Paragraph.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/Player.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/TitleBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/TitleBar.tsx -------------------------------------------------------------------------------- /app/src/pages/Editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Editor/index.tsx -------------------------------------------------------------------------------- /app/src/pages/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Landing.tsx -------------------------------------------------------------------------------- /app/src/pages/LanguageSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/LanguageSettings.tsx -------------------------------------------------------------------------------- /app/src/pages/ModelManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/ModelManager.tsx -------------------------------------------------------------------------------- /app/src/pages/Transcribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Transcribe.tsx -------------------------------------------------------------------------------- /app/src/pages/Transcribing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/pages/Transcribing.tsx -------------------------------------------------------------------------------- /app/src/server_api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/server_api/api.ts -------------------------------------------------------------------------------- /app/src/server_api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/server_api/index.ts -------------------------------------------------------------------------------- /app/src/state/editor/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/display.ts -------------------------------------------------------------------------------- /app/src/state/editor/edit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/edit.spec.ts -------------------------------------------------------------------------------- /app/src/state/editor/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/edit.ts -------------------------------------------------------------------------------- /app/src/state/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/index.ts -------------------------------------------------------------------------------- /app/src/state/editor/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/io.ts -------------------------------------------------------------------------------- /app/src/state/editor/play.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/play.spec.ts -------------------------------------------------------------------------------- /app/src/state/editor/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/play.ts -------------------------------------------------------------------------------- /app/src/state/editor/selection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/selection.spec.ts -------------------------------------------------------------------------------- /app/src/state/editor/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/selection.ts -------------------------------------------------------------------------------- /app/src/state/editor/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/selectors.spec.ts -------------------------------------------------------------------------------- /app/src/state/editor/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/selectors.ts -------------------------------------------------------------------------------- /app/src/state/editor/transcript_correction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/transcript_correction.spec.ts -------------------------------------------------------------------------------- /app/src/state/editor/transcript_correction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/transcript_correction.ts -------------------------------------------------------------------------------- /app/src/state/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/editor/types.ts -------------------------------------------------------------------------------- /app/src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/index.ts -------------------------------------------------------------------------------- /app/src/state/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/models.ts -------------------------------------------------------------------------------- /app/src/state/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/nav.ts -------------------------------------------------------------------------------- /app/src/state/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/server.ts -------------------------------------------------------------------------------- /app/src/state/transcribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/transcribe.ts -------------------------------------------------------------------------------- /app/src/state/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/state/util.ts -------------------------------------------------------------------------------- /app/src/tour/EditorTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/tour/EditorTour.tsx -------------------------------------------------------------------------------- /app/src/tour/LandingTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/tour/LandingTour.tsx -------------------------------------------------------------------------------- /app/src/tour/LanguageSettingsTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/tour/LanguageSettingsTour.tsx -------------------------------------------------------------------------------- /app/src/tour/ModelManagerTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/tour/ModelManagerTour.tsx -------------------------------------------------------------------------------- /app/src/tour/TranscribeTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/tour/TranscribeTour.tsx -------------------------------------------------------------------------------- /app/src/types/appdirectiory.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'appdirectory'; 2 | -------------------------------------------------------------------------------- /app/src/types/css_properties.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/css_properties.d.ts -------------------------------------------------------------------------------- /app/src/types/fessonia.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/fessonia.d.ts -------------------------------------------------------------------------------- /app/src/types/ffmpeg-static.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'ffmpeg-static'; 2 | -------------------------------------------------------------------------------- /app/src/types/import_meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/import_meta.d.ts -------------------------------------------------------------------------------- /app/src/types/navigator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/navigator.d.ts -------------------------------------------------------------------------------- /app/src/types/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/svg.d.ts -------------------------------------------------------------------------------- /app/src/types/test_helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/test_helper.d.ts -------------------------------------------------------------------------------- /app/src/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/types/window.d.ts -------------------------------------------------------------------------------- /app/src/util/document_linter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/document_linter.ts -------------------------------------------------------------------------------- /app/src/util/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/index.spec.ts -------------------------------------------------------------------------------- /app/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/index.ts -------------------------------------------------------------------------------- /app/src/util/itertools.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/itertools.spec.ts -------------------------------------------------------------------------------- /app/src/util/itertools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/itertools.ts -------------------------------------------------------------------------------- /app/src/util/jest_puppeteer_electron_environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/jest_puppeteer_electron_environment.js -------------------------------------------------------------------------------- /app/src/util/jest_puppeteer_electron_environment.pup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/jest_puppeteer_electron_environment.pup.spec.ts -------------------------------------------------------------------------------- /app/src/util/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/log.ts -------------------------------------------------------------------------------- /app/src/util/reducer_test_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/reducer_test_helper.ts -------------------------------------------------------------------------------- /app/src/util/test_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/util/test_helper.ts -------------------------------------------------------------------------------- /app/src/vite_renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/src/vite_renderer.config.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /doc/fileformat_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/doc/fileformat_v3.md -------------------------------------------------------------------------------- /doc/pf_funding_logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/doc/pf_funding_logos.svg -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/config.py -------------------------------------------------------------------------------- /server/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/main.py -------------------------------------------------------------------------------- /server/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/models.py -------------------------------------------------------------------------------- /server/app/models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/models.yml -------------------------------------------------------------------------------- /server/app/otio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/otio.py -------------------------------------------------------------------------------- /server/app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/tasks.py -------------------------------------------------------------------------------- /server/app/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/app/transcribe.py -------------------------------------------------------------------------------- /server/build_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/build_server.sh -------------------------------------------------------------------------------- /server/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/poetry.lock -------------------------------------------------------------------------------- /server/pyoxidizer.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/pyoxidizer.bzl -------------------------------------------------------------------------------- /server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/pyproject.toml -------------------------------------------------------------------------------- /server/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/run.py -------------------------------------------------------------------------------- /server/scripts/generate_models_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/scripts/generate_models_list.py -------------------------------------------------------------------------------- /server/scripts/list_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/scripts/list_tasks.py -------------------------------------------------------------------------------- /server/scripts/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbakery/audapolis/HEAD/server/scripts/transcribe.py --------------------------------------------------------------------------------