├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ └── 2-feature.yml └── workflows │ ├── docker.yml │ ├── docs.yml │ ├── npm.yml │ ├── release.yml │ └── webui.yml ├── .gitignore ├── .node-version ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── docker ├── Caddyfile ├── Dockerfile ├── config.json ├── docker-compose-fullstack.yml ├── docker-compose.yml ├── fullstack-Caddyfile └── start.sh ├── docs ├── .vitepress │ └── config.mts ├── api-examples.md ├── api │ ├── base.md │ ├── other.md │ ├── preset.md │ ├── record-history.md │ ├── recorder.md │ ├── sync.md │ ├── task.md │ ├── user.md │ └── video.md ├── development │ ├── contributing.md │ └── guide.md ├── faq.md ├── features │ ├── bilibili-upload.md │ ├── danmaku-convert.md │ ├── ffmpeg.md │ ├── file-sync.md │ ├── live-record.md │ ├── notification.md │ ├── video-clip.md │ ├── virtual-record.md │ └── webhook.md ├── guide │ ├── installation.md │ └── introduction.md ├── index.md ├── markdown-examples.md ├── package-lock.json ├── package.json └── public │ ├── logo.png │ ├── preview.png │ └── webui.png ├── package.json ├── packages ├── BilibiliRecorder │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── bilibili_api.ts │ │ ├── blive-message-listener │ │ │ ├── chunk-5NTNTWA4.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── danma.ts │ │ ├── index.ts │ │ ├── stream.ts │ │ ├── test.ts │ │ └── utils.ts │ ├── test │ │ └── stream.test.ts │ ├── tsconfig.json │ ├── tsconfig.vitest.json │ └── vitest.config.ts ├── CLI │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ │ ├── copy_module.js │ │ └── removeDev.js │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── DouYinDanma │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── api.ts │ │ ├── dy.proto │ │ ├── index.ts │ │ ├── proto.js │ │ ├── utils.ts │ │ └── webmssdk.js │ ├── tsconfig.json │ └── types │ │ ├── index.d.ts │ │ └── types.d.ts ├── DouYinRecorder │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── douyin_api.ts │ │ ├── index.ts │ │ ├── loadBalancer │ │ │ ├── IMPLEMENTATION_SUMMARY.md │ │ │ ├── LoadBalancer_README.md │ │ │ ├── example.ts │ │ │ ├── loadBalancer.ts │ │ │ └── loadBalancerManager.ts │ │ ├── sign.ts │ │ ├── stream.ts │ │ ├── test.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tests │ │ └── loadBalancerTest.ts │ └── tsconfig.json ├── DouYuRecorder │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── danma.ts │ │ ├── dy_api.ts │ │ ├── dy_client │ │ │ ├── buffer_coder.ts │ │ │ ├── index.ts │ │ │ └── stt.ts │ │ ├── index.ts │ │ ├── requester.ts │ │ ├── stream.ts │ │ ├── test.ts │ │ └── utils.ts │ └── tsconfig.json ├── HuYaRecorder │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── anticode.ts │ │ ├── huya_api.ts │ │ ├── huya_mobile_api.ts │ │ ├── huya_wup_api.ts │ │ ├── index.ts │ │ ├── requester.ts │ │ ├── stream.ts │ │ ├── test.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── test │ │ ├── mobileApiData.json │ │ └── webApiData.json │ └── tsconfig.json ├── app │ ├── .eslintrc.cjs │ ├── LICENSE │ ├── build │ │ ├── entitlements.mac.plist │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ └── icons │ │ │ ├── 1024x1024.png │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 24x24.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 48x48.png │ │ │ ├── 512x512.png │ │ │ ├── 64x64.png │ │ │ ├── icon.icns │ │ │ └── icon.ico │ ├── dev-app-update.yml │ ├── electron-builder-no-ffmpeg.yml │ ├── electron-builder.yml │ ├── electron.vite.config.ts │ ├── package.json │ ├── resources │ │ └── icon.png │ ├── src │ │ ├── main │ │ │ ├── appConstant.ts │ │ │ ├── common.ts │ │ │ ├── cookie.ts │ │ │ ├── handlers.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── crashLogger.ts │ │ │ │ ├── index.ts │ │ │ │ └── log.ts │ │ ├── preload │ │ │ └── index.ts │ │ ├── renderer │ │ │ ├── auto-imports.d.ts │ │ │ ├── components.d.ts │ │ │ ├── index.html │ │ │ └── src │ │ │ │ ├── App.vue │ │ │ │ ├── apis │ │ │ │ ├── bili.ts │ │ │ │ ├── common.ts │ │ │ │ ├── config.ts │ │ │ │ ├── danma.ts │ │ │ │ ├── index.ts │ │ │ │ ├── llm.ts │ │ │ │ ├── presets │ │ │ │ │ ├── danmu.ts │ │ │ │ │ ├── ffmpeg.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── video.ts │ │ │ │ ├── recoder.ts │ │ │ │ ├── recordHistory.ts │ │ │ │ ├── request.ts │ │ │ │ ├── sync.ts │ │ │ │ ├── task.ts │ │ │ │ ├── user.ts │ │ │ │ └── video.ts │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── styles.less │ │ │ │ ├── icons.svg │ │ │ │ └── images │ │ │ │ │ ├── gift-postion.png │ │ │ │ │ └── moehime.jpg │ │ │ │ ├── components │ │ │ │ ├── AppendVideoDialog.vue │ │ │ │ ├── Artplayer │ │ │ │ │ ├── Index.vue │ │ │ │ │ ├── artplayer-plugin-heatmap.ts │ │ │ │ │ └── artplayer-timestamp.ts │ │ │ │ ├── BiliSetting.vue │ │ │ │ ├── ButtonGroup.vue │ │ │ │ ├── ChangelogModal.vue │ │ │ │ ├── DanmuFactorySetting.vue │ │ │ │ ├── DanmuFactorySettingDailog.vue │ │ │ │ ├── DynamicTags.vue │ │ │ │ ├── EditableText.vue │ │ │ │ ├── FileArea.vue │ │ │ │ ├── FileBrowserDialog.vue │ │ │ │ ├── ImageCrop.vue │ │ │ │ ├── InputDialog.vue │ │ │ │ ├── Tip.vue │ │ │ │ ├── checkUpdateModal.vue │ │ │ │ ├── logModal.vue │ │ │ │ ├── showDirectoryDialog.ts │ │ │ │ ├── showInput.ts │ │ │ │ └── textButton.vue │ │ │ │ ├── enums │ │ │ │ ├── index.ts │ │ │ │ └── recorder.ts │ │ │ │ ├── env.d.ts │ │ │ │ ├── hooks │ │ │ │ ├── danmuPreset.ts │ │ │ │ ├── drive.ts │ │ │ │ ├── index.ts │ │ │ │ └── useNotice.ts │ │ │ │ ├── main.ts │ │ │ │ ├── pages │ │ │ │ ├── About.vue │ │ │ │ ├── Dashboard │ │ │ │ │ └── index.vue │ │ │ │ ├── Home │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ffmpegSetting.vue │ │ │ │ │ │ ├── previewModal.vue │ │ │ │ │ │ └── sendWebhookModal.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── LiveHistory │ │ │ │ │ └── index.vue │ │ │ │ ├── Login │ │ │ │ │ └── index.vue │ │ │ │ ├── Main │ │ │ │ │ ├── index.vue │ │ │ │ │ └── logSvg.vue │ │ │ │ ├── Queue │ │ │ │ │ ├── components │ │ │ │ │ │ └── item.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── Tools │ │ │ │ │ ├── index.vue │ │ │ │ │ └── pages │ │ │ │ │ │ ├── Burn │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── FileSelect.vue │ │ │ │ │ │ │ └── PartArea.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── DanmuFactory.vue │ │ │ │ │ │ ├── FileSync │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── FileUpload │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── FileSelect.vue │ │ │ │ │ │ │ └── PartArea.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── FlvRepair.vue │ │ │ │ │ │ ├── Recorder │ │ │ │ │ │ ├── Index.vue │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── SortButton.vue │ │ │ │ │ │ │ ├── addModal.vue │ │ │ │ │ │ │ ├── batchAddModal.vue │ │ │ │ │ │ │ ├── batchResultModal.vue │ │ │ │ │ │ │ ├── cardView.vue │ │ │ │ │ │ │ ├── listView.vue │ │ │ │ │ │ │ └── videoModal.vue │ │ │ │ │ │ ├── Video │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── DownloadModal.vue │ │ │ │ │ │ │ ├── SubVideoList.vue │ │ │ │ │ │ │ └── SubscribeModal.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── VideoCut │ │ │ │ │ │ ├── Index.vue │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── ConfigPanel.vue │ │ │ │ │ │ │ ├── ExportModal.vue │ │ │ │ │ │ │ ├── SearchPopover.vue │ │ │ │ │ │ │ ├── SegmentList.vue │ │ │ │ │ │ │ └── VideoPlayer.vue │ │ │ │ │ │ ├── composables │ │ │ │ │ │ │ ├── useDanmu.ts │ │ │ │ │ │ │ ├── useKeyboardShortcuts.ts │ │ │ │ │ │ │ ├── useVideoPlayer.ts │ │ │ │ │ │ │ └── useWaveform.ts │ │ │ │ │ │ └── hooks │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── VideoMerge.vue │ │ │ │ ├── User │ │ │ │ │ ├── components │ │ │ │ │ │ └── BiliLoginDialog.vue │ │ │ │ │ └── index.vue │ │ │ │ └── setting │ │ │ │ │ ├── BiliSetting.vue │ │ │ │ │ ├── CommonWebhookSetting.vue │ │ │ │ │ ├── NotificationSetting.vue │ │ │ │ │ ├── OtherSetting.vue │ │ │ │ │ ├── RecordSetting.vue │ │ │ │ │ ├── RoomSettingDialog.vue │ │ │ │ │ ├── SyncSetting.vue │ │ │ │ │ ├── TaskSetting.vue │ │ │ │ │ ├── TranslateSetting.vue │ │ │ │ │ ├── VideoSetting.vue │ │ │ │ │ ├── VirtualRecordSetting.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── routers │ │ │ │ └── index.ts │ │ │ │ ├── stores │ │ │ │ └── index.ts │ │ │ │ ├── types │ │ │ │ └── index.d.ts │ │ │ │ └── utils │ │ │ │ ├── eventBus.ts │ │ │ │ ├── fileSystem.ts │ │ │ │ └── index.ts │ │ └── types │ │ │ ├── index.d.ts │ │ │ └── preload.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── tsconfig.web.json ├── http │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── middleware │ │ │ ├── error.ts │ │ │ ├── multer.ts │ │ │ └── validator.ts │ │ ├── routes │ │ │ ├── assets.ts │ │ │ ├── bili.ts │ │ │ ├── common.ts │ │ │ ├── config.ts │ │ │ ├── danma.ts │ │ │ ├── llm.ts │ │ │ ├── preset.ts │ │ │ ├── recordHistory.ts │ │ │ ├── recorder.ts │ │ │ ├── sse.ts │ │ │ ├── sync.ts │ │ │ ├── task.ts │ │ │ ├── user.ts │ │ │ ├── video.ts │ │ │ └── webhook.ts │ │ ├── services │ │ │ ├── fileCache.ts │ │ │ ├── fileLockManager.ts │ │ │ ├── recorder.ts │ │ │ └── webhook.ts │ │ └── types │ │ │ ├── blrecEvent.d.ts │ │ │ ├── index.d.ts │ │ │ ├── recorder.ts │ │ │ ├── video.ts │ │ │ └── webhook.d.ts │ ├── test-globals.js │ ├── test │ │ ├── services │ │ │ └── fileLockManager.test.ts │ │ └── webhook.test.ts │ ├── tsconfig.json │ ├── tsconfig.vitest.json │ └── vitest.config.ts ├── huya-danmu │ ├── CHANGELOG.md │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── lib.js │ ├── package.json │ ├── test.js │ ├── test_data_20210626.html │ └── utils.js ├── liveManager │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── api.ts │ │ ├── cache.ts │ │ ├── common.ts │ │ ├── downloader │ │ │ ├── BililiveDownloader.ts │ │ │ ├── FFmpegDownloader.ts │ │ │ ├── IDownloader.ts │ │ │ ├── index.ts │ │ │ ├── mesioDownloader.ts │ │ │ └── streamManager.ts │ │ ├── index.ts │ │ ├── manager.ts │ │ ├── record_extra_data_controller.ts │ │ ├── recorder.ts │ │ ├── utils.ts │ │ └── xml_stream_controller.ts │ ├── test │ │ ├── downloader │ │ │ ├── FFMPEGRecorder.test.ts │ │ │ ├── index.test.ts │ │ │ ├── mesioDownloader.ts │ │ │ └── streamManager.test.ts │ │ ├── manager.test.ts │ │ ├── record_extra_data_controller.test.ts │ │ └── utils.test.ts │ ├── tsconfig.json │ ├── tsconfig.vitest.json │ └── vitest.config.ts ├── shared │ ├── package.json │ ├── src │ │ ├── config.ts │ │ ├── danmu │ │ │ ├── danmakuFactory.ts │ │ │ ├── hotProgress.ts │ │ │ └── index.ts │ │ ├── db │ │ │ ├── container.ts │ │ │ ├── index.ts │ │ │ ├── model │ │ │ │ ├── README.md │ │ │ │ ├── baseModel.ts │ │ │ │ ├── danmu.ts │ │ │ │ ├── recordHistory.ts │ │ │ │ ├── statistics.ts │ │ │ │ ├── streamer.ts │ │ │ │ ├── uploadPart.ts │ │ │ │ ├── videoSub.ts │ │ │ │ ├── videoSubData.ts │ │ │ │ └── virtualRecord.ts │ │ │ └── service │ │ │ │ ├── danmuService.ts │ │ │ │ ├── index.ts │ │ │ │ ├── recordHistoryService.ts │ │ │ │ ├── statisticsService.ts │ │ │ │ ├── streamerService.ts │ │ │ │ ├── uploadPartService.ts │ │ │ │ ├── videoSubDataService.ts │ │ │ │ ├── videoSubService.ts │ │ │ │ └── virtualRecordService.ts │ │ ├── enum.ts │ │ ├── index.ts │ │ ├── llm │ │ │ ├── index.ts │ │ │ └── ollama.ts │ │ ├── notify.ts │ │ ├── presets │ │ │ ├── danmuPreset.ts │ │ │ ├── ffmpegPreset.ts │ │ │ ├── index.ts │ │ │ ├── preset.ts │ │ │ └── videoPreset.ts │ │ ├── recorder │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ └── recordHistory.ts │ │ ├── sync │ │ │ ├── alist.ts │ │ │ ├── aliyunpan.ts │ │ │ ├── baiduPCS.ts │ │ │ ├── index.ts │ │ │ ├── localCopy.ts │ │ │ └── pan123.ts │ │ ├── task │ │ │ ├── BiliCheckQueue.ts │ │ │ ├── audiowaveform.ts │ │ │ ├── bili.ts │ │ │ ├── core │ │ │ │ ├── AbstractTask.ts │ │ │ │ ├── TaskQueue.ts │ │ │ │ ├── index.ts │ │ │ │ ├── taskHelpers.ts │ │ │ │ └── types.ts │ │ │ ├── danmu.ts │ │ │ ├── flvRepair.ts │ │ │ ├── llm.ts │ │ │ ├── sync.ts │ │ │ ├── task.ts │ │ │ ├── video.ts │ │ │ └── virtualRecord.ts │ │ ├── utils │ │ │ ├── combineURLs.ts │ │ │ ├── crypto.ts │ │ │ ├── fonts.ts │ │ │ ├── index.ts │ │ │ ├── log.ts │ │ │ ├── speedCalculator.ts │ │ │ ├── webhook.ts │ │ │ └── xml.ts │ │ └── video │ │ │ ├── douyu.ts │ │ │ ├── huya.ts │ │ │ ├── kuaishou.ts │ │ │ └── videoSub.ts │ ├── test-globals.js │ ├── test │ │ ├── alist.test.ts │ │ ├── bili.test.ts │ │ ├── danmu │ │ │ ├── danmakuFactory.test.ts │ │ │ └── index.test.ts │ │ ├── index.test.ts │ │ ├── preset │ │ │ └── ffmpegPreset.test.ts │ │ ├── recorder │ │ │ └── config.test.ts │ │ ├── sync │ │ │ ├── aliyunpan.test.ts │ │ │ └── baiduPCS.test.ts │ │ ├── task │ │ │ ├── BiliCheckQueue.test.ts │ │ │ ├── core │ │ │ │ └── TaskQueue.test.ts │ │ │ ├── danmu.test.ts │ │ │ ├── speedCalculator.test.ts │ │ │ └── video.test.ts │ │ ├── utils │ │ │ ├── index.test.ts │ │ │ └── webhook.test.ts │ │ └── video.test.ts │ ├── tsconfig.json │ ├── tsconfig.vitest.json │ └── vitest.config.ts └── types │ ├── package.json │ ├── src │ ├── ffmpeg.ts │ ├── index.ts │ ├── preset.ts │ └── task.ts │ └── tsconfig.json ├── patches └── trash.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── github-ci-better-sqlite3.js ├── github-ci-pnpm-update.js └── install-bin.js └── vitest.workspace.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .gitignore 5 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/ISSUE_TEMPLATE/1-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/ISSUE_TEMPLATE/2-feature.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/workflows/npm.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.github/workflows/webui.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v24.10.0 -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: false 2 | semi: true 3 | printWidth: 100 4 | endOfLine: auto 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/TODO.md -------------------------------------------------------------------------------- /docker/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/Caddyfile -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/config.json -------------------------------------------------------------------------------- /docker/docker-compose-fullstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/docker-compose-fullstack.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/fullstack-Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/fullstack-Caddyfile -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docker/start.sh -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/api-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api-examples.md -------------------------------------------------------------------------------- /docs/api/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/base.md -------------------------------------------------------------------------------- /docs/api/other.md: -------------------------------------------------------------------------------- 1 | **自己抓去吧** 2 | -------------------------------------------------------------------------------- /docs/api/preset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/preset.md -------------------------------------------------------------------------------- /docs/api/record-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/record-history.md -------------------------------------------------------------------------------- /docs/api/recorder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/recorder.md -------------------------------------------------------------------------------- /docs/api/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/sync.md -------------------------------------------------------------------------------- /docs/api/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/task.md -------------------------------------------------------------------------------- /docs/api/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/user.md -------------------------------------------------------------------------------- /docs/api/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/api/video.md -------------------------------------------------------------------------------- /docs/development/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/development/contributing.md -------------------------------------------------------------------------------- /docs/development/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/development/guide.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/features/bilibili-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/bilibili-upload.md -------------------------------------------------------------------------------- /docs/features/danmaku-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/danmaku-convert.md -------------------------------------------------------------------------------- /docs/features/ffmpeg.md: -------------------------------------------------------------------------------- 1 | 待施工 2 | -------------------------------------------------------------------------------- /docs/features/file-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/file-sync.md -------------------------------------------------------------------------------- /docs/features/live-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/live-record.md -------------------------------------------------------------------------------- /docs/features/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/notification.md -------------------------------------------------------------------------------- /docs/features/video-clip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/video-clip.md -------------------------------------------------------------------------------- /docs/features/virtual-record.md: -------------------------------------------------------------------------------- 1 | 待施工 2 | -------------------------------------------------------------------------------- /docs/features/webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/features/webhook.md -------------------------------------------------------------------------------- /docs/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/guide/installation.md -------------------------------------------------------------------------------- /docs/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/guide/introduction.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/markdown-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/markdown-examples.md -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/public/logo.png -------------------------------------------------------------------------------- /docs/public/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/public/preview.png -------------------------------------------------------------------------------- /docs/public/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/docs/public/webui.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/package.json -------------------------------------------------------------------------------- /packages/BilibiliRecorder/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | lib/ -------------------------------------------------------------------------------- /packages/BilibiliRecorder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/CHANGELOG.md -------------------------------------------------------------------------------- /packages/BilibiliRecorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/LICENSE -------------------------------------------------------------------------------- /packages/BilibiliRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/README.md -------------------------------------------------------------------------------- /packages/BilibiliRecorder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/package.json -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/bilibili_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/bilibili_api.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/blive-message-listener/chunk-5NTNTWA4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/blive-message-listener/chunk-5NTNTWA4.js -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/blive-message-listener/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/blive-message-listener/index.d.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/blive-message-listener/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/blive-message-listener/index.js -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/danma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/danma.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/index.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/stream.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/test.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/src/utils.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/test/stream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/test/stream.test.ts -------------------------------------------------------------------------------- /packages/BilibiliRecorder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/tsconfig.json -------------------------------------------------------------------------------- /packages/BilibiliRecorder/tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/tsconfig.vitest.json -------------------------------------------------------------------------------- /packages/BilibiliRecorder/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/BilibiliRecorder/vitest.config.ts -------------------------------------------------------------------------------- /packages/CLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/README.md -------------------------------------------------------------------------------- /packages/CLI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/package.json -------------------------------------------------------------------------------- /packages/CLI/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/rollup.config.js -------------------------------------------------------------------------------- /packages/CLI/scripts/copy_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/scripts/copy_module.js -------------------------------------------------------------------------------- /packages/CLI/scripts/removeDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/scripts/removeDev.js -------------------------------------------------------------------------------- /packages/CLI/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/src/index.ts -------------------------------------------------------------------------------- /packages/CLI/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/CLI/tsconfig.json -------------------------------------------------------------------------------- /packages/DouYinDanma/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | lib/ 4 | .history -------------------------------------------------------------------------------- /packages/DouYinDanma/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/CHANGELOG.md -------------------------------------------------------------------------------- /packages/DouYinDanma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/LICENSE -------------------------------------------------------------------------------- /packages/DouYinDanma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/README.md -------------------------------------------------------------------------------- /packages/DouYinDanma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/package.json -------------------------------------------------------------------------------- /packages/DouYinDanma/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/api.ts -------------------------------------------------------------------------------- /packages/DouYinDanma/src/dy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/dy.proto -------------------------------------------------------------------------------- /packages/DouYinDanma/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/index.ts -------------------------------------------------------------------------------- /packages/DouYinDanma/src/proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/proto.js -------------------------------------------------------------------------------- /packages/DouYinDanma/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/utils.ts -------------------------------------------------------------------------------- /packages/DouYinDanma/src/webmssdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/src/webmssdk.js -------------------------------------------------------------------------------- /packages/DouYinDanma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/tsconfig.json -------------------------------------------------------------------------------- /packages/DouYinDanma/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/types/index.d.ts -------------------------------------------------------------------------------- /packages/DouYinDanma/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinDanma/types/types.d.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | lib/ 4 | .history -------------------------------------------------------------------------------- /packages/DouYinRecorder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/CHANGELOG.md -------------------------------------------------------------------------------- /packages/DouYinRecorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/LICENSE -------------------------------------------------------------------------------- /packages/DouYinRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/README.md -------------------------------------------------------------------------------- /packages/DouYinRecorder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/package.json -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/douyin_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/douyin_api.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/index.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/loadBalancer/IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/loadBalancer/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/loadBalancer/LoadBalancer_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/loadBalancer/LoadBalancer_README.md -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/loadBalancer/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/loadBalancer/example.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/loadBalancer/loadBalancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/loadBalancer/loadBalancer.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/loadBalancer/loadBalancerManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/loadBalancer/loadBalancerManager.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/sign.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/stream.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/test.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/types.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/src/utils.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/tests/loadBalancerTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/tests/loadBalancerTest.ts -------------------------------------------------------------------------------- /packages/DouYinRecorder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYinRecorder/tsconfig.json -------------------------------------------------------------------------------- /packages/DouYuRecorder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/CHANGELOG.md -------------------------------------------------------------------------------- /packages/DouYuRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/README.md -------------------------------------------------------------------------------- /packages/DouYuRecorder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/package.json -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/danma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/danma.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/dy_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/dy_api.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/dy_client/buffer_coder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/dy_client/buffer_coder.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/dy_client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/dy_client/index.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/dy_client/stt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/dy_client/stt.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/index.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/requester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/requester.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/stream.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/test.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/src/utils.ts -------------------------------------------------------------------------------- /packages/DouYuRecorder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/DouYuRecorder/tsconfig.json -------------------------------------------------------------------------------- /packages/HuYaRecorder/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | lib/ -------------------------------------------------------------------------------- /packages/HuYaRecorder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/CHANGELOG.md -------------------------------------------------------------------------------- /packages/HuYaRecorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/LICENSE -------------------------------------------------------------------------------- /packages/HuYaRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/README.md -------------------------------------------------------------------------------- /packages/HuYaRecorder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/package.json -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/anticode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/anticode.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/huya_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/huya_api.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/huya_mobile_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/huya_mobile_api.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/huya_wup_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/huya_wup_api.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/index.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/requester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/requester.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/stream.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/test.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/types.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/src/utils.ts -------------------------------------------------------------------------------- /packages/HuYaRecorder/test/mobileApiData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/test/mobileApiData.json -------------------------------------------------------------------------------- /packages/HuYaRecorder/test/webApiData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/test/webApiData.json -------------------------------------------------------------------------------- /packages/HuYaRecorder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/HuYaRecorder/tsconfig.json -------------------------------------------------------------------------------- /packages/app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/LICENSE -------------------------------------------------------------------------------- /packages/app/build/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/entitlements.mac.plist -------------------------------------------------------------------------------- /packages/app/build/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icon.icns -------------------------------------------------------------------------------- /packages/app/build/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icon.ico -------------------------------------------------------------------------------- /packages/app/build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icon.png -------------------------------------------------------------------------------- /packages/app/build/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/1024x1024.png -------------------------------------------------------------------------------- /packages/app/build/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/128x128.png -------------------------------------------------------------------------------- /packages/app/build/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/16x16.png -------------------------------------------------------------------------------- /packages/app/build/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/24x24.png -------------------------------------------------------------------------------- /packages/app/build/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/256x256.png -------------------------------------------------------------------------------- /packages/app/build/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/32x32.png -------------------------------------------------------------------------------- /packages/app/build/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/48x48.png -------------------------------------------------------------------------------- /packages/app/build/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/512x512.png -------------------------------------------------------------------------------- /packages/app/build/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/64x64.png -------------------------------------------------------------------------------- /packages/app/build/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/icon.icns -------------------------------------------------------------------------------- /packages/app/build/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/build/icons/icon.ico -------------------------------------------------------------------------------- /packages/app/dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/dev-app-update.yml -------------------------------------------------------------------------------- /packages/app/electron-builder-no-ffmpeg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/electron-builder-no-ffmpeg.yml -------------------------------------------------------------------------------- /packages/app/electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/electron-builder.yml -------------------------------------------------------------------------------- /packages/app/electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/electron.vite.config.ts -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/resources/icon.png -------------------------------------------------------------------------------- /packages/app/src/main/appConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/appConstant.ts -------------------------------------------------------------------------------- /packages/app/src/main/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/common.ts -------------------------------------------------------------------------------- /packages/app/src/main/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/cookie.ts -------------------------------------------------------------------------------- /packages/app/src/main/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/handlers.ts -------------------------------------------------------------------------------- /packages/app/src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/index.ts -------------------------------------------------------------------------------- /packages/app/src/main/utils/crashLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/utils/crashLogger.ts -------------------------------------------------------------------------------- /packages/app/src/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/utils/index.ts -------------------------------------------------------------------------------- /packages/app/src/main/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/main/utils/log.ts -------------------------------------------------------------------------------- /packages/app/src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/preload/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/auto-imports.d.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/components.d.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/index.html -------------------------------------------------------------------------------- /packages/app/src/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/App.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/bili.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/bili.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/common.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/config.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/danma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/danma.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/llm.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/presets/danmu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/presets/danmu.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/presets/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/presets/ffmpeg.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/presets/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/presets/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/presets/video.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/recoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/recoder.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/recordHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/recordHistory.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/request.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/sync.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/task.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/user.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/apis/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/apis/video.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/assets/css/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/assets/css/styles.less -------------------------------------------------------------------------------- /packages/app/src/renderer/src/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/assets/icons.svg -------------------------------------------------------------------------------- /packages/app/src/renderer/src/assets/images/gift-postion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/assets/images/gift-postion.png -------------------------------------------------------------------------------- /packages/app/src/renderer/src/assets/images/moehime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/assets/images/moehime.jpg -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/AppendVideoDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/AppendVideoDialog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/Artplayer/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/Artplayer/Index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/Artplayer/artplayer-plugin-heatmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/Artplayer/artplayer-plugin-heatmap.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/Artplayer/artplayer-timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/Artplayer/artplayer-timestamp.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/BiliSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/BiliSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/ButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/ButtonGroup.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/ChangelogModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/ChangelogModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/DanmuFactorySetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/DanmuFactorySetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/DanmuFactorySettingDailog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/DanmuFactorySettingDailog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/DynamicTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/DynamicTags.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/EditableText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/EditableText.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/FileArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/FileArea.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/FileBrowserDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/FileBrowserDialog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/ImageCrop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/ImageCrop.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/InputDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/InputDialog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/Tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/Tip.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/checkUpdateModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/checkUpdateModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/logModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/logModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/showDirectoryDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/showDirectoryDialog.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/showInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/showInput.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/components/textButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/components/textButton.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/enums/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/enums/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/enums/recorder.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/hooks/danmuPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/hooks/danmuPreset.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/hooks/drive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/hooks/drive.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/hooks/useNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/hooks/useNotice.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/main.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/About.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Dashboard/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Home/components/ffmpegSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Home/components/ffmpegSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Home/components/previewModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Home/components/previewModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Home/components/sendWebhookModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Home/components/sendWebhookModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Home/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/LiveHistory/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/LiveHistory/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Login/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Main/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Main/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Main/logSvg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Main/logSvg.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Queue/components/item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Queue/components/item.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Queue/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Queue/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Burn/components/FileSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Burn/components/FileSelect.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Burn/components/PartArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Burn/components/PartArea.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Burn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Burn/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/DanmuFactory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/DanmuFactory.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/FileSync/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/FileSync/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/FileUpload/components/FileSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/FileUpload/components/FileSelect.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/FileUpload/components/PartArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/FileUpload/components/PartArea.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/FileUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/FileUpload/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/FlvRepair.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/FlvRepair.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/Index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/SortButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/SortButton.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/addModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/addModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/batchAddModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/batchAddModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/batchResultModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/batchResultModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/cardView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/cardView.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/listView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/listView.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/videoModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Recorder/components/videoModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Video/components/DownloadModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Video/components/DownloadModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Video/components/SubVideoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Video/components/SubVideoList.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Video/components/SubscribeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Video/components/SubscribeModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/Video/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/Video/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/Index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/ConfigPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/ConfigPanel.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/ExportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/ExportModal.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/SearchPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/SearchPopover.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/SegmentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/SegmentList.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/components/VideoPlayer.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useDanmu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useDanmu.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useKeyboardShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useKeyboardShortcuts.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useVideoPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useVideoPlayer.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useWaveform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/composables/useWaveform.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoCut/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoCut/hooks/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/Tools/pages/VideoMerge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/Tools/pages/VideoMerge.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/User/components/BiliLoginDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/User/components/BiliLoginDialog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/User/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/User/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/BiliSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/BiliSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/CommonWebhookSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/CommonWebhookSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/NotificationSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/NotificationSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/OtherSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/OtherSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/RecordSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/RecordSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/RoomSettingDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/RoomSettingDialog.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/SyncSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/SyncSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/TaskSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/TaskSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/TranslateSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/TranslateSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/VideoSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/VideoSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/VirtualRecordSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/VirtualRecordSetting.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/pages/setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/pages/setting/index.vue -------------------------------------------------------------------------------- /packages/app/src/renderer/src/routers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/routers/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/stores/index.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/types/index.d.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/utils/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/utils/eventBus.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/utils/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/utils/fileSystem.ts -------------------------------------------------------------------------------- /packages/app/src/renderer/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/renderer/src/utils/index.ts -------------------------------------------------------------------------------- /packages/app/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/types/index.d.ts -------------------------------------------------------------------------------- /packages/app/src/types/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/src/types/preload.d.ts -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/tsconfig.json -------------------------------------------------------------------------------- /packages/app/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/tsconfig.node.json -------------------------------------------------------------------------------- /packages/app/tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/app/tsconfig.web.json -------------------------------------------------------------------------------- /packages/http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/package.json -------------------------------------------------------------------------------- /packages/http/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/index.ts -------------------------------------------------------------------------------- /packages/http/src/middleware/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/middleware/error.ts -------------------------------------------------------------------------------- /packages/http/src/middleware/multer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/middleware/multer.ts -------------------------------------------------------------------------------- /packages/http/src/middleware/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/middleware/validator.ts -------------------------------------------------------------------------------- /packages/http/src/routes/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/assets.ts -------------------------------------------------------------------------------- /packages/http/src/routes/bili.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/bili.ts -------------------------------------------------------------------------------- /packages/http/src/routes/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/common.ts -------------------------------------------------------------------------------- /packages/http/src/routes/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/config.ts -------------------------------------------------------------------------------- /packages/http/src/routes/danma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/danma.ts -------------------------------------------------------------------------------- /packages/http/src/routes/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/llm.ts -------------------------------------------------------------------------------- /packages/http/src/routes/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/preset.ts -------------------------------------------------------------------------------- /packages/http/src/routes/recordHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/recordHistory.ts -------------------------------------------------------------------------------- /packages/http/src/routes/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/recorder.ts -------------------------------------------------------------------------------- /packages/http/src/routes/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/sse.ts -------------------------------------------------------------------------------- /packages/http/src/routes/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/sync.ts -------------------------------------------------------------------------------- /packages/http/src/routes/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/task.ts -------------------------------------------------------------------------------- /packages/http/src/routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/user.ts -------------------------------------------------------------------------------- /packages/http/src/routes/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/video.ts -------------------------------------------------------------------------------- /packages/http/src/routes/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/routes/webhook.ts -------------------------------------------------------------------------------- /packages/http/src/services/fileCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/services/fileCache.ts -------------------------------------------------------------------------------- /packages/http/src/services/fileLockManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/services/fileLockManager.ts -------------------------------------------------------------------------------- /packages/http/src/services/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/services/recorder.ts -------------------------------------------------------------------------------- /packages/http/src/services/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/services/webhook.ts -------------------------------------------------------------------------------- /packages/http/src/types/blrecEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/types/blrecEvent.d.ts -------------------------------------------------------------------------------- /packages/http/src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/http/src/types/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/types/recorder.ts -------------------------------------------------------------------------------- /packages/http/src/types/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/types/video.ts -------------------------------------------------------------------------------- /packages/http/src/types/webhook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/src/types/webhook.d.ts -------------------------------------------------------------------------------- /packages/http/test-globals.js: -------------------------------------------------------------------------------- 1 | // src/test-globals.ts 2 | export const setup = () => { 3 | process.env.TZ = "Asia/Shanghai"; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/http/test/services/fileLockManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/test/services/fileLockManager.test.ts -------------------------------------------------------------------------------- /packages/http/test/webhook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/test/webhook.test.ts -------------------------------------------------------------------------------- /packages/http/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/tsconfig.json -------------------------------------------------------------------------------- /packages/http/tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/tsconfig.vitest.json -------------------------------------------------------------------------------- /packages/http/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/http/vitest.config.ts -------------------------------------------------------------------------------- /packages/huya-danmu/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/CHANGELOG.md -------------------------------------------------------------------------------- /packages/huya-danmu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/README.md -------------------------------------------------------------------------------- /packages/huya-danmu/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/index.d.ts -------------------------------------------------------------------------------- /packages/huya-danmu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/index.js -------------------------------------------------------------------------------- /packages/huya-danmu/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/lib.js -------------------------------------------------------------------------------- /packages/huya-danmu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/package.json -------------------------------------------------------------------------------- /packages/huya-danmu/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/test.js -------------------------------------------------------------------------------- /packages/huya-danmu/test_data_20210626.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/test_data_20210626.html -------------------------------------------------------------------------------- /packages/huya-danmu/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/huya-danmu/utils.js -------------------------------------------------------------------------------- /packages/liveManager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/CHANGELOG.md -------------------------------------------------------------------------------- /packages/liveManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/README.md -------------------------------------------------------------------------------- /packages/liveManager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/package.json -------------------------------------------------------------------------------- /packages/liveManager/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/api.ts -------------------------------------------------------------------------------- /packages/liveManager/src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/cache.ts -------------------------------------------------------------------------------- /packages/liveManager/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/common.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/BililiveDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/BililiveDownloader.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/FFmpegDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/FFmpegDownloader.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/IDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/IDownloader.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/index.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/mesioDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/mesioDownloader.ts -------------------------------------------------------------------------------- /packages/liveManager/src/downloader/streamManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/downloader/streamManager.ts -------------------------------------------------------------------------------- /packages/liveManager/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/index.ts -------------------------------------------------------------------------------- /packages/liveManager/src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/manager.ts -------------------------------------------------------------------------------- /packages/liveManager/src/record_extra_data_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/record_extra_data_controller.ts -------------------------------------------------------------------------------- /packages/liveManager/src/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/recorder.ts -------------------------------------------------------------------------------- /packages/liveManager/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/utils.ts -------------------------------------------------------------------------------- /packages/liveManager/src/xml_stream_controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/src/xml_stream_controller.ts -------------------------------------------------------------------------------- /packages/liveManager/test/downloader/FFMPEGRecorder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/downloader/FFMPEGRecorder.test.ts -------------------------------------------------------------------------------- /packages/liveManager/test/downloader/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/downloader/index.test.ts -------------------------------------------------------------------------------- /packages/liveManager/test/downloader/mesioDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/downloader/mesioDownloader.ts -------------------------------------------------------------------------------- /packages/liveManager/test/downloader/streamManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/downloader/streamManager.test.ts -------------------------------------------------------------------------------- /packages/liveManager/test/manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/manager.test.ts -------------------------------------------------------------------------------- /packages/liveManager/test/record_extra_data_controller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/record_extra_data_controller.test.ts -------------------------------------------------------------------------------- /packages/liveManager/test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/test/utils.test.ts -------------------------------------------------------------------------------- /packages/liveManager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/tsconfig.json -------------------------------------------------------------------------------- /packages/liveManager/tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/tsconfig.vitest.json -------------------------------------------------------------------------------- /packages/liveManager/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/liveManager/vitest.config.ts -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/package.json -------------------------------------------------------------------------------- /packages/shared/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/config.ts -------------------------------------------------------------------------------- /packages/shared/src/danmu/danmakuFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/danmu/danmakuFactory.ts -------------------------------------------------------------------------------- /packages/shared/src/danmu/hotProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/danmu/hotProgress.ts -------------------------------------------------------------------------------- /packages/shared/src/danmu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/danmu/index.ts -------------------------------------------------------------------------------- /packages/shared/src/db/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/container.ts -------------------------------------------------------------------------------- /packages/shared/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/index.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/README.md -------------------------------------------------------------------------------- /packages/shared/src/db/model/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/baseModel.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/danmu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/danmu.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/recordHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/recordHistory.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/statistics.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/streamer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/streamer.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/uploadPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/uploadPart.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/videoSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/videoSub.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/videoSubData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/videoSubData.ts -------------------------------------------------------------------------------- /packages/shared/src/db/model/virtualRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/model/virtualRecord.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/danmuService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/danmuService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/index.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/recordHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/recordHistoryService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/statisticsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/statisticsService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/streamerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/streamerService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/uploadPartService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/uploadPartService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/videoSubDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/videoSubDataService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/videoSubService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/videoSubService.ts -------------------------------------------------------------------------------- /packages/shared/src/db/service/virtualRecordService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/db/service/virtualRecordService.ts -------------------------------------------------------------------------------- /packages/shared/src/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/enum.ts -------------------------------------------------------------------------------- /packages/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/index.ts -------------------------------------------------------------------------------- /packages/shared/src/llm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/llm/index.ts -------------------------------------------------------------------------------- /packages/shared/src/llm/ollama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/llm/ollama.ts -------------------------------------------------------------------------------- /packages/shared/src/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/notify.ts -------------------------------------------------------------------------------- /packages/shared/src/presets/danmuPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/presets/danmuPreset.ts -------------------------------------------------------------------------------- /packages/shared/src/presets/ffmpegPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/presets/ffmpegPreset.ts -------------------------------------------------------------------------------- /packages/shared/src/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/presets/index.ts -------------------------------------------------------------------------------- /packages/shared/src/presets/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/presets/preset.ts -------------------------------------------------------------------------------- /packages/shared/src/presets/videoPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/presets/videoPreset.ts -------------------------------------------------------------------------------- /packages/shared/src/recorder/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/recorder/config.ts -------------------------------------------------------------------------------- /packages/shared/src/recorder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/recorder/index.ts -------------------------------------------------------------------------------- /packages/shared/src/recorder/recordHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/recorder/recordHistory.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/alist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/alist.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/aliyunpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/aliyunpan.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/baiduPCS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/baiduPCS.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/index.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/localCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/localCopy.ts -------------------------------------------------------------------------------- /packages/shared/src/sync/pan123.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/sync/pan123.ts -------------------------------------------------------------------------------- /packages/shared/src/task/BiliCheckQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/BiliCheckQueue.ts -------------------------------------------------------------------------------- /packages/shared/src/task/audiowaveform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/audiowaveform.ts -------------------------------------------------------------------------------- /packages/shared/src/task/bili.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/bili.ts -------------------------------------------------------------------------------- /packages/shared/src/task/core/AbstractTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/core/AbstractTask.ts -------------------------------------------------------------------------------- /packages/shared/src/task/core/TaskQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/core/TaskQueue.ts -------------------------------------------------------------------------------- /packages/shared/src/task/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/core/index.ts -------------------------------------------------------------------------------- /packages/shared/src/task/core/taskHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/core/taskHelpers.ts -------------------------------------------------------------------------------- /packages/shared/src/task/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/core/types.ts -------------------------------------------------------------------------------- /packages/shared/src/task/danmu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/danmu.ts -------------------------------------------------------------------------------- /packages/shared/src/task/flvRepair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/flvRepair.ts -------------------------------------------------------------------------------- /packages/shared/src/task/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/llm.ts -------------------------------------------------------------------------------- /packages/shared/src/task/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/sync.ts -------------------------------------------------------------------------------- /packages/shared/src/task/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/task.ts -------------------------------------------------------------------------------- /packages/shared/src/task/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/video.ts -------------------------------------------------------------------------------- /packages/shared/src/task/virtualRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/task/virtualRecord.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/combineURLs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/combineURLs.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/crypto.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/fonts.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/index.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/log.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/speedCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/speedCalculator.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/webhook.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/utils/xml.ts -------------------------------------------------------------------------------- /packages/shared/src/video/douyu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/video/douyu.ts -------------------------------------------------------------------------------- /packages/shared/src/video/huya.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/video/huya.ts -------------------------------------------------------------------------------- /packages/shared/src/video/kuaishou.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/video/kuaishou.ts -------------------------------------------------------------------------------- /packages/shared/src/video/videoSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/src/video/videoSub.ts -------------------------------------------------------------------------------- /packages/shared/test-globals.js: -------------------------------------------------------------------------------- 1 | // src/test-globals.ts 2 | export const setup = () => { 3 | process.env.TZ = "Asia/Shanghai"; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/shared/test/alist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/alist.test.ts -------------------------------------------------------------------------------- /packages/shared/test/bili.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/bili.test.ts -------------------------------------------------------------------------------- /packages/shared/test/danmu/danmakuFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/danmu/danmakuFactory.test.ts -------------------------------------------------------------------------------- /packages/shared/test/danmu/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/danmu/index.test.ts -------------------------------------------------------------------------------- /packages/shared/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/index.test.ts -------------------------------------------------------------------------------- /packages/shared/test/preset/ffmpegPreset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/preset/ffmpegPreset.test.ts -------------------------------------------------------------------------------- /packages/shared/test/recorder/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/recorder/config.test.ts -------------------------------------------------------------------------------- /packages/shared/test/sync/aliyunpan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/sync/aliyunpan.test.ts -------------------------------------------------------------------------------- /packages/shared/test/sync/baiduPCS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/sync/baiduPCS.test.ts -------------------------------------------------------------------------------- /packages/shared/test/task/BiliCheckQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/task/BiliCheckQueue.test.ts -------------------------------------------------------------------------------- /packages/shared/test/task/core/TaskQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/task/core/TaskQueue.test.ts -------------------------------------------------------------------------------- /packages/shared/test/task/danmu.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/task/danmu.test.ts -------------------------------------------------------------------------------- /packages/shared/test/task/speedCalculator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/task/speedCalculator.test.ts -------------------------------------------------------------------------------- /packages/shared/test/task/video.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/task/video.test.ts -------------------------------------------------------------------------------- /packages/shared/test/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/utils/index.test.ts -------------------------------------------------------------------------------- /packages/shared/test/utils/webhook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/utils/webhook.test.ts -------------------------------------------------------------------------------- /packages/shared/test/video.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/test/video.test.ts -------------------------------------------------------------------------------- /packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /packages/shared/tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/tsconfig.vitest.json -------------------------------------------------------------------------------- /packages/shared/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/shared/vitest.config.ts -------------------------------------------------------------------------------- /packages/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/package.json -------------------------------------------------------------------------------- /packages/types/src/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/src/ffmpeg.ts -------------------------------------------------------------------------------- /packages/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/src/index.ts -------------------------------------------------------------------------------- /packages/types/src/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/src/preset.ts -------------------------------------------------------------------------------- /packages/types/src/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/src/task.ts -------------------------------------------------------------------------------- /packages/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/packages/types/tsconfig.json -------------------------------------------------------------------------------- /patches/trash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/patches/trash.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/github-ci-better-sqlite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/scripts/github-ci-better-sqlite3.js -------------------------------------------------------------------------------- /scripts/github-ci-pnpm-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/scripts/github-ci-pnpm-update.js -------------------------------------------------------------------------------- /scripts/install-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmu123/biliLive-tools/HEAD/scripts/install-bin.js -------------------------------------------------------------------------------- /vitest.workspace.js: -------------------------------------------------------------------------------- 1 | export default ["packages/*"]; 2 | --------------------------------------------------------------------------------