Skip to content

Commit

Permalink
Update readme and version bump 0.1 -> 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cyraxjoe committed Nov 5, 2024
1 parent d7ca038 commit 8ac9e1d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and more efficient than using ffmpeg for this particular use case (dramatically

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

Alternatively, there should be windows installer in the releases section.


To install it:

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

### Compatibility

Linux only, I might consider to support other platforms as they become relevant to the project.
Linux & Windows only, I might consider to support other platforms as they become relevant to the project.

## CLI interface
dav2mp4 [options] <input-dav-file> <output-mp4-file>
dav2mp4 [options] <input-dav-file-or-dir> <output-file-or-dir>
Options:
-v, --version: Show the version number and exit.
-h, --help: Show this help message and exit.
-f, --format: Video output format, supported: mp4 (default), raw, avi and asf.

-v, --version: Show the version number and exit.
-h, --help: Show this help message and exit.
-f, --format: Video output format, supported: mp4 (default), raw, avi and asf.
-b, --batch-mode: Use the positional arguments as input and output directories.
2 changes: 1 addition & 1 deletion src/dav2mp4.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import davconverter

const
progName = "dav2mp4"
version = "0.1"
version = "0.2"
supportedFormats = {
"mp4": MP4,
"raw": RAW,
Expand Down

0 comments on commit 8ac9e1d

Please sign in to comment.