illustrate
Products            Buy            Support Forum            Registrations            Professional            About           
 

Generic CLI Encoder Optionfile!?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JessiKa

    • Nov 2005
    • 10

    Generic CLI Encoder Optionfile!?

    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!
    Last edited by JessiKa; November 05, 2005, 01:17 PM.
  • Spoon
    Administrator
    • Apr 2002
    • 44669

    #2
    Re: Generic CLI Encoder Optionfile!?

    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.
    Spoon
    www.dbpoweramp.com

    Comment

    • gameplaya15143
      dBpoweramp Enthusiast

      • Sep 2005
      • 276

      #3
      Re: Generic CLI Encoder Optionfile!?

      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
      hey spoon, how about some documentation about what can really be done with this baby?
      Last edited by gameplaya15143; November 02, 2005, 06:35 PM.

      Comment

      • JessiKa

        • Nov 2005
        • 10

        #4
        Re: Generic CLI Encoder Optionfile!?

        Originally posted by Spoon
        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 !!
        Last edited by JessiKa; November 05, 2005, 01:15 PM.

        Comment

        • Spoon
          Administrator
          • Apr 2002
          • 44669

          #5
          Re: Generic CLI Encoder Optionfile!?

          No, only a drop list.
          Spoon
          www.dbpoweramp.com

          Comment

          • gameplaya15143
            dBpoweramp Enthusiast

            • Sep 2005
            • 276

            #6
            Re: Generic CLI Encoder Optionfile!?

            Originally posted by Spoon
            No, only a drop list.
            :cry:

            Comment

            • JessiKa

              • Nov 2005
              • 10

              #7
              Re: Generic CLI Encoder Optionfile!?

              Originally posted by gameplaya15143
              :cry:
              Yes... I'll feel whit you gameplaya15143 :cry:

              Comment

              • gameplaya15143
                dBpoweramp Enthusiast

                • Sep 2005
                • 276

                #8
                Re: Generic CLI Encoder Optionfile!?

                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:

                [SIZE=1][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][/SIZE]

                * 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

                Comment

                Working...