├── .editorconfig ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ ├── erb-logo.png │ └── palette-sponsor-banner.svg ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yarnrc.yml ├── LICENSE ├── README.md ├── assets ├── assets.d.ts ├── entitlements.mac.plist ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg └── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── package.json ├── patches └── fluent-ffmpeg+2.1.2.patch ├── release └── app │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── src ├── constants.ts ├── ipcHub │ ├── createIpcChannel.ts │ ├── index.ts │ ├── modules │ │ ├── app.ts │ │ ├── dialog.ts │ │ ├── ffmpeg.ts │ │ ├── python │ │ │ ├── index.ts │ │ │ ├── pythonOrder.d.ts │ │ │ └── utils │ │ │ │ ├── callGenerateSrtPyScript.ts │ │ │ │ ├── workerOfInferSpeakerSimilarity.ts │ │ │ │ └── workerOfSeparateVocals.ts │ │ └── window.ts │ └── utils │ │ └── utils.ts ├── main │ ├── init.ts │ ├── main.ts │ ├── menu.ts │ ├── preload.ts │ └── util.ts └── renderer │ ├── App.tsx │ ├── assets │ └── icons │ │ ├── maximize.svg │ │ ├── nodata.svg │ │ └── shrink.svg │ ├── components │ └── cssVariablesOfTheme │ │ └── index.tsx │ ├── hooks │ └── useStateWithRef.ts │ ├── index.ejs │ ├── index.tsx │ ├── prefs │ ├── appSettingsPrefs.ts │ ├── autoFilterPrefs.ts │ ├── speakersPrefs.ts │ └── utils │ │ └── plainPrefs.ts │ ├── preload.d.ts │ ├── store │ ├── index.ts │ ├── main.ts │ └── speakers.ts │ ├── styles │ ├── common.scss │ ├── flex.scss │ ├── globals.scss │ └── index.scss │ ├── utils │ ├── cachedResultForInferSpeakerSimilarity.ts │ ├── globalBackdrop.tsx │ ├── notify.tsx │ ├── parseTimeRangesFromSubtitle.ts │ ├── storage.ts │ └── utils.ts │ └── views │ ├── appHeader │ ├── index.module.scss │ └── index.tsx │ ├── fragments │ ├── operationPanel │ │ ├── components │ │ │ ├── dialogOfAutoFilter │ │ │ │ ├── components │ │ │ │ │ └── dialogOfFilterResult │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils │ │ │ │ │ └── filterTasksScheduler.ts │ │ │ ├── dialogOfSpeakerManagement │ │ │ │ ├── index.module.scss │ │ │ │ └── index.tsx │ │ │ ├── dialogOfSubtitleGenerate │ │ │ │ ├── index.module.scss │ │ │ │ └── index.tsx │ │ │ └── dialogOfVideoSlice │ │ │ │ ├── index.module.scss │ │ │ │ └── index.tsx │ │ ├── index.modules.scss │ │ ├── index.tsx │ │ └── utils │ │ │ └── loadSlices.ts │ ├── settings │ │ ├── index.module.scss │ │ └── index.tsx │ ├── sliceList │ │ ├── index.module.scss │ │ └── index.tsx │ └── videoPlayer │ │ ├── components │ │ └── videoPlayerBody │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── index.module.scss │ │ └── index.tsx │ ├── index.tsx │ └── layout │ └── index.tsx ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/package.json -------------------------------------------------------------------------------- /patches/fluent-ffmpeg+2.1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/patches/fluent-ffmpeg+2.1.2.patch -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/release/app/package.json -------------------------------------------------------------------------------- /release/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/release/app/yarn.lock -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/ipcHub/createIpcChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/createIpcChannel.ts -------------------------------------------------------------------------------- /src/ipcHub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/index.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/app.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/dialog.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/ffmpeg.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/python/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/python/index.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/python/pythonOrder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/python/pythonOrder.d.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/python/utils/callGenerateSrtPyScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/python/utils/callGenerateSrtPyScript.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/python/utils/workerOfInferSpeakerSimilarity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/python/utils/workerOfInferSpeakerSimilarity.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/python/utils/workerOfSeparateVocals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/python/utils/workerOfSeparateVocals.ts -------------------------------------------------------------------------------- /src/ipcHub/modules/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/modules/window.ts -------------------------------------------------------------------------------- /src/ipcHub/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/ipcHub/utils/utils.ts -------------------------------------------------------------------------------- /src/main/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/main/init.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/assets/icons/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/assets/icons/maximize.svg -------------------------------------------------------------------------------- /src/renderer/assets/icons/nodata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/assets/icons/nodata.svg -------------------------------------------------------------------------------- /src/renderer/assets/icons/shrink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/assets/icons/shrink.svg -------------------------------------------------------------------------------- /src/renderer/components/cssVariablesOfTheme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/components/cssVariablesOfTheme/index.tsx -------------------------------------------------------------------------------- /src/renderer/hooks/useStateWithRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/hooks/useStateWithRef.ts -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/renderer/prefs/appSettingsPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/prefs/appSettingsPrefs.ts -------------------------------------------------------------------------------- /src/renderer/prefs/autoFilterPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/prefs/autoFilterPrefs.ts -------------------------------------------------------------------------------- /src/renderer/prefs/speakersPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/prefs/speakersPrefs.ts -------------------------------------------------------------------------------- /src/renderer/prefs/utils/plainPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/prefs/utils/plainPrefs.ts -------------------------------------------------------------------------------- /src/renderer/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/store/index.ts -------------------------------------------------------------------------------- /src/renderer/store/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/store/main.ts -------------------------------------------------------------------------------- /src/renderer/store/speakers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/store/speakers.ts -------------------------------------------------------------------------------- /src/renderer/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/styles/common.scss -------------------------------------------------------------------------------- /src/renderer/styles/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/styles/flex.scss -------------------------------------------------------------------------------- /src/renderer/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/styles/globals.scss -------------------------------------------------------------------------------- /src/renderer/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/styles/index.scss -------------------------------------------------------------------------------- /src/renderer/utils/cachedResultForInferSpeakerSimilarity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/cachedResultForInferSpeakerSimilarity.ts -------------------------------------------------------------------------------- /src/renderer/utils/globalBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/globalBackdrop.tsx -------------------------------------------------------------------------------- /src/renderer/utils/notify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/notify.tsx -------------------------------------------------------------------------------- /src/renderer/utils/parseTimeRangesFromSubtitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/parseTimeRangesFromSubtitle.ts -------------------------------------------------------------------------------- /src/renderer/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/storage.ts -------------------------------------------------------------------------------- /src/renderer/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/utils/utils.ts -------------------------------------------------------------------------------- /src/renderer/views/appHeader/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/appHeader/index.module.scss -------------------------------------------------------------------------------- /src/renderer/views/appHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/appHeader/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/components/dialogOfFilterResult/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/components/dialogOfFilterResult/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/utils/filterTasksScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfAutoFilter/utils/filterTasksScheduler.ts -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfSpeakerManagement/index.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfSpeakerManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfSpeakerManagement/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfSubtitleGenerate/index.module.scss: -------------------------------------------------------------------------------- 1 | .largerDialog { 2 | max-width: 750px !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfSubtitleGenerate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfSubtitleGenerate/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfVideoSlice/index.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/components/dialogOfVideoSlice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/components/dialogOfVideoSlice/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/index.modules.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/operationPanel/utils/loadSlices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/operationPanel/utils/loadSlices.ts -------------------------------------------------------------------------------- /src/renderer/views/fragments/settings/index.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/settings/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/sliceList/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/sliceList/index.module.scss -------------------------------------------------------------------------------- /src/renderer/views/fragments/sliceList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/sliceList/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/videoPlayer/components/videoPlayerBody/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/videoPlayer/components/videoPlayerBody/index.module.scss -------------------------------------------------------------------------------- /src/renderer/views/fragments/videoPlayer/components/videoPlayerBody/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/videoPlayer/components/videoPlayerBody/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/fragments/videoPlayer/index.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/views/fragments/videoPlayer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/fragments/videoPlayer/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/index.tsx -------------------------------------------------------------------------------- /src/renderer/views/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/src/renderer/views/layout/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koharubiyori/smartSlicer/HEAD/yarn.lock --------------------------------------------------------------------------------