IDVD movie does not fit on widescreen tv

I edited a movie on imovie and then shared it with iDVD to burn onto a DVD.  In both programs the aspect ratio was set to widescreen (16:9), but whe I played the burned DVD on our widescreen TV the sides movie was too wide for the TV.  Is there any other way to adjust the width so that it will fit the screen?

Hey, I found a solution - My DVD player settings! I had this problem too!
For some crazy reason the DVD player was set to standard ratio instead of 16:9 widescreen. When I fixed this everything worked. My LCD HDTV aspect ratio / 'Picture Options' settings are on 'Just Scan' and it all works fine.
Hope this is a solution that is able to help someone out there with the same problem

Similar Messages

  • Movie does not fit preview window

    Sorry if this is a dumb question, but I cannot figure it out.
    I made a short movie clip with my iPhone 5. Imported it into iMovie (it looks perfect when I preview it from the event library) and then dragged that clip to a new project. Then when I play the video from within the project, it has been heavily cropped, ie the movie does not fit in the preview window.
    I have tried changing the aspect ratio of the project and this made no difference. I also change the setting File > Project Properties > Initial Video Placement to Fit in Frame.
    Any help appreciated.

    A lot of people who shoot video on the iPhone will hold the phone vertically oriented (portrait orientation). For shooting movies, you will get the best results when you rotate the phone 90 degrees to landscape orientation.
    iMovie will always edit in landscape orientation (long side on top and bottom, short side on the sides) because this is the way TV screens work.

  • Movie 115 minutes long but does not fit in idvd project?

    movie 115 minutes long but does not fit in idvd project?

    Hi
    There are more to this
    • Choise of encoding method
    • Choise ot theme/menu
    • What material that was used
    • Choise of encoding method
    iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1)
    iDVD 6 has the two last ones
    Professional Quality (movies + menus up to 120 min.) - BEST
    Best Performances (movies + menus  less than 60 min.) - High quality on final DVD
    High Quality (in iDVD08 or 09) / Best Quality (in iDVD6) (movies + menus up to 120 min.) - slightly lower quality than above
    About double on DL DVDs.
    • Choise ot theme/menu
    Some menus can take 15 minutes or more - No Audio, No Animation and a very simple one as "Brushed Metal" - will take very little time
    • What material that was used
    Some video codecs need to be re-encoded first then encoded in iDVD - this can be problematic for iDVD and most often gives a poor result.
    So what video/audio/photo material did You use and how did You edit it and got it into iDVD ?
    Yours Bengt W

  • Error: 'BP category 1 does not fit the data in category 2'

    Hi,
                i have written a program to create a contact person and the code for it is pasted below...when i run this program i get nothing but this message in the status bar 'BP category 1 does not fit the data in category 2'...can someone tell me wht the error means and y it is coming.
    thanks:)
    pushpa
    *table for storing the line by line records in the excel file
    TYPES: BEGIN OF TTAB,
            REC(1000) TYPE C,
           END OF TTAB.
    DATA ITAB TYPE TABLE OF TTAB WITH HEADER LINE.
    *variable for storing the name of the excel file to be uploaded
    DATA UP_FILE TYPE STRING.
    *data to be uploaded
    TYPES: BEGIN OF TDAT,
            FLD1 TYPE BAPIBUS1006_CENTRAL_ORGAN-NAME1,
            FLD2 TYPE BAPIBUS1006_ADDRESS-STREET,
            FLD3 TYPE BAPIBUS1006_ADDRESS-CITY,
            FLD4 TYPE BAPIBUS1006_ADDRESS-REGION,
            FLD5 TYPE BAPIBUS1006_ADDRESS-POSTL_COD1,
            FLD6 TYPE BAPIBUS1006_ADDRESS-COUNTRY,
            FLD7 TYPE BAPIBUS1006_CENTRAL-PARTNEREXTERNAL,
           END OF TDAT.
    DATA IDAT TYPE TABLE OF TDAT WITH HEADER LINE.
    DATA: BUSINESSPARTNER TYPE BAPIBUS1006_HEAD-BPARTNER,
          CENTRALDATA TYPE BAPIBUS1006_CENTRAL,
          ORGANIZATION TYPE BAPIBUS1006_CENTRAL_ORGAN,
          ADDRESS TYPE BAPIBUS1006_ADDRESS,
          BAPIRETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    PARAMETERS P_FILE TYPE LOCALFILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          STATIC    = 'X'
        CHANGING
          FILE_NAME = P_FILE.
    START-OF-SELECTION.
      UP_FILE = P_FILE.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = UP_FILE
        TABLES
          DATA_TAB                = ITAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_READ_ERROR         = 2
          NO_BATCH                = 3
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
    *writing out the contents of the internal table itab
      LOOP AT ITAB.
        WRITE:/ ITAB-REC.
        CLEAR IDAT.
        SPLIT ITAB-REC AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
                    INTO IDAT-FLD1 IDAT-FLD2 IDAT-FLD3 IDAT-FLD4 IDAT-FLD5 IDAT-FLD6 IDAT-FLD7.
        APPEND IDAT.
      ENDLOOP.
      LOOP AT IDAT.
        MOVE: IDAT-FLD1 TO ORGANIZATION-NAME1,
              IDAT-FLD2 TO ADDRESS-STREET,
              IDAT-FLD3 TO ADDRESS-CITY,
              IDAT-FLD4 TO ADDRESS-REGION,
              IDAT-FLD5 TO ADDRESS-POSTL_COD1,
              IDAT-FLD6 TO ADDRESS-COUNTRY,
              IDAT-FLD7 TO CENTRALDATA-PARTNEREXTERNAL,
              '0001' TO CENTRALDATA-PARTNERTYPE.
        CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'
          EXPORTING
            PARTNERCATEGORY         = '1'
            CENTRALDATA             = CENTRALDATA
            CENTRALDATAORGANIZATION = ORGANIZATION
            ADDRESSDATA             = ADDRESS
          IMPORTING
            BUSINESSPARTNER         = BUSINESSPARTNER
          TABLES
            RETURN                  = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        REFRESH BAPIRETURN.
        CLEAR BAPIRETURN.
        CALL FUNCTION 'BAPI_BUPA_ROLE_ADD'
          EXPORTING
          BUSINESSPARTNER = BUSINESSPARTNER
          BUSINESSPARTNERROLE = 'BUP001'
          DIFFERENTIATIONTYPEVALUE =
          TABLES
          RETURN = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        WRITE:/ 'Business Partner ID:', BUSINESSPARTNER.
      ENDLOOP.

    Hi Pushpa,
             you can use following code to create relationships using BAPI. In this Business partner is organisatin. contact persion paramenter is person. other information related to relationship details
    CALL FUNCTION 'BAPI_BUPR_CONTP_CREATE'
        EXPORTING
          BUSINESSPARTNER           = SEARCH_PARTNER
          CONTACTPERSON             = CONTACT_SAP
      VALIDFROMDATE             = '00010101'
      VALIDUNTILDATE            = '99991231'
      DEFAULTRELATIONSHIP       =
      ADDRESSGUID               =
          CENTRALDATA             = WA_CENTRAL_DATA
          ADDRESSDATA             = WA_ADDR_DATA
          TABLES
        BAPIADTEL                 = I_TEL_DATA
        BAPIADFAX                 = I_FAX_DATA
      BAPIADTTX                 =
      BAPIADTLX                 =
        BAPIADSMTP                = I_EMAIL_DATA
      BAPIADRML                 =
      BAPIADX400                =
      BAPIADRFC                 =
      BAPIADPRT                 =
      BAPIADSSF                 =
      BAPIADURI                 =
      BAPIADPAG                 =
      BAPIAD_REM                =
      BAPICOMREM                =
         RETURN                    = I_RETURN
    hope this will help you
    Siva

  • Page does not fit on paper when printed directly to printer

    Hi experts,
    I have developed a form in transaction SFP, using A4 as the paper format for the master pages. If I print to spool and preview and print my form from spool using transaction SP01, the form prints nicely. If I print directly to printer using the generated function module for the form (setting parameter REQIMM to true), the page does not fit on the paper (it is cropped), and also I do not get duplex printing.
    Why do I get different results when printing directly to printer as opposed to printing to spool first? How can I ensure that the form is printed correctly when printing directly to printer?
    thanks!
    Frank

    Did you check the window settings of the Firefox desktop shortcut to see how Firefox opens?
    Did you try to delete the current Firefox desktop shortcut and create a new shortcut?
    Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).<br />
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.

  • Audio does not fit with video FCPX 10.1.3

    Hi, I have a little bit unusual (at least for me) problem. I have old video from camera (maybe 20 years) on my HDD and I would like to edit it. Problem is the audio does not fit with video - when somebody talks it is apparently delayed. Can you give me a hint how to fix it in FCPX? I tried to detach audio and move just audio line but it is not possible.
    Thanks

    I tried it again from the beginning and now I can move audio to the right. I would just need to move video to the right, so audio stays still.. I need to delay audio so one option is to delete part of beginning of audio track or somehow move video to the right but it is not possible, i guess video track in the beginning cannot be empty....
    It is difficult to explain

  • I-movie does not see i-DVD

    I-movie does not see i-DVD
    I am using a mac mini with system 10.3.7 with 1.47 Ghz Power PC G-4 and 512 MB Ram.
    I was having problems with my I-DVD crashing every time I asked it to burn a DVD or make a disc file.
    Then I reinstalled I-movie 5 and I-DVD 5 but now the imovie does not seem to see the iDVD. It asks for an i-DVD version 4 or higher when I have already installed the version 5. It does not seem to see it.
    I decided to try version 4 but the installation disc that I have for I-life 4 does not allow me to install I-movie and I-DVD from the disc because it says that one of those applications is open. Thus I had to drag the applications from another computer.
    So, I transferred an old version 4 for I-movie and I-DVD from another computer and when I try to make a DVD it comes up with the message that I need an I-DVD version 3 or higher and does not see the version 4 that is there.
    The result is that I can create a DVD from I-movie.
    If I try to create a DVD booting up on my firewire external HD with 10.3.4 and versions 4 of imovie and idvd, I have no problem.
    Ideas?
    Thanks you,
    Robert Najemy

    Hi Robert,
    Mac OS 10.4.2 is now available. Have you considered upgrading your OS?
    Having said that, I will qualify it by also saying that I do not know if that one item will solve your problem but I am wondering if your OS and your applications are now confused?
    Hope this helps.

  • "BP Category 1 does not fit the data in category 2"  "Replies Appreciated"

    Hi Gurus,
    When i am trying to create an "Individual Account" in UI, I am getting the error "BP Category 1 does not fit the data in category 2".
    If i try to create a "group" then it says "BP Category 3 does not fit the data in category 2".
    It allows me to create only "Corporate Account" i..e. Category 2.
    What should i do to create "Individual Account" and "Group". (Category1 & Category 3).
    Individual Account (Category 1) - "BP Category 1 does not fit the data in category 2".
    Corporate Account (Category 2) - Able to create only Corporate Account
    Group (Category 3) - "BP Category 3 does not fit the data in category 2".
    Thanks & Regards
    Rohan

    Hi Rohan,
    Hope this SAP Note : 1232459, Solves your problem.
    You might have created a custom configuration for corporate accounts.
    Unfortunately in case of custom configurations exist, they are selected with higher priority.
    So in this case the configuration for corporate accounts is also shown for individual accounts,
    this causes error.
    In order to solve this problem, create a custom configuration for individual account also,
    i.e for view BP_HEAD/AccountDetails. Object type BP_ACCOUNT and object subtype INDIVIDUAL.
    Please make sure that the custom configuration includes the fields firstname and lastname for
    persons instead of name1 and name2 which are only allowed for corporate accounts.
    I hope the above information resolves your problem.
    Best Regards
    Shiven

  • CRM 2007 IC : error "BP category 2 does not fit the data in category 1"

    Hi Guys,
    When I am trying to save the data on the Bupacreate page it gives the error as follows.
    "BP category 2 does not fit the data in category 1".
    Can anyone suggest what is causing this error to happen and how this error can be corrected.
    thanks & regards
    Sandy

    Hi,
    This error usually occrus when you try to set field in without specifing bptype ie person, group etc. In our scenario we were trying to set field in Person which was not present in group. but since do_prepare_output method is same in both, that feild was getting set for group as well. When we placed restriction this error got removed.
    Best regards
    Pankaj Kumar

  • I have a macbook 13"screen purchased in 2007; I want to hook it up to my HDTV; I purchased a mini display port to hdmi adaptor but it does not fit.   what kind of adaptor will work for this model?

    I have a Macbook, 13" screen, purchased in 2007.    I want to hook it up to my HDTV; I purchased a mini display port to hdmi adapter but it does not fit.   Any suggestions?

    If you connect yourMacBook using a MiniDVI/HDMI adapter you will need to use external speakers for audio since the pre-2010 MacBooks will only send video through the MiniDVI or MiniDisplay Port . The MiniDVI/HDMI doesn't carry audio and there's no audio plugs on the TV to work with HDMI since it's expecting audio with the HDMI.
    If your TV has a DVI input plug you can use a MiniDisplayPort/DVI adapter. Then a DVI cable to the DVI input plug on the TV. The TV will have RCA audio plugs for use with the DVI. Plus DVI gives a sharper image than HDMI.

  • Result set does not fit; it contains too many rows

    Dear All,
    We are in BI7 and running reports on Excel 2007. Even though number of rows limitation in Excel 2007 is more than  1Million, when I try to execute a report with more than 65k records of output, system is generating output only for 65k rows with message "Result set does not fit; it contains too many rows".
    Our Patch levels:
    GUI - 7.10
    Patch level is 11
    Is there any way to generate more than 65000 rows in Bex?
    Thanks in advance...
    regards,
    Raju
    Dear Gurus,
    Could you please shed some light on this issue?
    thanks and regards,
    Raju
    Edited by: VaraPrasadraju Potturi on Apr 14, 2009 3:13 AM

    Vara Prasad,
    This has been discussed on the forums - for reasons of backward compatibility I do not think BEx supports more that 65000 rows .... I am still not sure about the same since I have not tried out a query with more that 65K rows on excel 2007 but I think this is not possible...

  • How do I transfer music and photos from my Power Mac G5 to my new iMac. Have an old FireWire but it does not fit the new iMac

    I am trying to transfer photos, music, etc from my Power Mac G5 to my new iMac. The Power Mac is too old for the migration assistant to help. I have an old Firewire but it does not fit the new iMac. Any suggestions? If a Firewire is the best option which one do I need? Thanks.

    You need a Firewire 800 to 400 adapter or cable or a external USB 2/3 drive (self powered) it can default to the old USB the G5 uses 1 or 2.
    Format the drive info here.
    Backup and restore info
    https://discussions.apple.com/message/16276201#16276201

  • My airport card does NOT fit!

    I've been searching and searching for my answer in the forums, so my apologies if the answer is already out there...
    Problem:
    I have a PowerMac G4 (firewire 800 - Mirrored Driver Doors).
    I just bought an Original Airport Card that had said IN THE DESCRIPTION that the card would fit my specific computer.
    However, when I received it, I found it does not fit!
    I've looked at the computer manual and have seen exactly where the airport card should slide into.
    BUT seems that the bracket that the card should slip into, is too small. I've now done search after search for which card that I REALLY do need, but all results say that this "original airport card" IS the one that I need. One result did say that I needed an adapter. But I dont see how an adapter would help me if the bracket is too small even for the card.
    I am baffled and extremely frustrated.
    Can someone be CLEAR about exactly what I need?
    -MandyZ

    If it has a FW800 port on the back, it will use Airport Extreme
    If it does not have a FW800 port (i.e., FW400 only), it will use regular Airport. When the original Airport cards were made and speced, the FW800 MDD G4 models had not yet been produced.
     Cheers, Tom

  • Error When creating Broadcastings "Portal theme does not fit output format"

    Hi All,
    When i create a Broadcasting Settings i am getting an Error saying "Portal theme does not fit output format", and below is the detailed that we are getting,
    "Diagnosis
    You used separate portal themes to generate PDF or print formats (PS or PCL). The output format that you selected is not appropriate for the portal theme currently set.
    System Response
    The broadcast setting is not consistent and you cannot save or execute it.
    Procedure
    Change the output format or the portal theme correspondingly. (The portal theme is set to the first valid value for the current output format when you display the corresponding tab page).
    Procedure for System Administration
      Notification Number RSRD 640"
    Can anyone help how to resolve this issue?
    Regards,
    Muruganand.K

    Would you have chance to provide me the sollution...
    We are facing the exactly the same error message
    Thanks a lot in advance
    Regards
    Ivan

  • My igoogle homepage does not fit properly on my screen

    I use igoogle homepage and the layout does not fit. It is minimized currently to get the "firefox tab" at the top but the left side is only half visible.

    My igoogle homepage started loading off-center. I could hit "refresh" and it would then load properly, but I wanted it to load correctly from launch.
    After disabling add-ons (extensions), I discovered that the SKYPE extension was to blame. I uninstalled the extension and now the homepage loads correctly...centered.

Maybe you are looking for

  • How to update or delete records in a Complex View in Forms?

    Hi, I have a requirement to create a Form by using Complex View. Insertion is possible but updation and deletion is not working properly . I got FRM-40501 Error. I need How to update or delete records in a Complex View in Forms? Thanks & Regards, Har

  • QuickTime failed... Error #2093

    Still can't get iTunes to load or work & have done all the suggested processes.. any ideas? what a POS this version is...

  • Business area-fi documents

    hi can we assign two business areas while creating any fi document and can we assign business area after posting a document. if it is tell me procedure plz. thank u

  • Text messages cut off.

    So Ive had my Motorola DEVOUR for a few days. it's been working perfectly and i've been texting quite a bit. But today while texting my friends back, they started asking me why my sentences weren't being finished. Apparently my texts were getting cut

  • Request for Dreamweaver cc 2012.0

    Hi have waisted the last two days because of bugs in DW 2012.1 Since upgrading to 2012.1 Design view can no longer be used which has added to my issues. The css files do not upload and sync to adobe BC when you save. I have to force an upload. The li