After burned to dvd the edge are cut off in my tv screen. looks like zoomed

hi
i am FCPX user. i create my project using format (resolution )as showed on the pic below
after burned to dvd the edge are cut off on my tv screen. looks like zoomed as showed in  the pic below.
thanks for taking ur time to help me!!
then i export using master file as
showed on pic below
and after i burn on to dvd my edge are cut off. here pic trying to show before burn on my mac and after burned on to dvd
                                       before burned on to dvd on my iMac screen
                  AFTER BURNED ON TO DVD ON MY TV SCREEN
i really need ur help thanks
after burned to dvd the edge are cut off in my tv screen. looks like zoomed

Thanks Alchroma
i used this dvd burner just incase..
but i thought i might have wrong settings from begning.
do u thinik this setting is alright when creating DVD
Alchroma wrote:
That thought jumped into my head as well.
If the Safe Area settings are OK then it's well a settings issue in either the DVD player or TV or both.
Al
Alchroma wrote:
That thought jumped into my head as well.
If the Safe Area settings are OK then it's well a settings issue in either the DVD player or TV or both.
Al
thanks again

Similar Messages

  • Please help i started my project video format 720HD resolution 12x720 rate 25p at last when i finish and burn to dvd the edges are cut off any one help please i am really in trouble

    please help i started my project with  video format 720HD, resolution 12x720, rate 25p.  at last when i finish and burn to dvd the edges are cut off and my logo cut off the screeen aswell any one help please i am really in trouble. thanks

    Sorry, but I don't know anything about that app.
    I did go to their Web site and I see they have a support link. Perhaps you can get help there or in their forum.
    If you are OK with a DVD with a basic menu, you could try the Share>DVD option in FCP.
    Good luck.
    Russ

  • I recently purchased 3 CD's, some of the songs are cut off in the middle of the song.  Itunes sent me a link several times to redownload the songs, but each time either the same songs or different songs would be cut short each time I redownloaded the CD's

    I recently purchased 3 CD's, some of the songs are cut off in the middle of the songs.  Several times ITunes sent me a link to redownload the CD's or certain songs and each time either the same songs or different songs on the CD's would be cut short.  What could be causing this?

    shameless bump

  • Once I send 1 string, the rest are cut off, any ideas?

    Hello everyone.
    For some reason when I send my first string through the socket, everything works fine. But after that Its cutting off the first 2 or 3 characters of the string and I have no idea why because I'm flushing the output buffer before and after I send the the string to the output buffer.
    note: complete code can be found here:
    http://cpp.sourceforge.net/?show=38132
    Am I not flushing right?
    Here's the code:
    public class MultiThreadServer implements Runnable {
    //csocket is whatever client is connecting to this server, in this case it will
    //be a telnet client sending strings to the server.
         Socket csocket;
      MultiThreadServer(Socket csocket) {
        this.csocket = csocket;
      public void run() {
           //setting up sockets
           Socket outputServ = null;
           //create a message database to store events
              MessageDB testDB = new MessageDB();
           try {
          //setting up channel to recieve events from the omnibus server
             BufferedReader in= new BufferedReader(
                        new InputStreamReader(
                        csocket.getInputStream()));
             PrintWriter out2
              = new PrintWriter(
              new OutputStreamWriter(
              csocket.getOutputStream()));
             //This socket will be used to communicate with the z/OS reciever
             //we will need a new socket each time because this is a multi-threaded
             //server thus, the  z/OS reciever (outputServ) will need to be
             //multi threaded to handle all the output.
             outputServ = new Socket("localhost",1234);
             if(outputServ.getLocalSocketAddress() == null)
                  System.out.println("OutputServer isn't running...");
             //Setting up channel to send data to outputserv
              PrintWriter out
                   = new PrintWriter(
                   new OutputStreamWriter(
                   outputServ.getOutputStream()));
         String input;
         //accepting events from omnibus server and storing them
         //in a string for later processing.
         while ((input = in.readLine()) != null)  
              //looking to see what telnet gets
              out2.println(input);
              out2.flush();
             //accepting and printing out events from omnibus server
             //also printing out connected client information
              System.out.flush();     
              System.out.println("Event from: " + csocket.getInetAddress().getHostName()
                            +"-> "+ input +"\n");
             System.out.flush();
                  //sending events to output server
              out.flush();
                  out.println(input);
                  out.flush();
                  //close the connection if the client drops
                  if(in.read() == -1)
                       System.out.println("Connection closed by client.");
                       break;
        //cleaning up
          in.close();
          out.close();
          outputServ.close();
          csocket.close();
           catch (SocketException e )
                System.err.println ("Socket error: " + e);
           catch(UnknownHostException e)
                System.out.println("Unknown host: " + e);
              catch (IOException e)
               System.out.println("IOException: " + e);
    }Here's some example output I'm getting from the telnet screen which is (out2) stream:
    This is a test
    This is another test
    his is another test
    This is yet another test
    his is yet another test
    This is a test worked fine, as you can see, it outputed This is a test when I typed it in.
    The next string "This is another test" fails, as you can see its echoing out:
    his is another test
    I'm also printing out the contents to the console, and i'm getting out the same thing:
    Enter port to run server on:
    3333
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=3333]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=2184,localport=3333] connected.
    hostname: localhost
    Ip address: 127.0.0.1:3333
    Event from: localhost-> This is a test
    Event from: localhost-> his is another test
    Event from: localhost-> his is yet another test
    Connection closed by client.
    ANy help would be great!
    Message was edited by:
    lokie

    I posted more compact code so its easier to see and understand: The run() function is where the problem is occurring.
    //SAMPLE OUTPUT FROM CONSOLE
    Enter port to run server on:
    3333
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=3333]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=2750,localport=3333] connected.
    hostname: localhost
    Ip address: 127.0.0.1:3333
    Event from: localhost-> This is a test
    Event from: localhost-> his is a test
    Event from: localhost-> his is a test
    Connection closed by client.
    //------END OF SAMPLE OUTPUT-----//
    //---THis class is called everytime a new thread is created,
    //only 1 thread is created because only 1 client is connecting to the
    //server
    package server;
    //parser server
    import java.io.IOException.*;
    import java.io.*;
    import java.net.*;
    import java.util.Scanner;
    public class MultiThreadServer implements Runnable {
         Socket csocket;
    MultiThreadServer(Socket csocket) {
      this.csocket = csocket;
    public void run() {
           try {
        //setting up channel to recieve events from the omnibus server
           BufferedReader in= new BufferedReader(new InputStreamReader(csocket.getInputStream()));
         String input;
         //accepting events from omnibus server and storing them
         //in a string for later processing.
         while ((input = in.readLine()) != null)  
           //accepting and printing out events from omnibus server
           //also printing out connected client information
              System.out.println("Event from: " + csocket.getInetAddress().getHostName()
                          +"-> "+ input +"\n");
              System.out.flush();     
                //close the connection if the client drops
                if(in.read() == -1)
                     System.out.println("Connection closed by client.");
                     break;
      //cleaning up
        in.close();
        csocket.close();
           catch (SocketException e )
                System.err.println ("Socket error: " + e);
           catch(UnknownHostException e)
                System.out.println("Unknown host: " + e);
              catch (IOException e)
               System.out.println("IOException: " + e);
    //This is the main function, the only thing it does is
    //create a new thread on each connection.
    package server;
    //This is the parser Client that will parse messages and send to the
    //z/Os output Server
    import java.io.*;
    import java.net.*;
    public class MainTest
           public static void main(String args[]) throws Exception
                //get console input
                BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));  
                System.out.println("Enter port to run server on: ");
                String input = stdin.readLine();
                int servPort = Integer.parseInt(input);
                //setting up sockets
                ServerSocket ssock = null;
                Socket sock = null;
                try
                //setting up server to run on servPort
               ssock = new ServerSocket(servPort);
                System.out.println("Listening on : " + ssock);
                System.out.println("Waiting for client connection...");
                  while (true) {
                    //waiting for client to connect to server socket
                    sock = ssock.accept();
                    System.out.println(sock + " connected.");
                    //get host information
                    InetAddress clientIa = sock.getInetAddress( );
                    String clientName = clientIa.getHostName();
                    String clientIp = clientIa.getHostAddress();
                    int localPort = sock.getLocalPort();
                    System.out.println("hostname: "+clientName  +
                              '\n' + "Ip address: " + clientIp
                              +":"+ localPort + "\n\n");
                    new Thread(new MultiThreadServer(sock)).start();
                catch (SocketException e )
                     System.out.println ("Socket error: " + e);
                catch(UnknownHostException e)
                     System.out.println("Unknown host: " + e);
                   catch (IOException e)
                    System.out.println("IOException: " + e);
    }

  • Font size too large on itunes summary page . Half the words are cut off.

    How to change font size on the itunes summary page? Currently font size is too large resulting in sentences being cut off.

    Did you increase the minimum font size?
    If you increased the minimum font size then try a lower setting (default is ''none'') as a too high value can cause issues like you described.
    Tools > Options > Content : Fonts & Colors: Advanced > Minimum Font Size
    Tools > Options > Content : Fonts & Colors: Advanced > "Allow pages to choose their own fonts, instead of my selections above"

  • I-movie. I made a movie for a party of my daughters using photos and music. The video looks great on my Mac but when I burned a dvd and watched it on several t.v.s it looked like crap. The pictures looked blurry because of the movement of transitions?

    Does anyone have ideas to sharpen the video i made. Looks good on computer but not on tv. the transition between pictures blurs the images. Is it my tv that causes this?

    Does anyone have ideas to sharpen the video i made. Looks good on computer but not on tv. the transition between pictures blurs the images. Is it my tv that causes this?

  • HT1725 the album I bought downloaded but some of the songs are cut off

    downloaded an album and some of the songs do not play entirely

    If you live in a Region that allows re-downloading Music...
    Delete the Song(s) and re-download...
    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519
    If not... Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

  • When selecting "bookmark this page" the location select window right side and bottom are cut off, no visible buttons

    After I select "bookmark this page" from the bookmarks menu, and then select "show all the bookmarks folders" with the pulldown arrow, the bookmarks folder list appears but the right side and the bottom are cut off so that no buttons are showing. Trying to resize the window does not work. Double clicking on the desired folder selects the folder name for editing, however, the caption at the top says "bookmark saved" and sometimes it is actually where I would like it to be added.

    After finding that I did not have a chrome folder, or userchrome.css file, I installed ChromEdit Plus. Through this app I was able to create a chrome folder and the userchrome.css file using the information from finitarry. The problem still existed. I then edited userchrome.css changing the values to "min-width:800px !important; min-height:800px !important; " The results were; same problem, just bigger. This code changes the folderview pane in the add bookmarks window. The problem is the pane expands larger than the window. Let me see if I can clairify, When you select "bookmark this page" the add bookmark "window" opens. to open the folderview pane, click on the down arrow to the right of the folder pulldown menu. The window is not expanding to contain the pane correctly and pushes all the other controls off the screen.

  • Images at the bottom of the screen are cut off in HDR Pro

    I'm running a Mac and have recently installed CS5.  When I open files to do an HDR, the photos used in the HDR are cut off at the bottom of the screen.  In other words, what I mean is, they should be able to be selected with the check box is being included or not.  Also, the "OK" and "Cancel" buttons are cut off.  I thought that perhaps it was the screen resolution or perhaps the dockeed icons below.  Yet, I'm using the highest screen resolution and that's not a factor. I've hidden the dock,moved it...no difference. I've tried resizing the HDR window but it only resizes horizontally - not vertically.
    This is frustrating.  I'd like to be able to see the entire images being used in the HDR pro and decide whether to include them (or not) by the check boxes; especially since this is how it's supposed to work.  Any ideas?

    Hi Charles,
         Until just now...it didn't work.  Isn't that how it is...ya ask for an answer for something that's broke...then it works.
    When it wasn't working...the Green maximize button didn't do much except allow me to pull the window down further.  Once I would try to resize the window from the resize section at the bottom right, the window would resize to full size...not much good.
    Although...for whatever reason, it seems to be working now.  Will it work tomorrow?  beats me.
    Thanks for yoru help.
    Tony

  • Opened a .ai file, found that left and right side are cut off (landscape vs. regular the issue?)

    Information all in the title.  I open a .ai file and the left and right sides of the image are cut-off based on the "page" box

    Did you open it in a lower version?
    It looks like you opened the PDF part of the file instead of the AI part.

  • Slideshow pictures are cut off when viewing on tv

    Hi..I burned several iphoto slideshows onto a dvd via idvd. I used 16:9 aspect ratio whenever prompted. When I play the dvd and watch the slideshows on tv, all the pictures are cut off on the sides. I tried changing the tv screen (wide, cinema, normal, etc) but they are still cut off. The tv is hd. Any ideas how I might fix this? Thanks!

    try this:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/iDVD8movieSS.png
    hope it helps but if not just come on back.

  • Please Help...My photos are cut off in my slideshow

    Hello,
    I am making a slideshow using IMovie. I am using photos from IPhoto. When I drag them to the strip and then play my show, many of the photos are cut off. You can't see the whole photo. Example, my daughter is on a balance beam and you can only see her legs and the beam. Any suggestions on how to fix this would be greatly appreciated. Do I need to adjust all of my photo sizes? (Hope not, this slideshow has hundreds of pictures) Do I need to adjust something with the slideshow?
    Thank you in advance for you help.

    Is there a way to do that for all the pictures at once?
    You can either set the Project Preference to automatically use the "Fit" option when new images are added to a project. However, to change the rest of the images already added, you would have to select the image you already corrected, press Command-C to copy the information to temporary memory, select all other images, and then use the "Paste Adjustments > Crop" Edit menu setting to copy the current "Crop" setting to all selected images at once.
    BTW-what is Kens Burns?
    It adds a "motion" effect to still images. I.e., you can select a start and stop scaled/position view and the application will interpolate "in between frames" to create the motion effect.

  • Words on some web pages are cut off or overlapped.

    I have a Macbook and when I go to some web pages the words are cut off or in some cases are overlapped. Is there anything way to fix this, or is my screen size too small for some of the webpages? Thanks in advance.
    In this pic it is on the left bottom.
    ">
    In this pic it is towards the bottom, where you click on "Disscussions".

    njrichardson wrote:
    I have a Macbook and when I go to some web pages the words are cut off or in some cases are overlapped. Is there anything way to fix this, or is my screen size too small for some of the webpages? Thanks in advance.
    In this pic it is towards the bottom, where you click on "Disscussions".
    Regarding the picture you posted of the Apple Support site...
    The text looks to be very large.
    When I click on the "increase text size" button in Safari, I see the same thing as your picture.
    Try clicking the "decrease text size" button.

  • I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.

    I bought a used PowerMacPC G5. I can burn and read DVDs, but I can't read or burn CDs. The CDs are not even recognized. After the drive searches for a while, the CD is ejected without any error messages. The CDs work okay on my iMac.
    I am running Mac OSX 10.4.11. According to the System profiler the CD/DVD drive is a "PioneerDVD-RWDVR-112D." When I compare the information under this heading, the only unusual difference from my iMac is that the G5 reads "Burn Support: Yes (Unsupported)." My iMac reads "Burn Support: Yes (Apple Shipping Drive)."
    Under the System Preferences the options are set to "Ask what to do" when a blank CD or DVD is inserted. Music CD set to open iTunes, Picture CD set to open iPhoto, Video DVD set to open DVD player.
    Do you have any suggestions?
    Thanks, Jack

    Hi Jack, great help so far!
    Internal...
    http://eshop.macsales.com/static_pages/Framework.cfm?page=superdrive/sdl_powerma c_g5.html
    External be sure it's Firewire & not Bus powered...
    http://eshop.macsales.com/shop/firewire/optical-drives/

  • After burning a DVD one or more of the scenes wont play?

    Adobe Premier 11 - After burning a DVD one or more of the scenes wont play, the scene is showing and highlights but wont play...this has only recently just started to happen. I thought it may have been the physical DVD disk issue, but have tried others and same thing is occuring?

    Does iTunes let you burn CDs even though you have installed iTunes 8? There are many users - me included - who have lost the ability to burn CDs after we installed iTunes 8. I am curious to learn what may be different about your settings versus those of us who are being adversely impacted. Do you know what the UpperFilters and LowerFilters are in your registry for disc burning?
    Thank you.

Maybe you are looking for