PAL to NTSC ? a little help please!

Hi. I have read several topics but couldn't really find an appropriate answer to my question.
I am trying to:
I live in Switzerland where we use the PAL system. So I have a PAL video-camera.
I am trying to create an NTSC movie to send to friends in the US!
I understand about the part where you can export the movie to NTSC format.
My problem is:
1) Proportions!! PAL is: 720x576 and NTSC is: 720x480!
The height is shorter so when I export, the image is squeezed!
Is there a way to "CROP" the image instead of having the image squeezed ?
2) I also saw that you can keep your proportions while exporting to NTSC, but then what will happen when someone uses a NTSC TV to watch movie. Will it squeeze the image, or will it add black stripes at the top and bottom?
3) I thought if my iMovie file was NTSC that it would crop the image when I do the import from my camera. But it doesn't work, and plus .. it transforms the NTSC standard to PAL automatically. So you can't even chose the format!
Any ideas, suggestions ? How could I do it? I am a bit lost! MANY thanks! & kind regards,
Stephanie

default settings (no cropping) to export as NTSC, but it didn't work out.
What was the problem then? How did it not work out??
The following page has info how to preserve correct aspect ratio when converting video:
http://www.iki.fi/znark/video/conversion/
For example, Section 3.2.2 has instructions for PAL to NTSC conversion:
PAL 720x576 must be resampled to 729x486, then cropped to the final 720x480 NTSC resolution.
I haven't tested whether JES Deinterlacer does the conversion along those lines (very few applications do these things right but luckily almost no one notices that!!) but in my tests the results have been very good.
If it is NTSC, why is it [iDVD] using PAL size ?
Notice that iDVD's PAL/NTSC setting takes effect only for new projects.

