I need help with display settings on

When Im watching movies is their any way to change the contrast or anything because it only lets me change brightness

Only brightness can be changed. You could email the developers relations and ask them to make a contrast settings

Similar Messages

  • Help with display settings needed urgently

    Graphics and icons that are supposed to be round appear oval. For instance the Safari and App icons on the dock appear very oval. Logos on websites I've visited before and I know are round appear oval.
    I've tried all display settings and nothing helps. I'm a designer and this is causing a major hinderance. Everything appears condenced / squashed sideways. I'd be very grateful if someone could help with this.
    I've just purchased the laptop. I have been using Mac for a few years and I've always selected the "stretched" option from the Display settings which sorted out the problem completely. A circle looked a proper circle. But in this version the option is not available.
    Badly hoping someone can help with this.
    Thanks.
    Version Details - OS X Lion 10.7.4

    It sounds like you have selected an incorrect resolution.  For starters, are you talking about your Air's display or an external display?  You haven't said which Air you have.  If you have an 11" model, make sure your display resolution is set to 1366x768.  If you have a 13" model, it should be set to 1440x900.  These are the proper resolutions for the built in displays.  Chosing anything other than the referenced "native" display resolutions will result in distortions or clarity problems. 

  • I need help with export settings

    Hi everyone,
    I need help outputting an HD file for presenting a video to a client. I have tried exporting to HD .mov (H.264 codec) and PE keeps crashing (error compiling movie). From what I’ve read here, it’s due to the gargantuan file QT creates and HD space (even though I think I have enough HD available).
    So, I need a recommendation from you on what kind of file to output which will allow me to present the movie to the client in HD. This file is solely for the presentation, I have already published for web (FLV) and YouTube (direct share from PE) and they both worked fine.
    Here are my project specs:
    Timeline:           4:26
    Format:               1920 X 1080 HD
    Timebase:          29.97 frames per second
    OS:                        Windows XP SP3
    Processor:          Intel Core 2 Duo @ 2.66GHz
    RAM:                    4GB
    Project Drive:   250GB disk with 152GB free space internal dedicated project drive (separate from OS)
    Thanks in advance for your help,
    Jose

    Hi Steve, Neale,
    I wanted to follow-up on this post. I came into the office today to run a few tests so I can make sure that I have the correct settings on my camera and PE project for the next time around. Here are few observations I was wondering if you can comment on:
    My Sony camera cannot shoot HDV. The only format it supports is AVCHD, so I'm stuck converting.
    I tried to convert the footage I have to HDV with the software I have (AVS Video Converter and Koyote Soft HD Converter) and neither of the two have an "HDV" conversion setting. I see AVI, MPEG, MOV and many different settings in each (AVI: Hd Video 1080p: H.264AVC, 29.97fps, 4200kbps, Audio MP3, 256 kbps or MPEG: HD Video 1080p - MPEG2, 15000 kbps, 1920X1080, 29.97fps, etc). What should I be looking for?
    I searched for "best file format" in the forum and found various postings from both of you referring to converting to DV-AVI within PE; especially if you have AVCHD footage (which I have). So, I followed directions and converted a file for testing. Then, I created a new project using HDV 1080i 30 settings and imported the converted file. I still get a red line on the timeline. Any thoughts on what I'm doing wrong?
    I also converted the MOV files (shot in HDV 60i with the pro camera) to DV-AVI. I also get a red line on the timeline...
    The DV-AVI converted footage (both cases) doesn't appear to be HD. It looks jagged on the preview window. Is it HD?
    The DV-AVI converted footage is almost double the file size as the MTS (AVCHAD) file (138mb vs. 60mb). Isn't that going to make PE run slower?
    Thanks in advance for your help. I just wanna make sure I do my homework now so I set everything up correctly on the next project.
    Jose
    P.S. I almost forgot! Here's the link to the live video on YouTube: http://www.youtube.com/watch?v=fEkqPmefJV0
    Message was edited by: josejb70 - Added YouTube link

  • Hi guys need Help with Displaying Splash Screen?!!?

    Hi Guys.
    Sorry for the last incomplete post my mistake!
    I need help displaying a splash screen as an advertisment or something before i have my main application run.
    Here is the code i wrote (it works as if it were a seperate application)
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int UpTime = 20000;
            Start(UpTime);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                               dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
           public static void main(String [] args)
                 new SplashScreen();
    }but i now have a problem as i already have a main application done as i wrote this seperately. I now need to combine the two together. So what i did was in my Main Application wrote:
    Splash_Screen SS = new Splash_Screen();it then runs my Splash Screen class which i re-wrote to look as such:
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int time = 15000;
            Start(time);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                                dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
    }it obviously runs the default constructor which then runs the other methods in the class but it doesn't seem to show can anybody help me to find out whats wrong? It seems to be there just before the main application launches but only for a split second. And when i am waiting while the thread is sleeping the area i have defined the Content pane for he cursor goes to the loading icon! I don't know if this makes any sence to you but if you can help me it would be most apreciated.
    Thanks.

    SpearOne wrote:
    Hi Encephalopathic
    why would it work if i put it in it's own application surely it wouldn't be caused by this thread.sleep?? everything after it is in fact put to sleep. In its "own" application, nothing happens after it is displayed.
    if it is the problem then could you please give me some code to add quickly to test??
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    import javax.swing.Timer;
    public class SplashScreen extends JWindow
      private static final String IMAGE_PATH = "src/1.jpg";
      private static final int UP_TIME = 15000;
      public SplashScreen()
        Start();
      public void Start()
        ImageIcon ii = new ImageIcon(IMAGE_PATH);
        JScrollPane jsp = new JScrollPane(new JLabel(ii));
        //JProgressBar Bar = new JProgressBar();
        getContentPane().add(jsp);
        setSize(853, 303);
        centerScreen();
      private void centerScreen()
        Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
        int x = (int) ((d.getWidth() - getWidth()) / 2);
        int y = (int) ((d.getHeight() - getHeight()) / 2);
        setLocation(x, (y - 100));
      public static void main(String[] args)
        final JFrame frame = new JFrame("Main Frame");
        frame.setPreferredSize(new Dimension(300, 200));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        final SplashScreen splash = new SplashScreen();
        splash.setVisible(true);
        Timer swingTimer = new Timer(UP_TIME, new ActionListener()
          public void actionPerformed(ActionEvent e)
            splash.dispose();
            frame.setVisible(true);
        swingTimer.setRepeats(false);
        swingTimer.start();
    }

  • Need help with export settings...Please

    I am brand new to the camera I have but been using FCP for 6 years. The camera is a Panasonic HMC150 that records in the AVCHD codec. I have an Intel Imac 20 2.4 Ghz 4 gigs of ram. My audio/video settings for the sequence in FCP are as follows:
    Sequence pre set: Apple pro Res 422 1920-1080 60i 48khz (footage is 1080 60i)
    I Log and Transfer with no problem, edit no problem.
    My question is when I go to export the finished sequence to Idvd or DSP, what settings do I use?
    I have exported to quicktime movie file with "current settings" and I have had NO luck in compleely burning a DVD. Is this the correct setting? what is everyone else using? Any help would be greatly appreciated!

    DVD is standard definition. You have to compress your HD material to SD first. Crack open the manual for Compressor or DVDSP and you'll get loads of valuable info. The first 30 or so pages of the DVDSP manual are quite informative, and easy to read.

  • Exchange was deployed without a CASArray, need help with array settings and PRF to fix.

    I'm standing up a new Exchange 2010 server to replace old hardware (not going 2013 at this time) and found out the hard way that the person who built the old 2010 box never created a CASArray.  I've created one and applied it to the mailbox DB on the
    new server with set-rpcclientaccess and it works fine - I move my own mailbox to the new DB and do a "Repair" to the Outlook profile and then it shows the address for the CAS Arrary within Outlook.
    I set up a hardware load balancer for the CAS Array IP address and it shows good connection from both CAS servers, Outlook is connecting through that just fine.
    Users are on Outlook 2007 and 2010, almost all 64-bit versions.
    Reconfiguring everybody's outlook isn't going to be a practical solution for me - I support a couple hundred geographically-dispersed users most of whom aren't keen to muck about in their Outlook settings.  So here are my questions:
    Should I add the mailbox DB on the old CAS server to the array using set-rpcclientaccess or will this disrupt connectivity for all users?
    Assuming I need to use a PRF to update client computers, have read several pages on how to create the PRF, but even launching outlook.exe /importprf doesn't fix the value - and /promptimportprf doesn't prompt (I see a brief flash of what is probably the
    prompt window but it disappears immediately).  I'm going to paste in the PRF in use exempting sections 5, 6 and 7 which are unchanged.  Where do I correctly need to enter the CAS array value?
    [General]
    Custom=1
    DefaultProfile=Yes
    OverwriteProfile=Append
    ModifyDefaultProfileIfPresent=true
    ; Section 2 - Services in Profile
    [Service List]
    ;ServiceX=Microsoft Outlook Client
    ; Section 3 - List of internet accounts
    [Internet Account List]
    ; Section 4 - Default values for each service.
    ;[ServiceX]
    ;FormDirectoryPage=
    ;-- The URL of Exchange Web Services Form Directory page used to create Web forms.
    ;WebServicesLocation=
    ;-- The URL of Exchange Web Services page used to display unknown forms.
    ;ComposeWithWebServices=
    ;-- Set to true to use Exchange Web Services to compose forms.
    ;PromptWhenUsingWebServices=
    ;-- Set to true to use Exchange Web Services to display unknown forms.
    ;OpenWithWebServices=
    ;-- Set to true to prompt user before opening unknown forms when using Exchange Web Services.
    [Service1]
    HomeServer=cas.corp.mydomain
    DefaultProfile=Yes
    OverwriteProfile=Append
    ModifyDefaultProfileIfPresent=true

    If you move a mailbox from one server to another, Outlook will automatically repair the Outlook profile.  Have you tried this, instead of trying to force a profile update using a PRF?

  • Need help with compressor settings

    I hoped someone could help me with this. I have HD footage that has been captured in FCP as SD, so it's 4:3, with letter box so that the original 16:9 footage wasn't stretched.
    I need to make small Quicktime movies for streaming on the internet. I want to keep the proportions that I have, but I want to crop out the black letter box for a 320x180 video. How do I do this?
    I could also use help in determining which codecs to use. I want the best possible picture quality at a file size of less than 2MB per 1 min. of footage at the above dimensions.
    Please help if you can. Thanks!

    I'm also experimenting with the exact same thing. Only difference to yours - I am maintaining the 4:3. Here's what is giving me best results so far - the quality is very good, however I am still working on reducing the file size -> right now I'm at 4 MB/minute. I am trying get better file size only by slowly reducing the Kbps in the Video Settings until my results get unacceptable. All the rest remains as here - (my COMMENTS IN UPPER CASE):
    File Extension: mov
    Estimated file size: 970 KB
    (I'M USING A 15 SEC TEST CLIP)
    *Audio Encoder
    IMA 4:1, Stereo (L R), 22.050 kHz
    *Video Encoder
    Format: QT
    Width: 320
    Height: 240
    Pixel aspect ratio: square
    Crop: (L: 50, T: 50, R: 50, B: 50)
    (I'M CROPPING AWAY THE ACTION SAFE ZONE, KEEPING 4:3. YOU CAN ADJUST THESE SETTINGS TO YOUR LIKING IN THE GEOMETRY TAB.)
    Frame rate: 12
    (MY SOURCE IS DV PAL - THUS 12 FPS. IF YOU ARE USING NTSC YOU SHOULD GO FOR 15 OR EVEN 10 FPS. THIS WILL GIVE YOU HALF OF EVEN 1/3 FILE SIZE RESPECTIVELY)
    *Frame Controls:
    Retiming: Nearest Frame
    Resize Filter: Linear Filter
    Deinterlace Filter: Motion Adaptive
    Adaptive Details: Off
    Antialias: 0
    Detail Level: 0
    Field Output: Progressive
    *Codec Type: H.264
    Multi-pass: On, frame reorder: On
    Pixel depth: 24
    Spatial quality: 75
    Min. Spatial quality: 25
    Temporal quality: 50
    Min. temporal quality: 25
    *Average data rate: 0.512 (Mbps)
    I hope this helps you. Please let me know if you find out anything helpful to keep that quality, but reduce the file size! Good luck. Keep in touch!
    Jacques
    Message was edited by: Jacques Tarnero

  • AT300 - need help with display brightness

    Hello! Help solve the problem with the AT300 tablet.
    Balanced consumption charge off, automatic brightness control is also disabled. But when watching videos, surfing and gaming brightness still varies depending on the color of the image. If the image is dark, the brightness decreases, if the picture is brighter - the screen gets brighter. How do to fix the brightness?
    Thanks!

    Hello,
    I have the same problem like flash85.
    When I scroll down on bright websites and a darker picture is shown on the screen,
    the whole display becomes much darker and even the colors on the screen change.
    Yesterday I've tried the same website on an IPad and the background and colors perfectly
    stays the same.
    Also the display permanently dimms down or up if the automatic brightness control is
    enabled. This is also very disturbing.
    I can't imagine that this behaviour is normal. I read many tests before and none of it mentioned this.

  • Need help with JSSE settings for Axis2 auto-generated client.

    Hi all.
    I have several working clients generated for me in Axis2 from WSDL's using wsdl2java utility. The clients use HTTP transport but I need to use HTTPS now. I assume JSSE is used for SSL communication in Axis2.
    I have created the keystore and set these parameters in code.
    System.setProperty("javax.net.ssl.trustStore", "/path/to/.keystore");
    System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
    The lower level mechanics such as socket creation and utilization are hidden from me in Axis2.
    What other ssl parameters can be set similar to these? I particularly care about protocol, cipher, keep-alive? I couldn''t find the whole list with possible values. Or may be I should use some different method to set them?

    Hi,
    While creating the stub use https as end point instead of http.
    example: https://java.bytesforall.org/webservices
    Configure the properties for the SSL and so that jsse be have accordingly
    https.cipherSuites,javax.net.ssl.trustStore ...etc.
    If you are planning to make your webservice client FIPS complaint. Currently there is a problem with Axis1.4 it is not honoring the property "https.cipherSuites" to use the cipher suites.
    Let me know, if you need any further help
    ~Balaji

  • Need help with color settings

    I am printing from InDesign CS2 to a Lanier LD 335c multifunction color printer.  The colors do not match what is on the pc, and the image quality is grainy.  Unfortunately this is a network printer so I do not have access to make changes to the printer settings.  I have played with the color management settings in InDesign, the printer driver settings on the pc and everything else I can think of.  The technician has come out to look at it, replaced parts and recalibrated the machine, but nothing has changed.
    Does anyone have any suggestions?  I am ready to give up.
    Thanks!

    Hi,
    Actually this is described in the documentation, here (follow the links): http://help.sap.com/saphelp_nw2004s/helpdata/EN/80/e8eb40c4f8712ae10000000a155106/frameset.htm.
    Alas, Push-buttons do not seem to be possible.
    Regards, Gerd Rother

  • Need help with onboard settings

    Hello, dont know if this is the right place for my question so if it isnt can someone please direct me to the right one.
    Ok well I just bought a MSI G31TM-P21 Motherboard yesterday and I also bought a Geforce 7300GT PCI express card (i know its not the best video card) but anyways I was wondering does the motherboard have a video jumper setting? Because the bios gives me the option of PCI-PCI-E, Internal as a startup choice, but when I plug in the monitor with the new card its blank. I tried clearing the CMOS but still nothing. So again does this motherboard have a video jumper setting or does the bios have a video disable feature that I am overlooking here?
    Thanks in advance

    Quote from: Alex.Ethuba on 19-August-09, 18:52:25
    also make sure your BIOS is up to date.
    Again, DONT update the bios unless absolutly necessary  .
    And furthermore, please dont give this advice first hand, some people are not that confident with computers and may wreck it by updating, cause they use the wrong way, i.e. LiveUpdate or other win based program, which can be risky.
    Read how much people killed their pc, by updating bios, "just for the heck of it" or "so that Ive got the newest bios", which is a load of ......
    If you have a unsupported cpu, then you need to flash, no sooner!
    @ queequeeg,
    Hello and welcome.
    Try as Alex said and set card to pci-e and disable onboard vga, if you have one and try again, do not update bios, cause vga cards dont need an biosupdate prior to installing, especially an older model vga like you have, must work normal without updating.
    Also please list all your specs in a signature like mine, this way we can help better, i.e CPU, PSU, with full details on amp's, memory, vga, mobo etc.
     

  • Need help with bios settings for Neo4 Platinum

    Hi.  I've checked several guides on bioses and still have questions about my settings.  I'm not an overclocker, so I'm looking for stability over anything else (although I don't want my computer to run like a pig .  I'll post what I have and the parts of the bios that I'm unsure of.  I also have saved pictures of a Cpu-z scan if that helps.  Any suggestions are much appreciated!
    Here's my stuff:
    Motherboard: MSI K8N NEo4 Platinum (MS-7125)
    Processor: AMD Athlon 64 3000+ 512K 90nm (Winchester socket 939)
       clock frequency: 1800mhz
       system bus: 2000
       operating mode: 32/64
       voltage: 1.40v
       max temp: 70 degrees C
       thermal power: 89w
       L1 cache: 128KB
       L2 cache: 512KB
       cmos technology: 90nm SOI
       memory controller: 128-bit
    Award bios version: 1.9
    Installed ram: Micron Crucial Ballistix 512MBx2 (1024MB total) (Crucial
    part number BL6464Z402)
       PC3200 400mhz Dual-Channel DDR Dimm (184 pins)
       configuration: 64Meg x 64
       unbuffered/non-ecc
       voltage: 2.8v
       memory timings:   2-2-2-6   
    Here's my current bios settings (I've only listed sections that contained settings that I was unsure of):
    ADVANCED BIOS FEATURES
    quick booting: enabled
    boot to os/2: no
    ioapic function: enabled
    mps table version: 1.4
    full screen logo display: disabled
    seek floppy: enabled
    typematic rate setting: enabled
    typematic rate: 30
    typematic delay: 1000
    security option: setup
    ADVANCED CHIPSET FEATURES
    --->>DRAM CONFIGURATION
    timing mode: manual
    memclock index value: 200mhz
    cas# latency TCL:2
    min ras# active time TRAS: 6t
    ras# to cas# delay TRCD: 2t
    row precharge time TRP: 2t
    row to row delay TRRD: auto
    row cycle time TRC: 8t
    row refresh cyc time TRFC: 11t
    read-to-write time TRWT:auto
    write recovery time TWR:auto
    write to read delay: TWTR:auto
    refresh period TREF:auto
    user config mode: auto
    x bottom of 32-bit [31:24] io: D8
    x 1t/2t memory timing: 2t
    x read preamble value: 8ns
    x async latency value: 9ns
    s/w memory hole remapping: disabled
    mtrr mapping mode: continuous
    PNP/PCI CONFIGURATIONS
    primary graphic's adapter: first pcie
    resources controlled by: auto (escd)
    x irq resources setup: press enter
    maximum payload size: 4096
    CELL MENU
    current cpu clock: 1810 mhz
    current ddr clock: 201 mhz
    high performance mode: manual
    aggressive timing: disabled
    dynamic overclocking: disabled
    adjust cpu fsb frequency: 200
    ht frequency: 5x
    ht width: (down arrow 16/up arrow 16)
    cpu spread spectrum: disabled
    sata spread spectrum: disabled
    pcie spread spectrum: disabled
    pcie clock: 100 mhz
    sse/sse2 instructions: enabled
    cool'n'quiet: disabled
    adjust cpu vid: startup
    extra cpu voltage: by cpu vid
    cpu voltage 1.400v
    memory voltage: auto
    nf4 voltage: 1.50v
    Thanks again.  xpfshost

    I'll do that, thanks.  I guess I'm really mostly clueless about the following items:
    memclock index value: 200mhz
    row cycle time TRC: 8t
    row refresh cyc time TRFC: 11t
    current cpu clock: 1810 mhz
    current ddr clock: 201 mhz
    adjust cpu fsb frequency: 200
    ht frequency: 5x
    ht width: (down arrow 16/up arrow 16
    pcie clock: 100 mhz
    Do they look OK??  Thanks!
    xpfshost
    Quote from: Grayone on 19-April-07, 05:13:03
    Change your user config mode in dram configuration to manual and change your memory timing to 1T.  The 1T setting will speed up your memory slightly.

  • I need help with my settings so that i can play using my soundcard and sing karaoke on analogue head

    i would like to know what settings i need so that i can use my laptop for karaoke online. i have a new HP PAVILION G6 laptop operating windows 7-64 bit. I use a headset with plug in jack plugs 3.5mm. may i thank you in anticipation

    Not when you insist on being so impatient.
    These are user to user support forums.  No one here is paid to read or respond to messages.
    Try explaining the issue instead of the jumbled, rambling mess of a title and we will be happy to assist.

  • Need help with capture settings for Beta SP

    I'm trying to capture footage shot on Beta SP, capturing from a BetaCamSP UVW-1600 deck. I'm trying to capture at full quality, and currently have my capture preset set at 10-bit uncompressed. I'm not sure what the exact settings should be within the preset.
    When I have it set to this preset, the footage shifts when there is camera movement, and when there are flashes from a snapshot camera in the footage, that frame becomes unusable.
    This footage is for TV and I don't know how to get full quality and fix this image field shifting problem. Any help would be greatly appreciated.

    How are you capturing this? With what capture card?
    BetaSP is technically 8-bit uncompressed. All you are doing capturing 10-bit is increasing your file size.
    8-bit uncompressed 29.97...whatever setting that is with your capture card.
    Shane

  • I need help with export settings of FCP project edited HDV 16:9

    Hello All,
    I have searched the forum only to become more confused. I shot and edited my first HD project and am ready to burn it. What are the settings needed by DVDSP for my FCP export?
    FCP 6.0.5
    OSX 10.5.6
    1080i

    Export to 16:9 SD m2v.
    Usually I use self contained with an uncompressed Codec then bring that into Compressor to use Virtual Clusters. Start with a Compressor preset that is 16:9 SD that fits the footage (in other words if the video is 67 minutes, start with the 90 Minutes) and adjust frame filters to resize "better"
    Some more general info on encoding to make things fit and issues to keep in mind
    http://dvdstepbystep.com/faqs_7.php
    http://dvdstepbystep.com/faqs_3.php
    Take a look at these threads, so more details and options
    http://discussions.apple.com/thread.jspa?messageID=8715713&#8715713
    http://discussions.apple.com/thread.jspa?messageID=9070936&#9070936
    And the others on the subject. Type in "HD SD" and you will see many different disucssions

Maybe you are looking for

  • Print Image in Oracle Report

    I have an scan image in my report. I can see the image in the Layout editor but when the report runs all that comes out is a blank piece of paper. The image does not print. The version of reports is 2.5. Does anyone have any idea why the image does n

  • Kernel cnfiguration to get packet injection working with iwl4965

    Hello, I'm trying to configure my kernel to be able inject packets with intel wifi card using iwl4965 driver. According to this: http://aircrack-ng.org/doku.php?id=iwlagn i need configre wifi options like this: Networking -> Wireless : [M] Improved w

  • Slow to Sleep Power Mgt. App - How can it be reset?

    I posted the following some time ago and it was never answered. My iMac is really slow to sleep (sometimes 20 to 30 seconds) from clicking on Black Apple/Sleep until it sleeps. The last time this happened I had a big file hung in a print queue and cl

  • Connecting via firewire with logic 3 I-Station

    Hi i have a video 60gig black ipod i have just invested in a i-station for it to link to my pc via firewire but i keep getting a message " Firewire connections are not supported.To transfer songs, Connect the usb cable provided press centre to dismis

  • Solution Manager Key for EP '04 - EP 2004s

    Well, we just started the upgrade of our EP '04 SP18 to EP 2004s ST11. However, the PREPARE is rejecting the Solution Manager Key (generated in SSM 3.2). We came across OSS Note 811923 which says: For SAP ERP 2004 (SAP ECC 5.0), you require SAP Solut