Skip to content

Commit

Permalink
update v2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nICEnnnnnnnLee committed Sep 11, 2020
1 parent f490484 commit 2658f00
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .github/release.info
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* 优化[#48](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/48):新增录制异常重试间隔配置项`failRetryAfterMinutes`
* 修复[#53](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/53):对得到的直播流链接做进一步处理,解决虎牙一起看录制失败问题
* 新增[#52](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/52):新增抖音录制
4 changes: 2 additions & 2 deletions .github/release.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"tag_main": "2.12.0",
"tag_latest": "2.12.0"
"tag_main": "2.13.0",
"tag_latest": "2.13.0"
}
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,15 @@ Go go go, Bilibili Pikachu!

| liver | 最后测试时间 | 备注 |
| ------------- | ------------- | ------------- |
| bili | 2020/08/27 | `flv`清晰度可多选,可不需要cookie |
| zhanqi | 2019/06/30 | `flv`清晰度可多选,可不需要cookie |
| douyin | 2020/09/11 | `flv`只支持默认清晰度,不咋玩,没找到多清晰度的直播间😳 |
| douyu | 2020/08/27 | `flv`清晰度可多选,但部分高清需要cookie |
| kuaishou | 2020/08/27 | `flv`清晰度可多选,可能需要cookie(与登录无关,首次进入直播页面有反爬措施,会需要拖拽验证) |
| huya | 2020/08/27 | `flv`清晰度可多选,可不需要cookie。部分视频时间戳校正后声音会变形,ffmpeg处理后正常 |
| acfun | 2020/08/27 | `flv`清晰度可多选,可不需要cookie |
| bili | 2020/08/27 | `flv`清晰度可多选,可不需要cookie |
| zhanqi | 2019/06/30 | `flv`清晰度可多选,可不需要cookie |
| yy | 2019/06/15 | `flv`只支持默认清晰度 |
| huajiao | 2019/06/02 | `flv`只支持默认清晰度(似乎只有一种清晰度) |
| acfun | 2020/08/27 | `flv`清晰度可多选,可不需要cookie |
xu



<details>
<summary>关于json配置</summary>
Expand Down
2 changes: 2 additions & 0 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 更新
+ V2.13.0
* 新增[#52](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/52):新增抖音录制
+ V2.12.0
* 优化[#48](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/48):新增录制异常重试间隔配置项`failRetryAfterMinutes`
* 修复[#53](https://github.com/nICEnnnnnnnLee/BilibiliLiveRecorder/issues/53):对得到的直播流链接做进一步处理,解决虎牙一起看录制失败问题
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>top.nicelee</groupId>
<artifactId>live-record</artifactId>
<version>2.12.0</version>
<version>2.13.0</version>
<name>iLiveRecord</name>
<description>B站、Acfun、斗鱼、虎牙、快手、战旗、花椒直播录制</description>
<properties>
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/nicelee/bilibili/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class Main {

final static String version = "v2.12.0";
final static String version = "v2.13.0";
public static Thread thRecord;
public static Thread thMonitor;
public static Thread thCommand;
Expand All @@ -35,6 +35,9 @@ public static void main(String[] args) throws IOException {
// args = new String[] { "debug=true&check=true&liver=zhanqi&id=90god" }; // 清晰度全部可选,可不需要cookie 90god huashan ydjs
// args = new String[] { "debug=true&check=true&liver=huajiao&id=278581432&qn=1" }; // 只支持默认清晰度(似乎只有一种清晰度)
// args = new String[] { "debug=true&check=true&liver=acfun&id=12656144" };
// args = new String[]{"debug=true&liver=douyin&id=6865508403435801344&delete=false&check=true"}; // 只支持默认清晰度
// args = new String[]{"debug=true&liver=douyin&id=https://v.douyin.com/JhgqCGh&delete=false&check=true"}; // 只支持默认清晰度
// args = new String[]{"debug=true&liver=douyin&id=https://v.douyin.com/JSer8dH&delete=false&check=true"}; // 只支持默认清晰度

final Plugin plugin = new Plugin();
if (args != null && args[0].contains("plugin=true")) {
Expand Down

0 comments on commit 2658f00

Please sign in to comment.