Similar Messages

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • Need a little help please    Airport Express

    Need a little help please.
    I am trying to set up a wireless network at my home using Airport Express.
    I have a regular phone line running in to I assume the modem. From there, there is an Ethernet cable running from that box to the back of the PC. My question is, I think, which of those do I unplug and plug into the Airport Express, the one on the back of the PC or the one that is in the back of the modem, or is this totally wrong.
    Any help would be appreciated…
    Thanks
    In advance…
    PS I have the manual but to me it is not very clear…

    Your connection sequence would look like this:
    Internet > Modem > AirPort Express >>>wireless to your computers.
    This means that you would unplug the cable that is now connected at the back of your PC and move that connection to the AirPort Express.
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Continue to follow the guided setup. On the third page, you will choose the option to "Create a wireless network" and continue the setup.

  • Guys, a little help please ???

    Guys, a little help please before i launch my new toys out of my pram   I've got the new apple TV, Ipad2, and IOS5 update. I'm trying to set up mirrorring , however, when i double click the home page and swipe, the only options it gives me are Ipad or Apple TV. The video shows that i should be able to simply click on mirrorring and whazam it appears on my TV... I can't get this option.... I've rebooted them (router, ipad 2 and Apple Tv) numerous times but still can't get it.......Can someone tell me what I'm doing wrong?
    Thanks

    Sounds as though the options you're getting are the standard Airplay output icons.
    Check current AppleTV software version in Settings>General>About
    Latest is 4.4.2 - there's a sticky at the top of the page about updating - if you're on 4.3 or lower just update from Settings.
    Maybe someone can confirm the video you mention is actually the correct way to invoke mirroring - link?
    (Yn anfodus heb iPad2 does dim syniad 'da fi os ydi'r Mirroring yn gweithio fel yn y fideo - oes linc i'r fideo, rhag ofn bod y fideo'n anghywir?)
    AC

  • I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/, I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/

    I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/, I have iPhone 4.I uprage it to IOS 5.1.1 and i can't go into it because i have no service.A  little help,please ? :/

    Your phone is carrier locked to a carrier other than the one you are trying to use.
    It was apparently hacked to unlock it prior to your attempt to update. Updating has re-locked it to the original carrier.
    Contact them and find out what their policy is.

  • Little help please regarding deleting files and folders...

    My wife has a MBP and has accumulated some old items in her documents folder that she'd like to delete. She has a USB mouse but the "right click" doesn't appear to work. She's running 10.4.11 and can't reveal the files in icon mode to facilitate dragging to trash. Certainly there is a sequence of keystroke commands that will allow these files to be effectively trashed, but our "control/delete", or "apple/delete", or "option/delete" doesn't do the trick after highlighting the subject file. Help please! TIA!

    To delete a file or folder, high light it then using the keyboard type Command Delete and that will delete it. If you have multiple files and/or folders the same keyboard commands apply.
    Regards,
    Roger

  • Moving QT from PAL to NTSC...HELP!

    This is very likely to be a QT or OSx problem. Please don't pay attention to the "Logic Pro" references if you are not a Logic user, your help will be welcome!
    Just moved from the UK to the US, and in the middle scoring a film. I'm simply trying to play the picture back via the "firewire" option in the video prefs of Logic.
    My QT file is "DV/DVCPRO-NTSC" and its size is 720x480, as suggested in the manual.
    There is nothing PAL in my settings. Sound editors all around me are using the very same files on NTSC TV-monitors etc without any trouble.
    I have changed my time Zone from one place to the other etc as well...before you ask...
    THe computer, however, (G5) is still living in PAL, I believe, because when opening the QT file outside of Logic, it sees it as baing DV/DVCPRO...etc BUT as having only 25 frames /sec....instead of the 29.97fps it actually runs at.
    I feel this may be a QT or "general set up" setting which has to be changed, but any help help would be greatly appreciated!
    THanks in advance.
    M

    Denis,
    Compressor standard conversion works best with progressive, iframe based material. The one tool that really does a great job (especially with interlaced material) using enhanced and more intelligent standard conversion algorithms remains [Nattress|http://www.nattress.com/Products/standardsconversion/standardsconvers ion.htm].
    Having said that, Compressor can still do a decent job.
    G.

  • HT1918 a little help please...

    Hello!I have a question!I upgraded my iTunes today and now I have Itunes 5.1.1.Before that I just had to give a password and nothing else in order to download an app from iTunes.Now I am a little complicated.I'm trying to create a new account and I don't have a credit card.But there is no ''none'' option!I only download free apps and I'm not interested in buying anything.I tried to change the country option and the ''none'' option appeared!But now I don't know what this '' to redeem a code or gift certificate'' is.And I don't know what to do in order to continue...Could you please help me?

    Again sad, no replies -

  • Switching from external Email server to Exchange, Understanding Dis-Joint, and a little help please

    I'm pretty new at installing exchange myself and have never done Exchange 2013
    While going through the install help online I came across disjointed domains. I think I'm over thinking this but here is what I have and what I want to do. Any other tips would be great as well. 
    Customer currently has a domain, internal dns and email through GoDaddy. Lets call it smallschool.com 
    Internally they have a new Active Directory (2012) and the domain is in.smallschool.com. There is no external DNS except GoDaddy. I plan to use that (if that's ok). 
    I have built a Hyper-V for Exchange 2013 and have installed pre-requisites. 
    My Current Question are...
    Do I need to set up dis-joint dns suffix and modify the msds-allowdnssuffix attribute? I have the instructions, I just don't know if this is a must or not with the domain names like they are.
    Am I going to run into any trouble switching GoDaddy's email to Exchange Server? Any Tips?
    Thank You, 
    fixitrod

    Hi fixitrod,
    Agree with Ed Crowley. If your original used domain is smallschool.com in GoDaddy, I suppose your email address would be
    [email protected]
    If that is the case, when you deployed a new AD domain with in.smallschool.com, we can create an accepted domain for smallschool.com in Exchange 2013. If you want to still use Godaddy for external message sending and receiving, you can create an external
    relay domain. For more information about configuring external relay fomain, please refer to:
    http://technet.microsoft.com/en-us/library/jj657491(v=exchg.150).aspx
    Regards,
    Winnie Liang
    TechNet Community Support

  • Can't use google. Little help please

    For some reason I cannot use Google as a search engine or access its website. Would really like to resolve this. Any help is really appreciated.
    Things I have tried:
    1.) Ping google and it was successful
    The address it is using is 173.194.117.242
    To make things weird, if I use this numerical address in the search cue I in fact get access to the google website
    2.) I flushed the DNS in "Terminal"
    Not sure if that did anything. I read somewhere to try it
    Important background information
    When I enter google in my search function, I am directed to this page strangely http://122.132.196.148/33407BMULZ/dsawfffs.php?64198
    I do live in South Korea so that's why its in Korean. Basically it tells me I need to update google chrome (which I am not even using) or download some binary patch that really only is meant for Microsoft users so it doesn't work on my computer anyway.
    So...Why is it that I can reach 173.194.117.242 (google) but then am directed to that strange web page in korean when I use google as a search engine in my browser (firefox,safari)
    Thanks!

    Please review the options below to determine which method is best to remove the Adware installed on your computer.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071
    http://www.thesafemac.com/tech-support-scam-pop-ups/

  • A little help please. Switch statement?

    Well hey there,
    I have some code and I would like to know why it keeps skipping to a certain part.
    I have made code for a cinema booking system and ticket prices are;
    Adult £5
    Student £4
    Child £3
    But no matter which I choose the price is £5?
                                            if ((input1 != null) && (input1.length() > 0)){
                                                char choice;
                                                choice = input1.toLowerCase().charAt(0);
                                                int selectedprice;
                                                switch(choice){
                                                    case 'a':
                                                        selectedprice = 5;
                                                    case 's':
                                                        selectedprice = 4;
                                                    case 'c':
                                                        selectedprice = 3;
                                                    default: selectedprice = 5;I know I have a default price of £5 but how can I make it so there is no default and it goes on what the user chooses? Thanks.

    if ((string2 != null) && (string1.length() > 0)){
                            Object[] possibilities3 = {"Adult", "Student", "Child"};
                                    String input1 = (String)JOptionPane.showInputDialog(
                                            frame, "Please Select Ticket Type: ",
                                            "Ticket Booking", JOptionPane.PLAIN_MESSAGE, null, possibilities3, "" );
                                            if ((input1 != null) && (input1.length() > 0)){
                                                char choice;
                                                choice = input1.toLowerCase().charAt(0);
                                                int selectedprice;
                                                switch(choice){
                                                    case 'A':
                                                        selectedprice = 5; 
                                                        break;
                                                    case 'S':
                                                        selectedprice = 4;
                                                        break;
                                                    case 'C':
                                                        selectedprice = 3;
                                                        break;
                                                    default: selectedprice = 0;
                                                 String input2 = JOptionPane.showInputDialog(frame, "Please Enter Number of Tickets: ");
                                                 Integer quantity = Integer.parseInt(input2);
                                                 TicketPrice total = new TicketPrice(selectedprice, quantity);
                                                 if ((input2 != null) && (quantity <= screen1.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Confirmed! Payment of £" + total.getTotal() + " Transacted");
                                                 else if ((input2 != null) && (quantity > screen1.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Not Possible");
                                                 else if ((input2 != null) && (quantity > screen3.getCapacity()) ){
                                                     JOptionPane.showMessageDialog(frame, "Booking Not Possible!");This is most of the code, it always says the price is £5 for any ticket? Please help.
    Edited by: sabertoothed.tiger on Dec 10, 2008 4:56 PM

  • HT201407 LITTLE HELP PLEASE

    tried to update my ipad 2 16gb with itunes's latest sftware now my ipad has crashed
    i am now trying to restore with itunes my brothers laptop and it says:
    'the ipad "ipad" could not be restored. this device isnt eligible for the requested build'
    please help quite frustrating

    Make sure iTunes is at its latest version.

  • Frame rates, judder, PAL and NTSC - expert advice needed please!

    I have an NTSC high def camcorder. Because I live in England, I would prefer to make PAL DVDs from my home movies, if possible. My camera (Canon HF100) is AVCHD, and I thought this meant that once imported into iMovie, it was not 'true' NTSC. Have I misunderstood this? The reason I ask is that my recent iMovie 08 edits view perfectly on my Mac, but are slightly juddery when burned to a PAL DVD.
    I have read on this forum about framerates, but I'm hoping the problem is still surmountable somehow. When I imported my footage into my Mac, I selected PAL even at that early stage, and all seemed to be well throughout the edit. The pictures and sound are perfectly synchronised, which I had heard could be a problem when moving between NTSC and PAL.
    Do I really just have to go with NTSC all the way? Quite apart from its reputation for being Never Twice the Same Colour, it's not ideal if you're living in Europe because most TVs and DVD players are PAL.

    the video standard conversion is no trivial task, a lot more than 'just' down-cascading 29.97 fps to 25fps (aside the 'unround' math, you have to convert resolution, color-schemes, etc) ... so, by any route it is IS a lossy process in terms of quality, or you use some 50k$ hardware
    If your TV/DVD player supports it - stay NTSC ...
    another route, I suggest when using iMHD6, is an export as dv-stream (NTSC) and using teh free app JES Deinterlacer for converting into dv-stream (PAL) ... JESDI does a better job, imho.
    but...
    the export as dv from within iM08 is again a lossy process, as we discussed early here at the boards.. so, you double the lossy process = no good idea.
    stay NTSC...

  • WINDOWS VISTA 64BIT. a little help please!!!

    hi
    i am running windows vista 64 bit, my motherboard is Asus M3A32MVP, soundcard: Soundblaster Xfi, grapics card ATI 3870x2, processor AMD Athalon 6400 plus running on 4 gb of RAM
    as i read all the posts as to how vista does not have the decoding for the audio sound, i think i may have solved the problem that we need in order to get surround sound. everyone needs to take a look at power dvd 7 max ... which has all of the decoding/encoding software for 5./6./7. surround sound, which seems to be missing from vista's os as far as sound is concerned. I keep seeing the particular fix for the creative driver for xp 64 , and vista 64 which was released on 3/4/08. this will fix the 4g of ram problem. i also purchased the instalation cd for the xfi soundcard for vista which is avaliable through the creative web site... IS THERE ANYBODY OUT THERE THAT MIGHT BE RUNNING THE SAME TYPE OF CONFIGURATION AS I AM OR IF SIMULAR TO WHAT I HAVE...AND IF SO IS IT WORKING TO IT'S FULL CAPACITY...... MEANING NO PROBLEMS..... CAN ANYONE HELP ME WITH THIS BEFORE I PUT VISTA 64 BACK ON THE COMPUTER??
    Message Edited by gothdaze on 03-9-2008 03:59 PM

    Again sad, no replies -

  • SpellChecker Program - A little help please?

    Follwing is a spell checker program I've written. It reads from dictionary file(of correct words) and a user input file. The user input is compared against the contents of the dic file. If they do not match, incorrect words are outputted to the console window.
    The code compiles, but for some reason it is not recognizing my input files (i.e. receive "FileNotFoundError" exception.
    Anyone know why?
    Thanks!!
    import java.io.*;
    import java.util.StringTokenizer;
    public class SpellChecker
        private String inFileName;
        private String dictionaryFile;
        public SpellChecker(String aFilename, String aDictionary)
            inFileName = aFilename;
            dictionaryFile = aDictionary;
            File inFile = new File(inFileName);
            File dictFile = new File(dictionaryFile);
            String inputLine;
            String dicLine;
            StringTokenizer tokenizer;
            String token;
        try
            FileReader inReader = new FileReader(inFile);
            FileReader dicReader = new FileReader(dictFile);
            BufferedReader in = new BufferedReader(inReader);
            BufferedReader dicBuffer = new BufferedReader(dicReader);
            while(in.readLine() != null)
              inputLine = in.readLine();
              dicLine = dicBuffer.readLine();
              tokenizer = new StringTokenizer(inputLine);
              while(tokenizer.hasMoreTokens())
                token = tokenizer.nextToken();
                if(token.equals(dicLine) == false)
                  System.out.println(token);
        catch(FileNotFoundException fnf)
          System.out.println("You must enter an input file name.");
        catch(IOException e)
          System.out.println("Micellaneous IO Exception.");
          public static void main(String[] args)
          try
            String dicFile;
            String checkFile;
            BufferedReader buffread = new BufferedReader(new InputStreamReader(System.in));
            System.out.println("Please enter a dictionary file name");
            dicFile = buffread.readLine();
            System.out.println("Please enter name of file to be checked");
            checkFile = buffread.readLine();
            SpellChecker sc = new SpellChecker(checkFile,dicFile);
        catch(IOException e)
          System.out.println("Micellaneous IO Exception.");
    }

    Thanks!! Now I don't get the same error, but am getting a NullPointerException in 2 places.
    - in main() where I'm creating the SpellChecker object.
    - further up in while loop where I'm creating a StringTokenizer object with the "inputLine" value as a parameter.
    any ideas??

Maybe you are looking for

  • Custom table - delivery class?

    I need to create a z-table to list the email-ids that I want to notify to, in case of program errors. Should I make the delivery class of this table 'C'? And is best practise to make the data transportable? Or should my users just enter data in each

  • Output by color

    Hello, When we create a list, is it possible to color the fields? If so, how is it done? Any detailed ideas will be rewarded with points. Thanks Experts

  • Problem with the output ports of the data service !!!!! attention

    Hi, I have created a functional module x using abap programming. The functional module x with  one input and one  output table.It successfully executed in abap. Later i activated and used it in  visual composer 7.1 .It worked perfectly fine. The inpu

  • Looking for the perfect workflow on two computers and backup photo's and synchronize LR 5

    I work on two computers. A workstation in the studio and a laptop. I have a harddisk inside the computer containing all photo's. I have a external disk to backup these photo's. On the worksation LR catalog sits on a second internal disk. LR runs from

  • 6.3.1 Client on Red Hat 5.4

    I have a new client for DS 6.3.1 ; the client runs on Red Hat 5.4 . What is the procedure for obtaining the Directory Server client ? JYard UCLA