Skip to content

Commit 195709c

Browse files
committed
- [#] update README
1 parent d110eb0 commit 195709c

File tree

3 files changed

+39
-7
lines changed

3 files changed

+39
-7
lines changed

README.e.md

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

1313
### Latest Update(s)
1414

15+
#### Release v1.12.0
16+
17+
Now able to have specific CRF environment variable for `libx26?` types:
18+
19+
- libx264: `FFCVT_CRF4`
20+
- libx265: `FFCVT_CRF5`
21+
22+
23+
#### Release v1.11.1
24+
25+
Now able to restrict CPU usage by limiting max conversions done in each run.
26+
1527
#### Release v1.10.0
1628

1729
Now able to

README.md

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ using ffmpeg.
1616
## TOC
1717
- [ffcvt - ffmpeg convert wrapper tool](#ffcvt---ffmpeg-convert-wrapper-tool)
1818
- [Latest Update(s)](#latest-update(s))
19+
- [Release v1.12.0](#release-v1120)
20+
- [Release v1.11.1](#release-v1111)
1921
- [Release v1.10.0](#release-v1100)
2022
- [Release v1.9.0](#release-v190)
2123
- [Release v1.8.0](#release-v180)
@@ -44,6 +46,18 @@ using ffmpeg.
4446

4547
### Latest Update(s)
4648

49+
#### Release v1.12.0
50+
51+
Now able to have specific CRF environment variable for `libx26?` types:
52+
53+
- libx264: `FFCVT_CRF4`
54+
- libx265: `FFCVT_CRF5`
55+
56+
57+
#### Release v1.11.1
58+
59+
Now able to restrict CPU usage by limiting max conversions done in each run.
60+
4761
#### Release v1.10.0
4862

4963
Now able to
@@ -125,13 +139,13 @@ There is a quick usage help that comes with `ffcvt`, produced when it is invoked
125139

126140
```sh
127141
$ ffcvt -version
128-
ffcvt version 1.10.0 built on 2023-05-18
142+
ffcvt version 1.12.0 built on 2023-08-21
129143

130-
ffmpeg version 4.3.6-0+deb11u1 Copyright (c) 2000-2023 the FFmpeg developers
131-
built with gcc 10 (Debian 10.2.1-6)
144+
ffmpeg version 5.1.3-1 Copyright (c) 2000-2022 the FFmpeg developers
145+
built with gcc 12 (Debian 12.2.0-14)
132146

133-
ffprobe version 4.3.6-0+deb11u1 Copyright (c) 2007-2023 the FFmpeg developers
134-
built with gcc 10 (Debian 10.2.1-6)
147+
ffprobe version 5.1.3-1 Copyright (c) 2007-2022 the FFmpeg developers
148+
built with gcc 12 (Debian 12.2.0-14)
135149
```
136150

137151
### $ ffcvt
@@ -183,6 +197,8 @@ Flags:
183197

184198
-p par2create, create par2 files (in work directory) (FFCVT_P)
185199
-nc no clobber, do not queue those already been converted (FFCVT_NC)
200+
-bt breath time, interval between conversion to take a breath (FFCVT_BT)
201+
-maxc max conversion done each run (default no limit) (FFCVT_MAXC)
186202
-n no exec, dry run (FFCVT_N)
187203

188204
-force overwrite any existing none-empty file (FFCVT_FORCE)
@@ -220,6 +236,8 @@ Details:
220236
no audio, output video only
221237
-ato-opus
222238
audio encode to opus, using -abr
239+
-bt duration
240+
breath time, interval between conversion to take a breath (default 2m0s)
223241
-cfg string
224242
cfg file to define your own targets: webm/wx/youtube etc
225243
-crf string
@@ -245,6 +263,8 @@ Details:
245263
Add a karaoke audio track to .mp4 MTV
246264
-lang string
247265
language selection for audio stream extraction (default "eng")
266+
-maxc int
267+
max conversion done each run (default no limit)
248268
-n no exec, dry run
249269
-nc
250270
no clobber, do not queue those already been converted

ffcvt.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ type videoCol struct {
5454
// Global variables definitions
5555

5656
var (
57-
version = "1.11.1"
58-
date = "2023-05-26"
57+
version = "1.12.0"
58+
date = "2023-08-21"
5959

6060
encodedExt string = _encodedExt
6161
totalOrg int64 = 1

0 commit comments

Comments
 (0)