Skip to content

Commit

Permalink
- [#] update README
Browse files Browse the repository at this point in the history
  • Loading branch information
suntong committed Aug 21, 2023
1 parent d110eb0 commit 195709c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 7 deletions.
12 changes: 12 additions & 0 deletions README.e.md
Expand Up @@ -12,6 +12,18 @@

### Latest Update(s)

#### Release v1.12.0

Now able to have specific CRF environment variable for `libx26?` types:

- libx264: `FFCVT_CRF4`
- libx265: `FFCVT_CRF5`


#### Release v1.11.1

Now able to restrict CPU usage by limiting max conversions done in each run.

#### Release v1.10.0

Now able to
Expand Down
30 changes: 25 additions & 5 deletions README.md
Expand Up @@ -16,6 +16,8 @@ using ffmpeg.
## TOC
- [ffcvt - ffmpeg convert wrapper tool](#ffcvt---ffmpeg-convert-wrapper-tool)
- [Latest Update(s)](#latest-update(s))
- [Release v1.12.0](#release-v1120)
- [Release v1.11.1](#release-v1111)
- [Release v1.10.0](#release-v1100)
- [Release v1.9.0](#release-v190)
- [Release v1.8.0](#release-v180)
Expand Down Expand Up @@ -44,6 +46,18 @@ using ffmpeg.

### Latest Update(s)

#### Release v1.12.0

Now able to have specific CRF environment variable for `libx26?` types:

- libx264: `FFCVT_CRF4`
- libx265: `FFCVT_CRF5`


#### Release v1.11.1

Now able to restrict CPU usage by limiting max conversions done in each run.

#### Release v1.10.0

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

```sh
$ ffcvt -version
ffcvt version 1.10.0 built on 2023-05-18
ffcvt version 1.12.0 built on 2023-08-21

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

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

### $ ffcvt
Expand Down Expand Up @@ -183,6 +197,8 @@ Flags:

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

-force overwrite any existing none-empty file (FFCVT_FORCE)
Expand Down Expand Up @@ -220,6 +236,8 @@ Details:
no audio, output video only
-ato-opus
audio encode to opus, using -abr
-bt duration
breath time, interval between conversion to take a breath (default 2m0s)
-cfg string
cfg file to define your own targets: webm/wx/youtube etc
-crf string
Expand All @@ -245,6 +263,8 @@ Details:
Add a karaoke audio track to .mp4 MTV
-lang string
language selection for audio stream extraction (default "eng")
-maxc int
max conversion done each run (default no limit)
-n no exec, dry run
-nc
no clobber, do not queue those already been converted
Expand Down
4 changes: 2 additions & 2 deletions ffcvt.go
Expand Up @@ -54,8 +54,8 @@ type videoCol struct {
// Global variables definitions

var (
version = "1.11.1"
date = "2023-05-26"
version = "1.12.0"
date = "2023-08-21"

encodedExt string = _encodedExt
totalOrg int64 = 1
Expand Down

0 comments on commit 195709c

Please sign in to comment.