forked from xiaoyaocz/biliuwp-lite
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #834 from ywmoyue/dev
4.7.4
- Loading branch information
Showing
47 changed files
with
1,627 additions
and
752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-- 创建 DownloadedItems 表 | ||
CREATE TABLE IF NOT EXISTS DownloadedItems ( | ||
"ID" TEXT NOT NULL CONSTRAINT "PK_DownloadedItems" PRIMARY KEY, | ||
"IsSeason" INTEGER NOT NULL, | ||
"CoverPath" TEXT NULL, | ||
"Title" TEXT NULL, | ||
"UpdateTime" TEXT NOT NULL, | ||
"Path" TEXT NULL | ||
); | ||
|
||
-- 创建 DownloadedSubItems 表 | ||
CREATE TABLE IF NOT EXISTS "DownloadedSubItems" ( | ||
"CID" TEXT NOT NULL CONSTRAINT "PK_DownloadedSubItems" PRIMARY KEY, | ||
"EpisodeID" TEXT NULL, | ||
"Title" TEXT NULL, | ||
"IsDash" INTEGER NOT NULL, | ||
"QualityID" INTEGER NOT NULL, | ||
"QualityName" TEXT NULL, | ||
"PathList" TEXT NULL, | ||
"DanmakuPath" TEXT NULL, | ||
"Index" INTEGER NOT NULL, | ||
"FilePath" TEXT NULL, | ||
"SubtitlePaths" TEXT NULL, | ||
"DownloadedItemDTOID" TEXT NULL, | ||
CONSTRAINT "FK_DownloadedSubItems_DownloadedItems_DownloadedItemDTOID" FOREIGN KEY ("DownloadedItemDTOID") REFERENCES "DownloadedItems" ("ID") ON DELETE RESTRICT | ||
); | ||
|
||
CREATE INDEX "IX_DownloadedSubItems_DownloadedItemDTOID" ON "DownloadedSubItems" ("DownloadedItemDTOID"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## BiliLite 导出视频 | ||
此功能需要BiliLite版本4.4.0及以上 | ||
|
||
1. 打开BiliLite UWP -『下载』-『下载完成』选项卡 | ||
|
||
2. 右键或长按需要导出的视频,选择『导出视频』 | ||
|
||
![](ms-appx:///Assets/Text/img/3382929121.png) | ||
|
||
如果是多集视频,可以点击『保存』图标按钮 | ||
|
||
![](ms-appx:///Assets/Text/img/1433952792.png) | ||
|
||
3. 选择导出视频的保存位置,等待导出完成即可。 | ||
PS:首次使用需要解压FFmpeg,可能会耗时久一点。 | ||
|
||
![](ms-appx:///Assets/Text/img/2655001972.png) | ||
|
||
### 其他工具 | ||
|
||
- [基于python的视频合并脚本 https://github.com/TPAXcc/biliuwp-lite.Mixer](https://github.com/TPAXcc/biliuwp-lite.Mixer) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.