Skip to content

Commit 8ac9e1d

Browse files
committed
Update readme and version bump 0.1 -> 0.2
1 parent d7ca038 commit 8ac9e1d

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and more efficient than using ffmpeg for this particular use case (dramatically
1010

1111
Currently the recommended way to build and install this program is using [Nix](https://nixos.org/guides/install-nix.html).
1212

13+
Alternatively, there should be windows installer in the releases section.
14+
1315

1416
To install it:
1517

@@ -22,12 +24,12 @@ Or to test it in a nix-shell:
2224

2325
### Compatibility
2426

25-
Linux only, I might consider to support other platforms as they become relevant to the project.
27+
Linux & Windows only, I might consider to support other platforms as they become relevant to the project.
2628

2729
## CLI interface
28-
dav2mp4 [options] <input-dav-file> <output-mp4-file>
30+
dav2mp4 [options] <input-dav-file-or-dir> <output-file-or-dir>
2931
Options:
30-
-v, --version: Show the version number and exit.
31-
-h, --help: Show this help message and exit.
32-
-f, --format: Video output format, supported: mp4 (default), raw, avi and asf.
33-
32+
-v, --version: Show the version number and exit.
33+
-h, --help: Show this help message and exit.
34+
-f, --format: Video output format, supported: mp4 (default), raw, avi and asf.
35+
-b, --batch-mode: Use the positional arguments as input and output directories.

src/dav2mp4.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import davconverter
44

55
const
66
progName = "dav2mp4"
7-
version = "0.1"
7+
version = "0.2"
88
supportedFormats = {
99
"mp4": MP4,
1010
"raw": RAW,

0 commit comments

Comments
 (0)