Skip to content

Commit fe1c309

Browse files
committed
add/fix readme.
1 parent 91c670a commit fe1c309

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,35 @@ Following example encoding in maximum compression (but slow) option.
4242
```
4343
#### Max block size `-B`
4444

45-
You can change maximum block size by `-B` option.
46-
Following example encoding with maximum block size be 4096 sample.
45+
The'- B' option can change the maximum block size.
46+
The following example encodes with a maximum block size of 4096 samples.
4747

4848
```bash
4949
./srla -e -B 4096 INPUT.wav OUTPUT.srl
5050
```
5151

5252
#### Number of divisions in block `-V`
5353

54-
You can change number of division by `-V` option. Number of division specifies search depth of optimal block division.
55-
Following example encoding with number of divisions in block to be $2^{2} = 4$.
54+
You can change the number of divisions using the `-V` option. The number of divisions specifies the search depth of optimal block division.
55+
The following example encodes with a number of divisions in the block to be $2^{2} = 4$.
5656

5757
```bash
5858
./srla -e -V 2 INPUT.wav OUTPUT.srl
5959
```
6060

61-
#### Long term prediction order `-P`
61+
#### Lookahead sample factor `-L`
62+
63+
You can change the multiplying factor for lookahead samples in variable block division.
64+
The following example is encoding with a lookahead factor of 8.
65+
66+
```bash
67+
./srla -e -L 8 INPUT.wav OUTPUT.srl
68+
```
69+
70+
#### Long-term prediction order `-P`
6271

6372
The `-P` option specifies long-term (pitch) prediction order, which improves the compression ratio, especially for vocal/pure tonal signals.
73+
Following example encoding with long-term prediction order 3.
6474

6575
```bash
6676
./srla -e -P 3 INPUT.wav OUTPUT.srl

0 commit comments

Comments
 (0)