Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Speex Commandline Options (Read 3664 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Speex Commandline Options

I have a problem using the commandline using this compilation.

The commandlines I have tried are:


speexenc -wideband -abr 24576 -nframes 8 -comp 10 -V "filename" "outputname"

ERRORMESSAGE: invalid option -- i


speexenc -wideband -bitrate 24576 -nframes 8 -comp 10 -V "filename" "outputname"

ERRORMESSAGE: invalid option -- i


speexenc -wideband quality 8 -vbr -nframes 8 -comp 10 -V "filename" "outputname"

ERRORMESSAGE: invalid option -- i


speexenc -wideband -bitrate 24576 -comp 10 "filename" "outputname"

ERRORMESSAGE: invalid option -- i


speexenc -bitrate 24576 -comp 10 "filename" "outputname"

ERRORMESSAGE: invalid option -- b


This however worked:

speexenc "filename" "outputname"



Any suggestions as to how to fix this? It's vital for encoding CDs.


EDIT: I think I found a solution...

Speex Commandline Options

Reply #1
> speexenc -wideband -abr 24576 -nframes 8 -comp 10 -V "filename"
> "outputname"

speexenc -w --abr 24576 --nframes 1 --comp 10 -V in.wav out.spx

Have you ever tried "spexxenc --help" ?

Speex Commandline Options

Reply #2
Apparently, I forgot using --, I used -.

Thanks, though