Skip to content

Commit

Permalink
Merge pull request #15 from suntong/fix/14
Browse files Browse the repository at this point in the history
- [#] Release v1.7.2, now able to pick subtitle language(s); fixes #14
  • Loading branch information
suntong authored Oct 10, 2021
2 parents 4ea19fa + ea74fe6 commit 0f1bed2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.e.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

### Latest Update(s)

#### 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)
* Fixed [\#8](https://github.com/suntong/ffcvt/issues/8). Now [force copy all subtitle streams. ](https://github.com/suntong/ffcvt/commit/46ce6725f9b036d373c6836d3bd66b429d5c4b2f)Details in [\#8](https://github.com/suntong/ffcvt/issues/8)
* [Added option -sel](https://github.com/suntong/ffcvt/commit/defc5df5168216e279b944590f1d92523ecadc60), so now able to pick subtitle language(s). Details in [\#12](https://github.com/suntong/ffcvt/issues/12)

#### Release v1.7.1

Added option `-C` which allows cutting multiple segments.
Expand Down
10 changes: 10 additions & 0 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.2](#release-v172)
- [Release v1.7.1](#release-v171)
- [Release v1.7.0](#release-v170)
- [Introduction](#introduction)
Expand All @@ -28,6 +29,12 @@

### Latest Update(s)

#### 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)
* Fixed [\#8](https://github.com/suntong/ffcvt/issues/8). Now [force copy all subtitle streams. ](https://github.com/suntong/ffcvt/commit/46ce6725f9b036d373c6836d3bd66b429d5c4b2f)Details in [\#8](https://github.com/suntong/ffcvt/issues/8)
* [Added option -sel](https://github.com/suntong/ffcvt/commit/defc5df5168216e279b944590f1d92523ecadc60), so now able to pick subtitle language(s). Details in [\#12](https://github.com/suntong/ffcvt/issues/12)

#### Release v1.7.1

Added option `-C` which allows cutting multiple segments.
Expand Down Expand Up @@ -103,6 +110,7 @@ Flags:
-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)
-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)
-ato-opus audio encode to opus, using -abr (FFCVT_ATO_OPUS)
-vto-x265 video video encode to x265, using -crf (FFCVT_VTO_X265)
Expand Down Expand Up @@ -163,6 +171,8 @@ Details:
-o string
more options that will pass to ffmpeg program
-p par2create, create par2 files (in work directory)
-sel value
subtitle encoding language (language picked for reencoded video)
-sep string
subtitle encoding method prepend
-ses string
Expand Down
4 changes: 2 additions & 2 deletions ffcvt.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const _encodedExt = "_.mkv"
// Global variables definitions

var (
version = "1.7.1"
date = "2021-09-12"
version = "1.7.2"
date = "2021-10-10"

encodedExt string = _encodedExt
totalOrg int64 = 1
Expand Down

0 comments on commit 0f1bed2

Please sign in to comment.