aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 202ad638f298239d56449fe9d1beebe5e2f46e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# atracdenc - ATRAC Decoder Encoder
Implementation of ATRAC1, ATRAC3 encoders

Building:

You need:
* C++11 compiler.
* cmake >= 3.0
* libsndfiles 

binary:

```
cd src
mkdir build
cd build
cmake ../
make
```


binary and tests:

```
cd test
cmake ../
make
```

Usage:

ATRAC1:
```
./atracdenc --encode -i ~/01.wav -o /tmp/01.aea
```

ATRAC3: - use it only if you want to improve it ;)

You can use --help option to get help

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.