Sending image sequence job to compressor in command line : how to set the framerate?

Hello,
In Compressor, when you import a image sequence, it's possible to set the framerate and add an audio file before choosing a preset and lauching the encoding task.
I want to dlo the same thing with command line. I know how to send a compressor job with command line, but no how to add theses settings.
In the compressor command line help, we've got this :
Job Info: Used when submitting individual source files. Following parameters are repeated to enter multiple job targets in a batch
          -jobpath <url> -- url to source file.
                                           -- In case of Image Sequence, URL should be a file URL pointing to directory with image sequence.
                                           -- Additional parameters may be specified to set frameRate (e.g. frameRate=29.97) and audio file (e.g. audio=/usr/me/myaudiofile.mov).
So there are also framerate and audio parameters in command line but i've no idea how to write the command line with theses parameters
Here is an example of command line for Compressor (by Apple) :
./Compressor ‑clusterid tcp://127.0.0.1:51737 ‑batchname myBatch ‑jobpath /Volumes/Source/ShortClips/NTSC24p.mov ‑settingpath /Users/stomper10/Library/Application\ Support/Compressor/PhotoJPEG.setting ‑destinationpath /Users/machinename/Movies/myDestinationFilename.mov.
Thank you for your help!

You can see in the command sh running-config command
show running-config : Displays the current access point operating configuration
Use the guest-mode SSID configuration mode command to configure the radio interface (for the specified SSID) to support guest mode. Use the no form of the command to disable the guest mode.
[no] guest-mode .
Here is the guideline for usage
The access point can have one guest-mode SSID or none at all. The guest-mode SSID is used in beacon frames and response frames to probe requests that specify the empty or wildcard SSID. If no guest-mode SSID exists, the beacon contains no SSID and probe requests with the wildcard SSID are ignored. Disabling the guest mode makes the networks slightly more secure. Enabling the guest mode helps clients that passively scan (do not transmit) associate with the access point. It also allows clients configured without a SSID to associate.
Examples
This example shows how to set the wireless LAN for the specified SSID into guest mode:
AP(config-if-ssid)# guest-mode
This example shows how to reset the guest-mode parameter to default values:
AP(config-if-ssid)# no guest-mode

