consitency in options and doc
This commit is contained in:
parent
bbe03d4306
commit
6a4eb13ce0
|
@ -41,7 +41,7 @@ Usage
|
||||||
Extract .wav, .aif and .ogg (might actually be .ogg, .opus or .ogm) files from
|
Extract .wav, .aif and .ogg (might actually be .ogg, .opus or .ogm) files from
|
||||||
the file `data.bin` and store them in the `~/Music` directory.
|
the file `data.bin` and store them in the `~/Music` directory.
|
||||||
|
|
||||||
audioextract -f wave,ogg -o ~/Music data.bin
|
audioextract -f riff,aiff,ogg -o ~/Music data.bin
|
||||||
|
|
||||||
This will then write files like such into `~/Music`:
|
This will then write files like such into `~/Music`:
|
||||||
|
|
||||||
|
|
|
@ -519,10 +519,6 @@ int parse_formats(const char *formats)
|
||||||
{
|
{
|
||||||
mask = AIFF;
|
mask = AIFF;
|
||||||
}
|
}
|
||||||
else if (strncasecmp("wave", start, len) == 0)
|
|
||||||
{
|
|
||||||
mask = RIFF | AIFF;
|
|
||||||
}
|
|
||||||
else if (strncasecmp("mpg123", start, len) == 0)
|
else if (strncasecmp("mpg123", start, len) == 0)
|
||||||
{
|
{
|
||||||
mask = MPG123;
|
mask = MPG123;
|
||||||
|
|
Loading…
Reference in New Issue