PDA

View Full Version : Generic CLI Encoder Optionfile!?



JessiKa
11-01-2005, 10:19 AM
Hello there outside!

I use the generic CLI encoder, but a thing is missing to me.
I've studied the "options.txt" from other encoders and I want now this "feature" for to provide of several profiles use, so that I do not have to change always the parameters manually.

Is that buildable? :confused:

Hallo da draußen!

Ich benutze den "Generic CLI Encoder", aber eine Sache fehlt mir.
Ich habe die "options.txt" von anderen Encoder studiert und würde gern diese "Eigenschaft" für den Gebrauch eigener Profile zur Verfügung stellen, damit ich nicht immer die Parameter manuell ändern muß.

Ist das baubar?

Greetz,
Grüüße,
Jessika!

Spoon
11-01-2005, 02:29 PM
Yes if you create a combo box (and pass the settings for each line as a different profile). See any of the CLI that have a bitrate combo box.

gameplaya15143
11-01-2005, 06:14 PM
hmmm... i'll look into this later

i have been modifying the existing cli plugin's (from codec central) options.txt

i haven't really tried anything fancy with the generic cli plugin itself

<edit> the next day:
i never knew :thumbup:
hey spoon, how about some documentation about what can really be done with this baby?

JessiKa
11-05-2005, 03:24 AM
Yes if you create a combo box (and pass the settings for each line as a different profile). See any of the CLI that have a bitrate combo box.

Okay, I'll try this...

//Edit//
It´s working!
But now I want to be inserted a "Option-box" as like as in the coding box of Nero.
Is that possible?

Whit "Option-box" I mean that small circles, in which only by them can be preselected. I cannot designate it correctly!?

Yes, I wish the same like gameplaya15143.
I would want to know, what I can use everything in "options.txt".

!! But thanks very much for the first information !!

Spoon
11-05-2005, 02:49 PM
No, only a drop list.

gameplaya15143
11-06-2005, 06:06 PM
No, only a drop list.
:cry:

JessiKa
11-12-2005, 03:13 PM
:cry:

Yes... I'll feel whit you gameplaya15143 :cry:

gameplaya15143
11-14-2005, 01:46 PM
i use dmc almost exclusively for its cli support, it would be nice to have radio buttons, check boxes, etc. but oh well

just use the generic cli dll that is 56.1kb (the 60kb one doesnt support stdin), it comes with the lame cli encoder and vorbis aotuv b4 codec

set up a few combo boxes for bitrate, samplerate, etc.

you can put any of the normal cli replacement tags in the options file too
for lame:

[Codec]
.mp3
lame.exe

[CLIString]
-r -x --bitwidth

[BitsPerSample]

[CLIString]
-s

[SamplesPerSec]

[IsMonoString] <- this is a special thing for lame, it has no 'channels' parameter ([Channels] is used for ones that have a channels parameter)
-m m

[CLIString]
- <-- stdin :D

[OutFile]

* and then we have lables
[Label]
x
y
labeltext

* combos
[Combo]
x
y
length
Preset1
-preset1 <-- it doesnt hurt to have leading and trailing spaces

* and you can still put in the normal cli textbox, for extra options
[CLIText]
x
y
length

* hope this makes it easier for those who are too lazy to figure it out on their own