Skip to content

Commit

Permalink
Merge pull request #18 from suntong/fix/16
Browse files Browse the repository at this point in the history
Release v1.7.3
  • Loading branch information
suntong authored Oct 10, 2021
2 parents 7ae6ef6 + 8167cc5 commit 0365214
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.e.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

### Latest Update(s)

#### Release v1.7.3

* Now able to split video into multiple segments. Details in [\#16](https://github.com/suntong/ffcvt/issues/16)

#### Release v1.7.2

* Able to [choose streams by language, instead of streams index. ](https://github.com/suntong/ffcvt/commit/f649609356ef06d22d17d6dbe3f89b945cf18643)Details in [\#9](https://github.com/suntong/ffcvt/issues/9)
Expand Down
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
## TOC
- [ffcvt - ffmpeg convert wrapper tool](#ffcvt---ffmpeg-convert-wrapper-tool)
- [Latest Update(s)](#latest-update(s))
- [Release v1.7.3](#release-v173)
- [Release v1.7.2](#release-v172)
- [Release v1.7.1](#release-v171)
- [Release v1.7.0](#release-v170)
Expand All @@ -29,6 +30,10 @@

### Latest Update(s)

#### Release v1.7.3

* Now able to split video into multiple segments. Details in [\#16](https://github.com/suntong/ffcvt/issues/16)

#### Release v1.7.2

* Able to [choose streams by language, instead of streams index. ](https://github.com/suntong/ffcvt/commit/f649609356ef06d22d17d6dbe3f89b945cf18643)Details in [\#9](https://github.com/suntong/ffcvt/issues/9)
Expand Down Expand Up @@ -107,8 +112,9 @@ Flags:
-an no audio, output video only (FFCVT_AN)
-vn no video, output audio only (FFCVT_VN)
-vss video: same size (FFCVT_VSS)
-C Cut segment(s) out to keep. Specify in the form of start-[end],
strictly in the format of hh:mm:ss, and may repeat (FFCVT_C)
-C,Cut Cut segment(s) out to keep. Specify in the form of start-[end],
strictly in the format of hh:mm:ss, and may repeat (FFCVT_C,CUT)
-S,Seg Split video into multiple segments (strictly in format: hh:mm:ss) (FFCVT_S,SEG)
-lang language selection for audio stream extraction (FFCVT_LANG)
-sel subtitle encoding language (language picked for reencoded video) (FFCVT_SEL)
-o more options that will pass to ffmpeg program (FFCVT_O)
Expand All @@ -130,6 +136,13 @@ Details:
-C value
Cut segment(s) out to keep. Specify in the form of start-[end],
strictly in the format of hh:mm:ss, and may repeat
-Cut value
Cut segment(s) out to keep. Specify in the form of start-[end],
strictly in the format of hh:mm:ss, and may repeat
-S string
Split video into multiple segments (strictly in format: hh:mm:ss)
-Seg string
Split video into multiple segments (strictly in format: hh:mm:ss)
-abr string
audio bitrate (64k for opus, 256k for mp3)
-ac
Expand Down
2 changes: 1 addition & 1 deletion ffcvt.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const _encodedExt = "_.mkv"
// Global variables definitions

var (
version = "1.7.2"
version = "1.7.3"
date = "2021-10-10"

encodedExt string = _encodedExt
Expand Down

0 comments on commit 0365214

Please sign in to comment.