Skip to content

Commit

Permalink
Merge branch 'release/2023.2.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 8, 2023
2 parents 22031ba + ecf8a51 commit 3184a32
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@

## develop

## 2023.2.0

- [UPDATE] 依存ライブラリの更新をする
- `boost``1.83.0` にあげる
- `cpp-mp4``2023.2.1` にあげる
- `opus``1.4` にあげる
- @haruyama
- [CHANGE] one VPL での H.264 エンコードに対応する
- @haruyama
- [CHANGE] Lyra の デコードに対応する
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Sora が出力した録画ファイルを合成し WebM や MP4 で出力する

## デコーダー/エンコーダー

- VP8 / VP9 / AV1 / H.264 デコードに対応しています
- Opus / Lyra 音声コーデックデコードに対応しています
- VP8 / VP9 / AV1 / H.264 の映像コーデックデコードに対応しています
- H.264 をデコードする場合は OpenH264 を用意する必要があります
- Opus / Lyra デコードに対応しています
- VP8 / VP9 / AV1/ H.264 エンコードに対応しています
- Opus / AAC エンコードに対応しています
- Opus / AAC の音声エンコードに対応しています
- VP8 / VP9 / AV1/ H.264 の映像エンコードに対応しています
- AAC を利用する場合は自前でのビルドが必要です

## 動作環境
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HISUI_VERSION=2023.1.1
HISUI_VERSION=2023.2.0

BOOST_VERSION=1.83.0
CLI11_VERSION=2.3.2
Expand Down
4 changes: 2 additions & 2 deletions doc/USE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Hisui は docker image を用意しています。これを使うことで気軽
- https://hub.docker.com/r/shiguredo/hisui

```
docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2023.1.1-ubuntu-22.04 -f /hisui/CSX77QY9F57V5BT72S62C28VS4/report-CSX77QY9F57V5BT72S62C28VS4.json
docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2023.2.0-ubuntu-22.04 -f /hisui/CSX77QY9F57V5BT72S62C28VS4/report-CSX77QY9F57V5BT72S62C28VS4.json
```

- -v で Sora の録画データがある archive フォルダを指定して下さい
Expand All @@ -23,7 +23,7 @@ docker run -v /home/shiguredo/sora-2022.2.3/archive:/hisui -it shiguredo/hisui:2
## docker 経由で help を見る

```
$ docker run -it shiguredo/hisui:2023.1.1-ubuntu-22.04 --help
$ docker run -it shiguredo/hisui:2023.2.0-ubuntu-22.04 --help
hisui
Usage: /usr/local/bin/hisui [OPTIONS]
Expand Down
2 changes: 1 addition & 1 deletion src/version/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ std::string get_fdkaac_aacenc_version() {
#endif

std::string get_hisui_version() {
return "2023.1.1";
return "2023.2.0";
}

std::string get_cppmp4_version() {
Expand Down
2 changes: 1 addition & 1 deletion test/version/version_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
BOOST_AUTO_TEST_SUITE(version)

BOOST_AUTO_TEST_CASE(get_hisui_version) {
BOOST_REQUIRE_EQUAL("2023.1.1", hisui::version::get_hisui_version());
BOOST_REQUIRE_EQUAL("2023.2.0", hisui::version::get_hisui_version());
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit 3184a32

Please sign in to comment.