Similar Messages

  • How to Create Test Sequence Document in HTML using command line

    How to Create Test Sequence Document  in HTML using command line
    I have lot of sequences and I want to create Test Sequence Documentation in HTML format using Command Line automatically, is there a way to automate this task using .bat file or using   C#  .Net

    If you aren't able to figure out how to call a C++ DLL in .net then there may be another option.  Unfortunately I don't know how to do this off the top of my head and I don't have an example.
    The other option would be to change docgen.seq a little bit to the dialog doesn't display and you just hardcode the options.  Then you can use a command line to call testexec.exe: http://zone.ni.com/reference/en-XX/help/370052K-01/tsfundamentals/infotopics/startup_opt/
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • -info XML format for Compressor's command line interface?

    Hi Everyone,
    I've got a brand new copy of Final Cut Studio HD that I'm using for an encoding project. I'm trying to figure out how to use Compressor's command line interface. I want to give it a MPEG-2 file and a .scc (closed caption) file. I can see how to specify the source file, but I'm having trouble figuring out how to specify the SCC file. As best as I can understand, I'm going to need to use the -info <XML> option, but I haven't found any documentation for this. Can someone point me to the appropriate documentation?
    Thanks!
    - Kevin

    I get an error when I do exactly what you suggested. My problem is not if the XSU is able to locate the xml file because I know it is able to parse it since it picks up an error in it such as if I make the "ROW" element "row" - ie small caps instead of big which is not recognised by XSU. I use the url of the xml file as specified when I open the xml file in internet explorer. The XSU does confirm it inserts the document successfully with my original command but the document simply doesn't get inserted into the table. Specifically, if anyone is to insert the xml file I have shown in Oracle, how would it be approached successfully?
    Your help is very much appreciated.

  • How do I process user command line arguments inside of the Sequence Editor?

    Using TestStand 4.0, how would I go about storing "extra" command line arguments processed from the /runentrypoint command in the Sequence Editor specifically?

    djdewitt -
    TestStand 4.2 does not have this feature; however, we do have an internal issue (#163169) to track this request. You can actually get the commandline passed to the TestStand Sequence Editor using the below psuedo code in a sequence; however, currently the TestStand Sequence Editor displays a prompt when it does not recognize a custom token on the command-line and there is no way to suppress this.
    Locals.AppMgrRef = RunState.Engine.GetInternalOption(InternalOption_ApplicationManager);
    Locals.CommandsRef = Locals.AppMgrRef.CommandLineArguments;
    Locals.CountNum = Locals.CommandRef.Count;
    For i=0 to Locals.CountNum - 1
        Locals.CommandString = Locals.CommandRef.Item(i);
    End
    One suggestion is to use a batch file to write the commands to a dedicated text file and then launch the sequence editor. You can then use a sequence in the sequence editor to read from the file.
    Lastly, I just tried something and I do not necessarily recommend this, but I noticed that the Sequence Editor does not prompt when using the /goto token, so if I use the below command-line, it seems that no prompt appears, the goto command does nothing, and the psuedo code accesses the command-line tokens: 
    "C:\PathToApp\SeqEdit.exe" /goto "location tokens that do nothing" /run MainSequence "C:\PathToSequenceFile\GetCommandLineArgs.seq"
    Keep in mind that NI does not necessarily support this but it does seem to work for now.
    Scott Richardson
    National Instruments

  • How to set the expiry time of an image

    how to set the expiry time of an image from within the servlet or jsp

    I am sending an image with the page, so the set the page expiry in the browser cache we can use META tags of html or response.setDateHeader to set the Expires attribute, this setting the expiry time of the page but is not setting the expiry time of the image which is going with the page

  • How to set the source property of image control dynamically?

    Hi,
      I have different fxg files which I want to display in a list. For each row in the List, I define which fxg file to be displayed in my database.
    I need to know how to set the image1.source = (the fxg path) as a string from database?
    Is there any conversion needed in this case? If so, can you please help me how to do this?

    Hi,
      Thank you for your response. I am new to Adobe Flash Builder, Flex and action script. I don't get your answer straight away.
    What I basically need is, I need to set image1.source = strFXG. Right now, this does not show the image. I don't understand fxgObject.pathid.source => how to give this?
    Moreover, when I did google search, there is somethink like fxg converter which converts the fxg to a component. I thought this is a very simple problem on how to convert the fxg string to an object format. But now, it looks like it might be a big problem. Can anyone help me in this?
    import spark.components.Image;
                                  protected function view1_creationCompleteHandler(event:FlexEvent):void
      // TODO Auto-generated method stub
      var strFXG:String = 'assets.DB_Actief_Graphics';
                                            var image1:Image = new Image();
                                            image1.x = 100;
                                            image1.y = 100;
                                            image1.source = strFXG;
                                            addElement(image1);
    Regards,
    Chella

  • How to set the Maximum Number of the retry interval in sender cc?

    Hi,gurus:
    You know about how to set the Maximum Number of the retry interval of receiver communication channel in RWB.
    But how to set the one of the sender communication channel?
    Can we set that in integration directory?
    Any help will be appreciated.

    Hi,
    Check this blog, For the settings to be done at SXMB_ADMIN Tuning(IS_Retry_Limit )and the VA
    XI :  How to Re-Process failed XI Messages Automatically
    Also in VA change both inbound and outbound retries. For max no. of retry interval change the default value 300000(5 mins) to 600000(10 mins) or whatever you want.
    Thanks!
    Edited by: Sudhir Tiwari on Dec 16, 2008 7:33 AM

  • How to set the router and play the Command & Conquer using direct IP mode?

    My router is WRT54GFirmware Version: v3.03.1
    How to set the router and play the Command & Conquer using direct IP mode with other computer?

    Hi, when you say direct IP mode, what do you mean ? do you wanna play the game online or on the LAN ??
    can you give a few more details.

  • Set audio on compressor using command line?

    Anyone know how to supply the audio path using compressor on the command line?
    Running compressor -help shows audio=/path/to/file but it's not too specific on how that looks in the actual command.  I've tried every combination I can think of. Has anyone done this succussfully?
    Thanks

    When I try that format I don't get any response at the command line from compressor...it just exits.  Here's my command:
    compressor -clustername "Compressor" -batchname "test" -settingpath "/Volumes/theGrill/Resource_Library/Art_Anim/Presets/Compressor/Preview (H.264).setting" -asneededcopy -destinationpath "/Volumes/Scratch/temp/test/test.mov" -jobpath "/Volumes/Scratch/temp/test/Leadership_April_Update/" audio="/Volumes/Scratch/temp/test/Leadership_April_Update.wav"
    The other formats I've tried include.  Responses are what is returned in terminal.
    -jobpath "/path/to/sourcevideo.mov",audio="/path/to/sourceaudio.aif"
         Response: Parameter error: Invalid Job path: /Volumes/Scratch/temp/test/Leadership_April_Update/,audio=/Volumes/Scratch/temp /test/Leadership_April_Update.wav
    -jobpath "/path/to/sourcevideo.mov" -audio="/path/to/sourceaudio.aif"
         Response: None
    -jobpath "/path/to/sourcevideo.mov" -audio "/path/to/sourceaudio.aif"
         Response: Invalid parameter: -audio
    -jobpath "/path/to/sourcevideo.mov" -jobpath audio="/path/to/sourceaudio.aif"
         Response: Parameter error: Invalid Job path: audio=/Volumes/Scratch/temp/test/Leadership_April_Update.wav
    -jobpath "file:///path/to/sourcevideo.mov?audio=file:///path/to/sourceaudio.aif"
         This submits, but the output doesn't have the audio.
    Any other ideas?

  • Compressor 4 command line -in and -out points

    I'm trying to use Compressor 4.1 command line interface to compress various video clips. While I can compress an entire file, start to end, without issue, I can't figure out how to compress a subset of the source file by setting in and out points. The -help information states I can set -in <hh:mm:ss;ff> and -out <hh:mm:ss;ff> parameters except they seem to have no effect as Compressor compresses the full file. Has anyone been able to specify -in and -out parameters successfully? If so, can you please share the appropriate syntax?
    FWIW: here is the sytax for command that I've been using to compress 2 seconds of source video:
    /applications/Compressor.app/Contents/MacOS/compressor -batchname sampleBatch  -jobpath /Shows/filename_HD.mov -settingpath /Settings/480pProxy.cmprstng  -locationpath /Clips/clipName_HD.mov -in 00:00:04;00  -out 00:00:06;00
    OSX 10.9.2, Compressor 4.1 and Compressor 4.1.1

    You have to use quotation marks around the in an out points because of the semi colon.
    /Applications/Compressor.app/Contents/MacOS/Compressor -batchname "In and Out Example"  -jobpath /Shows/filename_HD.mov -settingpath /Settings/480pProxy.cmprstng  -locationpath /Clips/clipName_HD.mov -in "00:00:04;00"  -out "00:00:06;00"

  • How to set  the CR print job name that displayed in Printer job queue?

    As following image shows, when I press the Print button in Crystal Report Preview GUI,
    a print job is sent to Windows Printer Spool.
    [Windows Printer queue dialog snapshot|http://www.box.net/shared/96vq4qa2mp]
    The "Document Name" in the dialog is like "Crystal Reports - temp_214d9d11-a73f-4872-81f6-b8a63bf0a6b9.rpt".
    I want to know which property of Crystal Reports can be used to set the print job name to a more meaningful one.
    Edited by: Xiaobing Sun on Apr 2, 2009 5:08 AM

    The solution in this thread is for VS .NET as this is the forum for CR in .NET.
    With Foxpro, I suspect you want to create a new thread in the SAP Crystal Reports - Legacy SDKs forum.
    Make sure you specify the exact version of CR used.
    - Ludek

  • Command line - two devices with the same name

    I have two identical logitech usb webcams on the same system,
    and I'm trying to use the command line to encode from each. The
    problem is that the xml profile requires the device name, but both
    devices are listed using the exact same name, so the command line
    only ever chooses one of the cameras as the source. Using the GUI,
    I can select one or the other because they both appear in the drop
    down list.
    Is there a way to specify the device index ala ActionScript,
    or another way to specify the device? I tried renaming the camera
    in the WinXP control panel, but that change was not seen by FME.
    Thanks!

    I'm having the same problem - I tried attaching my Canopus
    ADVC 1000 adapters to different Firewire chains (motherboard and
    PCI-based) but that didn't help.

  • Images are always placed -2pt below base line - how to change?

    Hi all,
    for small icons that should appear in the text, we use image elements within the paragraph. When I select the placement option at insertion point, then the image is always placed -2pt "above" the base line (thus, actually below the line). If I try to change this then it is reset when I save the topic.
    Can I modify the read/write rules to allow manual chnages, or set this globally to 0pt? We use FrameMaker 9, DITA for this project.
    Robert

    Sorry about the delayed response.
    It would take a script or FDK client to automate the setting while editing within FrameMaker. When working with XML, you can, as Michael noted, use attributes to store the anchored frame properties in XML so that you can round-trip them. If you are willing to use FM's default attribute names and values, you don't even need read/write rules.
    Another approach, if all instances of an element type are to be treated the same way is to specify the necessary settings in read/write rules. In that case, you can edit in FM not caring how the anchored frames look. When you save as XML and open the result, the r/w rules will kick in and you'll get what you want. For example, you might define an element called InlineGraphic and use the r/w rule:
    element "InlineGraphic" {
       is fm graphic element;
       fm property position value is "inline";
       fm property baseline offset value is "0";
    In this case, your DTD would not define attributes for the position or baseline offset properties. Whenever you open an XML document, the InlineGraphic elements will come in At Insertion Point with an offset of 0.0 pt.
               --Lynne

  • How to set the text as an image

    Is there a way to set the text to automatically change to an image? (In preference panel, you select "Sow text imaging indicator", then there comes a yellow sign over the text, meaning that the text will be a graphic in the browser) Some text does change to a graphic but some does not. It´s very annoying cause the text sometimes changes in the browser, some don´t. So is there not a way to select which text changes to a graphic?

    Okay I made a new text box and changed the font until the little graphic appeared. Now I know, but, I also know that a lot of the font I tried would not be on someone else's computer (specially windows) but it would not have converted I guess it would have been substituted. That is really not good because the look would be very different. Should we force a conversion then to insure that it looks like what we want? Then we no longer have any text we have mostly graphics and is that not bad to be found by the search engines?
    This is so complicated!
    Mireille

  • How to set the transparency for a image

    Hi
    iam reading and writing and GIF image,when i resize the new image
    the transparency of the old image is not applied to the new one it appears black as background. so i need to set the transparency of the old image to the new GIF image . so is there any function to set the tranparency or any sample code....

    hi
    Image image = Toolkit.getDefaultToolkit().getImage(logoFilePath);
    image.getScaledInstance(200,150,Image.SCALE_SMOOTH);
    MediaTracker mediaTracker = new MediaTracker(new Container());
    mediaTracker.removeImage(image);
    mediaTracker.addImage(image,
    0);
    mediaTracker.waitForID(0);
    // determine thumbnail size from WIDTH and HEIGHT
    int thumbWidth = Integer.parseInt("200");
    int thumbHeight = Integer.parseInt("150");
    double thumbRatio = (double) thumbWidth / (double) thumbHeight;
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    double imageRatio = (double) imageWidth / (double) imageHeight;
    int transparency = Integer.parseInt("100");
    if (thumbRatio < imageRatio)
    thumbHeight = (int) (thumbWidth / imageRatio);
    else
    thumbWidth = (int) (thumbHeight * imageRatio);
    if (imageWidth < thumbWidth && (imageHeight < thumbHeight))
    thumbHeight = imageHeight;
    thumbWidth = imageWidth;
    // draw original image to thumbnail image object and
    BufferedImage thumbImage = new BufferedImage(thumbWidth, thumbHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D graphics2D = thumbImage.createGraphics();
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
    RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
    // save thumbnail image to OUTFILE
    out = new BufferedOutputStream(new FileOutputStream(newFilePath));
    GifEncoder gife = new GifEncoder(thumbImage,out);
    gife.encode();

Maybe you are looking for