Skip to content

Commit 0365214

Browse files
authored
Merge pull request #18 from suntong/fix/16
Release v1.7.3
2 parents 7ae6ef6 + 8167cc5 commit 0365214

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

README.e.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
### Latest Update(s)
1414

15+
#### Release v1.7.3
16+
17+
* Now able to split video into multiple segments. Details in [\#16](https://github.com/suntong/ffcvt/issues/16)
18+
1519
#### Release v1.7.2
1620

1721
* 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)

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
## TOC
1010
- [ffcvt - ffmpeg convert wrapper tool](#ffcvt---ffmpeg-convert-wrapper-tool)
1111
- [Latest Update(s)](#latest-update(s))
12+
- [Release v1.7.3](#release-v173)
1213
- [Release v1.7.2](#release-v172)
1314
- [Release v1.7.1](#release-v171)
1415
- [Release v1.7.0](#release-v170)
@@ -29,6 +30,10 @@
2930

3031
### Latest Update(s)
3132

33+
#### Release v1.7.3
34+
35+
* Now able to split video into multiple segments. Details in [\#16](https://github.com/suntong/ffcvt/issues/16)
36+
3237
#### Release v1.7.2
3338

3439
* 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)
@@ -107,8 +112,9 @@ Flags:
107112
-an no audio, output video only (FFCVT_AN)
108113
-vn no video, output audio only (FFCVT_VN)
109114
-vss video: same size (FFCVT_VSS)
110-
-C Cut segment(s) out to keep. Specify in the form of start-[end],
111-
strictly in the format of hh:mm:ss, and may repeat (FFCVT_C)
115+
-C,Cut Cut segment(s) out to keep. Specify in the form of start-[end],
116+
strictly in the format of hh:mm:ss, and may repeat (FFCVT_C,CUT)
117+
-S,Seg Split video into multiple segments (strictly in format: hh:mm:ss) (FFCVT_S,SEG)
112118
-lang language selection for audio stream extraction (FFCVT_LANG)
113119
-sel subtitle encoding language (language picked for reencoded video) (FFCVT_SEL)
114120
-o more options that will pass to ffmpeg program (FFCVT_O)
@@ -130,6 +136,13 @@ Details:
130136
-C value
131137
Cut segment(s) out to keep. Specify in the form of start-[end],
132138
strictly in the format of hh:mm:ss, and may repeat
139+
-Cut value
140+
Cut segment(s) out to keep. Specify in the form of start-[end],
141+
strictly in the format of hh:mm:ss, and may repeat
142+
-S string
143+
Split video into multiple segments (strictly in format: hh:mm:ss)
144+
-Seg string
145+
Split video into multiple segments (strictly in format: hh:mm:ss)
133146
-abr string
134147
audio bitrate (64k for opus, 256k for mp3)
135148
-ac

ffcvt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const _encodedExt = "_.mkv"
4141
// Global variables definitions
4242

4343
var (
44-
version = "1.7.2"
44+
version = "1.7.3"
4545
date = "2021-10-10"
4646

4747
encodedExt string = _encodedExt

0 commit comments

Comments
 (0)