How do I change video resolution.

I have Number-Nine S3mini driver. The bios is 86C357. I can't get the depth of color, nor can I get the higher resolution.
Any suggestions ?
Pranava.

Pravana,
You can use these 2 commands to attempt a change in the keyboard/display mode comfiguration:
Login as root
#kdmconfig -u
#kdmconfig -cf
You will see a menu driven configuration screen to set the resolution and monitor type/model.
Allen Lai
Sun Microsystems

Similar Messages

  • How do i change the resolution on my apple tv

    how do i change the resolution on my apple tv  i need to see prompts that are half on the screen

    I don't believe changing resolution will help. Try turning on the overscan correction.

  • HOW DO YOU CHANGE THE RESOLUTION TO A HIGHER SETTING

    How do you change the resolution to a higher setting with a macbook pro?

    hey
    this is nice post acctually i was looking for the same..
    thanks for sharing...

  • How do i change the resolution of my screen shots that i captured from my desktop?

    How do i change the resolution of my screen shots that i captured from my desktop?
    Thanks.

    Do you mean you want it saved with the resolution set to something other than 72 dpi when the capture is made, or do you mean you want your capture saved at a higher resolution than the captured area?
    1) If the first, there are ways to change the default capture format .png to something else, such as .jpg, .tif and a few others, but as far as I know, the resolution will always be 72 dpi. You can use Preview to change the resolution of the captured image under Tools > Adjust Size. You will get this:
    If your intention is to set the resolution for professional printing defaults, then change the resolution to 300. Turn off Resample image to prevent the image from actually having more pixels added. The resolution will simply be reset from 72 to 300 dpi without changing the actual number of pixels in the image. It will also print a lot smaller since the output device will now use 300 pixels per linear inch instead of 72.
    Leave Resample image on if you need to maintain the dimensions. Be aware however that scaling the image (resampling) will add a lot more pixels to the image than are there to maintain size. Expect the image to get very soft and pixelated looking when adding 417% more data to the image than it currently has.
    2) If you mean you want the OS to actually save the captured area as a high resolution image at size, that can't happen. A capture is a 1:1 grab of the display buffer. It can only capture what's there. So if you capture a 700 pixel x 500 pixel area, that's all the bigger it can be without scaling it afterwards.

  • How can I change video screen from landscape to portrait.  It is set to landscape since I updated to IOS 6.  TY

    How can I change video screen from landscape to portrait.  It is set to landscape since I updated to IOS 6.  TY

    Is the screen-rotation lock on? If it is then there is a padlock shown in the upper right by the battery icon. To turn off double click the Home button and fully swipe the bottom row fully right past the music controls and tap the padlock.
    Otherwise
    Try:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • How do I change picture resolution from screen capture?

    If I want to take the image on the screen in Encore CS5 and save it as a photoshop picture the resolution is 70 DPI.  Is there any way to change this resolution?  I would like sharper pictures if possible, 100 DPI to 200 DPI if this can be done.
    Encore CS5
    Core 4 2.4 ghz processor
    6 GB Ram
    700 GB free on hard drive
    Windows 7 64 bit

    I completely agree with your goal - getting as a good a resolution print as possible.  But your focus on dpi for the capture of a frame will not help you.
    Kind of like scanning an image.  If you are going to blow it up later you want to scan at higher resolutions than if you don't.  There is of course image quality versus file size issues, etc. etc. but at least I would have the option to change resolutions on capture.
    Scanning at a higher resolution adds more pixels.  So, for example, scanning a finely detailed 7.2 x 4.8 inch image at 300 dpi produces 2160 x 1440 pixels.  Scan a grainy photograph similarly, and it will be 2160 x 1440 and look lousy.  Use a 5 megapixel camera to shoot the original scene, you've got more pixels.  If you have only the SD video image, all you have is the 720 x 480 pixel image.  It doesn't matter how you set the dpi on capture, just that you capture all 720 x 480 pixels.
    In Premier Pro CS5 and Encore CS5 the image size is 10 inches by 6.667 inches and the resolution is 72 pixels/inch.
    Pulling from womble the image size is 7.2 inches by 4.8 inches and the resolution is 100 pixels/inch.
    The part you are not listing is the fact that for each of those the pixel size is 720x480.  As long as you capture the 720 x 480, the resolution of the image is not improved by flagging it as 72 dpi or 100 dpi.  You can change that in photoshop for either of those captures, and you get a different print size, but no more or less pixels.
    In either case, re-sizing the image in photoshop doesn't change the pixels/inch resolution.  I want to capture the original image in as good resolution as possible rather than having to correct it after capture.
    "As good resolution as possible" is 720 x 480.

  • Change Video Resolution

    Hi at all
    I want to change the resolution of my video. As far as I know this is possible with IAMStreamConfig.But all the samples I see are handling with a Webcam Input.
    What about changing the resolution of a video file?
    That's how I would do it, but it doesn't work
    Code Snippet
    Guid iid = typeof(IAMStreamConfig).GUID;
    object outPin;
    hr = cgb2.FindInterface(PinCategory.Capture, MediaType.Video, fileSource, iid, out obj);
    DsError.ThrowExceptionForHR(hr);
    IAMStreamConfig config = outPin as IAMStreamConfig;
    AMMediaType mediaType;
    hr = config.GetFormat(out mediaType);
    DsError.ThrowExceptionForHR(hr);
    try
    VideoInfoHeader vih = new VideoInfoHeader();
    Marshal.PtrToStructure(mediaType.formatPtr, vih);
    vih.BmiHeader.Width = 640;
    vih.BmiHeader.Height = 480;
    finally
    Marshal.ReleaseComObject(mediaType);

    You both understood what I wanted. Yes I want to the change the video Resolution, not the display resolution!
    But when you look at the DxLogo sample you will see this method:
    Code Snippet
    private void SetConfigParms(ICaptureGraphBuilder2 capGraph, IBaseFilter capFilter, int iFrameRate, int iWidth, int iHeight)
                int hr;
                object o;
                AMMediaType media;
                IAMStreamConfig videoStreamConfig;
                IAMVideoControl videoControl = capFilter as IAMVideoControl;
                // Find the stream config interface
                hr = capGraph.FindInterface(
                    PinCategory.Capture, MediaType.Video, capFilter, typeof(IAMStreamConfig).GUID, out o );
                videoStreamConfig = o as IAMStreamConfig;
                try
                    if (videoStreamConfig == null)
                        throw new Exception("Failed to get IAMStreamConfig");
                    hr = videoStreamConfig.GetFormat(out media);
                    DsError.ThrowExceptionForHR( hr );
                    // copy out the videoinfoheader
                    VideoInfoHeader v = new VideoInfoHeader();
                    Marshal.PtrToStructure( media.formatPtr, v );
                    // if overriding the framerate, set the frame rate
                    if (iFrameRate > 0)
                        v.AvgTimePerFrame = 10000000 / iFrameRate;
                    // if overriding the width, set the width
                    if (iWidth > 0)
                        v.BmiHeader.Width = iWidth;
                    // if overriding the Height, set the Height
                    if (iHeight > 0)
                        v.BmiHeader.Height = iHeight;
                    // Copy the media structure back
                    Marshal.StructureToPtr( v, media.formatPtr, false );
                    // Set the new format
                    hr = videoStreamConfig.SetFormat( media );
                    DsError.ThrowExceptionForHR( hr );
                    DsUtils.FreeAMMediaType(media);
                    media = null;
                    // Fix upsidedown video
                    if (videoControl != null)
                        VideoControlFlags pCapsFlags;
                        IPin pPin = DsFindPin.ByCategory(capFilter, PinCategory.Capture, 0);
                        hr = videoControl.GetCaps(pPin, out pCapsFlags);
                        DsError.ThrowExceptionForHR( hr );
                        if ((pCapsFlags & VideoControlFlags.FlipVertical) > 0)
                            hr = videoControl.GetMode(pPin, out pCapsFlags);
                            DsError.ThrowExceptionForHR( hr );
                            hr = videoControl.SetMode(pPin, 0);
                finally
                    Marshal.ReleaseComObject(videoStreamConfig);
    What do I have to do that this (also) works with a File Source?
    Because this method only works with a Live Source (from webcam etc.)

  • How do I change the resolution of a scanned document/photo on CC568A?

    Its a Photosmart 7520 Series printer.
    The scanned documents are way too large to email, and I can't find anywhere on the printer or online on how to change the resolution to shrink the file size.
    Thank you!

    Hi @JeffJohnson, 
    I see that you are having issues emailing the scans. I can help you.
    How are you scanning the emails? (from the computer or the printer)
    If you are scanning from the computer to email, you can reduce your file size by:
    1. Reducing the scan resolution. Change the dpi.
    2. Scan your document in black/white or grayscale.
    Be aware, that this will change the quality of the scan.
    Here is a document for scanning to email from the printer. I don't believe there are any settings to change the size.
    How to Scan: From the Control Panel (Including Scan to Email, to a USB Drive, and to a Memory Card).
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    How is the printer connected? (USB/Ethernet/Wireless)
    Have a nice weekend!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How do you change the resolution size of a mp4 file?

    I am looking for a free (really free, not just a trial for 30 days free) program that will allow me to change the resolution of a mp4 video.
    If this is a "parameter" setting issue in DW what would be the parameter and the value?
    The video is here: http://www.argraph.com/Sirui-P-Series-Monopods.html#psSeries.............a little past midway down the page.
    As you see the words SIRUI and the tag line cannot be seen in their entirety.
    THIS is the way it should look.....
    The second image represents a youtube link but my boss said he cannot see it on his laptop or tablet
    and insists that I use mp4 because it works with all formats; iphone, android, pc and mac.
    I tried doubling the size of the file and it worked but was SOoooooo big that it blew the page out so I suspect that I
    have to resize the file.
    Ken? Nancy? ANYBODY?????   Seriously as always any suggestion would be greatly appreciated.
    -Gwynnplaine-

    1. As far as HTML5 support, if they have a browser made within the last few years (I think since about 2009), it supports html5. The page I linked to gives the versions where all of the major browsers started supporting the <video> tag.
    2. The "your browser does not support..." text is what appears on screen when a viewer uses a browser that doesn't support HTML5 (like IE8).
    If you still plan to support the old non-html5 browsers, the best thing to do is to place a fallback video using the old <object><embed> method in that "your browser does not support" location. That way, if they don't have an html5 compatible browser, the fallback video will play using whatever plug-in they have installed to deal with it. It would look like this...
    <video width="320" height="240" controls>
    <source src="movie.mp4" type="video/mp4" />
    <source src="movie.ogg" type="video/ogg" />
    <object width="320" height="240">
    <param name="movie" value="myvideo.swf" />
    <embed src="movie.swf" width="320" height="240"></embed>
    </object>
    </video>

  • Cannot Change Video Resolution in Youtube

    When I try to change the video resolution in YouTube, the screen goes black and it automatically goes to 240p regardless of the resolution that I choose. It will play the video so long as it remains in its default resolution i.e. 360p or 240p. I also have Chrome downloaded and it has no issue changing between video resolution so I am assuming it is an issue with Safari. I reinstalled Flash and I tried resetting the computer but had no success with either of those attempts. Any ideas?
    Thanks!
    Dan

    Thanks dschinkal! When I view You Tube clips on Safari and click the resolution adjuster to increase it (say, to 720), the screen goes black and I have to click refresh in order to reload the page. After which, it plays again at a low resolution.
    This has happened since I bought my new iMac 27" a month ago.

  • How do you change the resolution?

    lol, sorry, but I don't know how to change the resolution!

    To change your screen resolution
    Open Display in Control Panel.
    On the Settings tab, under Screen resolution, drag the slider, and then click Apply.

  • How do I change my resolution after iTunes has changed it to a lower ppi

    I am using Win7 with an iPad. When I first logged onto iTunes the site changed my resolution. It is now lower than is should be. I have two screens, a lap top and a 17" monitor. When I slip one page from the laptop to the larger screen i lose about 1/5 of the width.
    I can't change the resolution to what it optimally should be for my system. How do I fix this?
    I love my iPad and the Apple Store. But this is reminiscent of MS making a system operate how MS thinks it should operate instead of how the user wants it to operate.
    thnx

    It's not possible to comment unless you would like to post the URL of your feed.

  • How  do I change image resolution to 72 ppi the length pixels going lower than 1920 pixels

    Hello,
    I have an image that is 2550px x 3300px with a resolution of 300.  I would like to change this to a web jpeg with a resolution of 72ppi without  changed the length resolution to less than 1920. Everytime I try changing the resolution to 72 ppi it changes the size to less than the 1920 px size needed.
    Thank you,Jan

    An image has some pixels real information these make up the bulk of any image format file size.   DPI is a resolution setting that defines what the size of a pixel is. Pixels have no size till there is a resolution specified. your  2550px x 3300px resolution can be set to 72 not a single pixel will change only the size of the image will.  A device that honors resolution will now render the image 35.4" x 45.8" instead of the old 300 setting which would render the image 8.5" x 11"  This is how Image size works when resample is not checked.  If you check Resampel the number of pixels an image has will change. You will wind up with a new  image with a different number of pixels interpolated the the old image that will no longer exist not a single pixel remains of the old image.  So if you open image size on your image you will see 8.5"x11" at 300DPI.
    Check resample change to pixels and change 3300 to 1920  you will see Photoshop set the width to 1484 px. and the resolution be 300DPI.
    Open the image dialog again. Un-check resample and you will see Photoshop change the width and height to  4.947"x6.4" now change the 300 DPI to 72 DPI you will see Photoshop change the width and height to 20.611" x 26.667" the pixesl will remain 1484px x 1920px. This is how image size works.

  • How do you change the resolution of a Photo?

    In iPhoto, how to you reduce the resolution of a photo in order to reduce the file size? This makes it easier to email because of the smaller file size?

    Let's say I have a photo with a resolution of of 3264 x 2448 pixels.
    Tat's not a measurement of resolution, that's the dimensions (length x breadth) of the photo, expressed in pixels.
    Resolution is a vague term most used to describe the density of pixels - i.e the pixels per inch.
    1) I want to edit it and reduce the resolution to 1024 x 768 pixels.
    No, you want to reduce the dimensions of the image to 1024 x 768
    2) Do this within iPhoto without using the export feature thereby keeping the edited photo in iPhoto?
    You can't. It can only be done on export. Why? When you edit a photo iPhoto preserves the original and makes a copy of the file containing the edit. As most people reduce the dimensions, file size or resolution for a specific purpose (to upload it for instance), it's thought best to export it, upload it nd then trash it.
    Of course, you can simply import the export back in, if you have a burning need of it in iPhoto.
    Regards
    TD

  • How do I change screen resolution in command line?

    Hi, I was controlling a remote server by Apple Remote Desktop and have lost control of it after changing the resolution. Is there a way to change the resolution in the command line, without restarting?
    If I can screen resolution in the command line I can send the unix command to the remote server and hopefully fix my problem.

    Hi, I'm not aware of a way to do it without a little work. For example, I found some code at Mac OS X Hints that will change the screen resolution from a command line, but you'd have to compile it. It compiled for me on 10.4.11, and the poster there said it compiles on 10.5 for him.
    If you have the Xcode tools installed on your Mac, just copy that code into a plain text file, then save it as "main.c". Then, in Terminal, change directory to the same directory as that file and compile it:
    <pre class="command">gcc -o newscreen main.c -framework ApplicationServices</pre>
    Then copy it to your server and try running it there:
    <pre class="command">./newscreen -h nnnn -v nnnn</pre>
    where "nnnn" is the desired resolution...
    I hope that works, anyway, since I'm still using Tiger...
    charlie

Maybe you are looking for