From 8167cc5b408938925412efe1abffb7a379e1cae1 Mon Sep 17 00:00:00 2001 From: Tong Sun Date: Sun, 10 Oct 2021 18:25:44 -0400 Subject: [PATCH] - [#] Release v1.7.3 --- README.e.md | 4 ++++ README.md | 17 +++++++++++++++-- ffcvt.go | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/README.e.md b/README.e.md index 42cfbb7..512ad29 100644 --- a/README.e.md +++ b/README.e.md @@ -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) diff --git a/README.md b/README.md index f3eca59..ea50835 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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) @@ -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) @@ -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 diff --git a/ffcvt.go b/ffcvt.go index 3ae6498..b910973 100644 --- a/ffcvt.go +++ b/ffcvt.go @@ -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