-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
98 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ | |
/GoSubTitleSearcher_x64.exe | ||
/.vscode | ||
/.idea | ||
/logs.txt |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
set appver=1.0.1 | ||
set appdesc=Ð޸IJ¿·ÖÎÊÌâ | ||
set appver=1.0.3 | ||
set appdesc=增加日志文件,修改自动升级bug | ||
|
||
|
||
|
||
|
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 |
---|---|---|
@@ -1,8 +1,39 @@ | ||
# GoSubTitleSearcher | ||
字幕搜索查询(go语言版),支持4k 2160p,1080p,720p视频字幕搜索,集合了字幕库、迅雷、射手、SubHD查询接口。 | ||
|
||
可以拖动视频或选择视频开始搜索字幕 | ||
**Go语言版本:** | ||
https://gitee.com/andyfoo/GoSubTitleSearcher | ||
https://github.com/Andyfoo/GoSubTitleSearcher | ||
|
||
**Java版本在此,不打算更新了:** | ||
https://gitee.com/andyfoo/SubTitleSearcher | ||
https://github.com/Andyfoo/SubTitleSearcher | ||
|
||
**设计思路:** | ||
- 个人精力有限,本程序仅支持windows,不考虑其它系统。 | ||
- go语言启动web server 实现业务处理。 | ||
- go语言实现webview(ie)外壳打开html界面,js调用http和websocket与go交互。 | ||
- 编译后的exe文件使用upx压缩。 | ||
- 使用了go-xutils集成了自己写的和第三方的常用函数。 | ||
- 在线升级使用github.com库中放文件来检测下载。 | ||
|
||
|
||
|
||
**可以拖动视频或选择视频开始搜索字幕** | ||
![可以拖动视频或选择视频开始搜索字幕](https://raw.githubusercontent.com/Andyfoo/GoSubTitleSearcher/master/_docs/screenshot/p1.png) | ||
|
||
可以单独或批量下载字幕,可复制标题文字 | ||
**可以单独或批量下载字幕,可复制标题文字** | ||
![可以单独或批量下载字幕,可复制标题文字](https://raw.githubusercontent.com/Andyfoo/GoSubTitleSearcher/master/_docs/screenshot/p2.png) | ||
|
||
|
||
**第三方依赖** | ||
>https://github.com/Andyfoo/go-xutils | ||
>https://github.com/GeertJohan/go.rice | ||
>https://github.com/PuerkitoBio/goquery | ||
>https://github.com/gorilla/websocket | ||
>https://golang.org/x/text | ||
>https://golang.org/x/sys | ||
>https://github.com/akavel/rsrc | ||
>https://gitter.im/zserge/webview | ||
>https://github.com/google/logger | ||
>... |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
module GoSubTitleSearcher | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/Andyfoo/go-xutils v1.0.8 | ||
github.com/Andyfoo/go-xutils v1.0.9 | ||
github.com/GeertJohan/go.rice v1.0.0 | ||
github.com/PuerkitoBio/goquery v1.5.0 | ||
github.com/gorilla/websocket v1.4.1 | ||
golang.org/x/text v0.3.2 | ||
) | ||
|
||
//replace github.com/Andyfoo/go-xutils => E:/workspace/go/_my_libs/go-xutils |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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