aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2023-11-06 01:12:21 +0100
committerDaniil Cherednik <dan.cherednik@gmail.com>2023-11-06 01:12:21 +0100
commitde664619a2b110fa1639eb09c19390f97d4a96a8 (patch)
treec615481b214e1cdfd5163235242f63c66889f08c /README.md
parent2ff97d04227a9cb83ad90211b3f150991d11d737 (diff)
downloadatracdenc-de664619a2b110fa1639eb09c19390f97d4a96a8.tar.gz
Readme and man page fix
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 8 insertions, 9 deletions
diff --git a/README.md b/README.md
index 202ad63..9e12752 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
# atracdenc - ATRAC Decoder Encoder
-Implementation of ATRAC1, ATRAC3 encoders
+It is free LGPL implementation of ATRAC1, ATRAC3 encoders.
Building:
You need:
* C++11 compiler.
-* cmake >= 3.0
+* cmake >= 3.1
* libsndfiles
binary:
@@ -31,17 +31,16 @@ Usage:
ATRAC1:
```
-./atracdenc --encode -i ~/01.wav -o /tmp/01.aea
+./atracdenc -e atrac1 -i ~/01.wav -o /tmp/01.aea
```
-ATRAC3: - use it only if you want to improve it ;)
+ATRAC3:
+```
+./atracdenc -e atrac3 -i ~/01.wav -o /tmp/01.oma
+```
-You can use --help option to get help
+More information on the [atracdenc man page](man/atracdenc.1)
Limitations:
- Bit allocation based on the tonality of the signal (see http://www.minidisc.org/aes_atrac.html)
- Only 44100 16bit wav input file
-
-Other problems:
- - Unfortunately software using ffmpeg library often incorrectly detects AEA file.
- Be careful, the noise in case of wrong detection can be extremely high.