Help for converting .mov HD 1080i to HD DVD 1080i format to play on my DVD player

HI,
I have downloaded HD 1080i movie clip from iTunes .
The Video Clip is a .mov file.  I can play this file on my iMac , but i need to play this file on my DVD player. 
My DVD PLAYER  do not support the .mov file .  I need some help to convert the .mov file to a DVD format.
I have tried some free application that converts any format of video to required format. But the converted DVD format is down graded to 480p.
I need the same 1080i format DVD format when it is converted.
Please suggest the Application which can convert the .mov file to DVD in 1080i
Thanks in advance
Regards,
Nilesh Labde
<Personal Information Edited by Host>

DVD Video discs are always standard definition -- 720x480 on NTSC or 720x576 on PAL, otherwise they don't conform to the strict DVD Video specification and won't play in a DVD player.
If you want HD, you have to make a Blu-Ray disc. You need specialized software for that such as Toast 11 Titanium or Adobe Encore (part of the CS5 or CS6 collection, not sold separately) and a Blu-Ray burner. Of course, you will also need a Blu-Ray player connected to your HD TV.

Similar Messages

  • Best program for converting mov

    I have been using Creative's own conversion tool but it's very slow.What do you think is the best program out there for converting movies to my Creative Zen Vision:M ?Hallrar

    I use m2 convert for zen, I had to pay for it but its easy for novice users like me

  • Please help- problems converting .mov to .avi

    I'm using QuickTime Pro to convert my .mov to .avi and when I view the .avi movie, the first couple seconds is in fast-forward mode, then a couple seconds of slow motion, then it's normal for the rest of the movie.
    To see my steps, I used this link to help me convert: http://www.divx-digest.com/articles/articlemov2avi_quicktimepropage1.html
    I'd appreciate any help on this.
    euser

    quicktime Pro will do it, get it from the apple store (its just a key, cost $30), also ffmpegX (shareware) will do it
    sometimes you can find an application that will do it by using the quicktime libraries for free, just search a site like versiontracker

  • Suggestions for converting movies to flv/flash?

    Can anyone recommend a software to convert .mov and mp4 videos to flash? I have adobe video encoder cs4 which people swear by from articles I read, however I do not see where I can add a player nor add a thumbnail for the first frame.
    I need something that will produce high quality videos and give me the option to select the thumbnail shot and player selection while not being overly expensive.
    Thanks

    It feels like you are mixing several unrelated objectives hoping that there is a single solution.
    1. Video encoders like the one that comes with Flash do just that - encode videos into a format that can be read by Flash player (NetStream class).
    2. In order to edit video you need a video editing software (iMovie, Final Cut, etc.) - these programs have nothing to do with Flash.
    3. Video CANNOT be converted to Flash code.
    4. Thumbnails: you need to write an ActionScript code to display thumbnails.

  • Burned DVD movies skip/freeze on regular DVD player

    I've made a few home movies, and burned them on to DVDs. When I play them on a regular DVD player (Sony), the movie skips/freezes from time to time. I've burned the same movie on my other MacBook, and this does not happen.
    Could it be that the SuperDrive on this MacBook is broken?

    Hi,
    I would take a look at the following:
    1. Try a different brand blank DVD medium when you burn the disc. Set top players seem to be a lot more sensitive to the brand of disc than computers.
    2. Burn the iDVD project to an image file. Share the image file over to another Mac and burn it there. See if you still have problems with playback.
    3. If you still had problems with an image file burned on a different computer, then you know it must be something in the data format of the disc. I've experienced problems with some set top DVD playback machines that can not handle sustained high bit rate content. As far as I know, iDVD uses a relatively simple encoding strategy, and does not do much to reduce the information content of the encoded video stream. If you start with a high resolution QuickTime or DVI import, playback machines with limited disc performance might not be able to keep up.
    I did some fairly superficial Google searches and looked at iDVD, and I didn't see any means of setting up the bit rate and encoding strategies that iDVD will use. Perhaps, somebody with a little more experience can comment?... A professional DVD encoding software suite will do a multi-pass encoding - once to figure out optimization and then again to render output. That sort of analysis might require an over-night run to make the disc. I have a feeling Apple avoided that in order to make iDVD more consumer friendly. It also avoids stealing market from more professional products like Final Cut.
    You might be able to go into iMovie HD to edit the clips. You could send them to QuickTime, and reduce the bit rate there, then import the QuickTime clips into iDVD.
    --Bill

  • Help on converting movies

    I am having a **** of a time trying to figure this out, and nothing seems to help me. When I convert a movie either through quicktime or itunes, the video shows up with a white screen. The sound is able to be played however there is no video...Can someone please guide me in the right direction in how to fix this!!

    AE13 wrote:
    It is MP4 files
    converted from what ?
    sync it with the apple tv as the original file and it says it is in the wrong format
    so the files are in iTunes, correct ?
    see this screenshot and post back with the data i marked in red for one of the problem files
    JGG

  • Need help for converting c# encryption code to javascript

    I have this below code in c# i need to convert it into nodejs i would really appriciate some help in this.
    Rfc2898DeriveBytes passwordDb2 = new Rfc2898DeriveBytes(passphrase, Encoding.ASCII.GetBytes(DeriveSalt(grains)));
    byte[] nonce = passwordDb2.GetBytes(NonceSize);
    AesManaged symmetricKey = new AesManaged { Mode = CipherMode.ECB, Padding = PaddingMode.None };
    _encryptor = symmetricKey.CreateEncryptor(_nonces[0], null);
    public byte[] Encrypt(byte[] plainText, int blockIndex)
    byte[] nonceEncrypted = new byte[NonceSize];
    byte[] outputData = new byte[_chunkSize];
    _encryptor.TransformBlock(_nonces[blockIndex], 0, NonceSize, nonceEncrypted, 0);
    for (int i = 0; i < _chunkSize; i++)
    outputData[i] = (byte)(plainText[i] ^ nonceEncrypted[i % NonceSize]);
    return outputData;
    public byte[] Decrypt(byte[] encryptedText, int blockIndex)
    byte[] nonceEncrypted = new byte[NonceSize];
    byte[] outputData = new byte[_chunkSize];
    _encryptor.TransformBlock(_nonces[blockIndex], 0, NonceSize, nonceEncrypted, 0);
    int index = 0;
    for (int i = 0; i < _chunkSize; i++, index++)
    if (index == NonceSize)
    index = 0;
    outputData[i] = (byte)(encryptedText[i] ^ nonceEncrypted[index]);
    return outputData;
    Currently i have the below code from what i understood (I am quite new to nodejs)
    var crypto = require("crypto");
    var nonce = crypto.pbkdf2Sync(passphrase, "grains", 1000, NonceSize);
    _encryptor = crypto.createCipheriv('aes-128-ecb', binkey, "");
    _decryptor = crypto.createDecipheriv('aes-128-ecb', binkey, "");
    Encrypt: function (plainText, blockIndex) {
    var nonceEncrypted = [NonceSize];
    var outputData = [_chunkSize];
    var crypted = Buffer.concat([_encryptor.update(plainText), _encryptor.final()]);
    for (var i = 0; i < _chunkSize; i++) {
    outputData[i] =(plainText[i] ^ nonceEncrypted[i % NonceSize]);
    var x = new Buffer(outputData);
    return x;
    Decrypt: function (encryptedText, blockIndex) {
    var nonceEncrypted = [NonceSize];
    var outputData = [_chunkSize];
    var decrypt = Buffer.concat([_decryptor.update(encryptedText), _decryptor.final()]);
    var index = 0;
    for (var i = 0; i < _chunkSize; i++, index++) {
    if (index == NonceSize)
    index = 0;
    outputData[i] = (encryptedText[i] ^ nonceEncrypted[index]);
    var x = new Buffer(outputData);
    return x;

    Maybe, you should post to the Javascript secition of the ASP.NET forum.
    http://forums.asp.net/

  • Requesting help for converting .cwk files

    for use with Windows.
    http://discussions.apple.com/thread.jspa?threadID=2548903
    Can someone help this poor soul who is being sucked into the dark hole that is Windows?

    These FAQ entries are a good starting point for file conversion:
    What tools can I use to convert my video to DV-AVI?
    How can I convert my AVCHD footage to more traditional HDV?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Help for converting edited files

    So I'm trying to get the hang of this program.
    I have a bunch of mpeg files that are edited to the orginal source of 1280x720  otherwise known as "letterbox". The other source is 23.976fps,
    What I would like to do is the following:
    Use the edited clips that I already have:
    Convert them into a format where I can import them back onto adobe premiere elements 10 and edit further
    Keep the same dimensions of 1280x720
    Not lose any of the picture quality
    I have no clue of which video codec or file to convert them to. I would prefer to keep them mpegs.
    Please help me.

    These FAQ entries are a good starting point for file conversion:
    What tools can I use to convert my video to DV-AVI?
    How can I convert my AVCHD footage to more traditional HDV?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Help for Mouse movement triggers

    Hello, All,
    I try to use mouse movement triggers (When_Mounse_Enter, When_mouse_Leave, and Whwn_Mouse_move) at form level (block level and item level) in a form, but all of these trigger do not work. It seems like all of them can not be fired.
    Anyone can help me? Thanks a lot!
    John

    Hi, Surendra and Grant,
    Thank both of you for help!
    I am tring to learn Form Developer. The database and developer suites are installed in one PC. I don't think I am working in web environment.
    Except the Mouse Movement Triggers, other mouse trigger work well, such as when_mouse_click, when_mouse_doubleclick.
    Any help is very much appreciated.
    John

  • As3 - Map/Level help for iPhone + movement

    I'm making an app for an iphone using CS5 and was wondering the best way to make a map or a level. I want it to be continuous until the player dies which will bring it to the end game frame. An example would be NinJump for iPhone. You keep going and going until you die.
    Then my next question.. I feel stupid asking cause i feel like only i have this problem..whenever I do the hitTestPoint check my character goes through the floor in the middle. I tried changing the registration points but when I put it to the bottom for my character it just does swirls... not move so i kind of changed the code around to make it work but probably wont be best for slopes and stuff.
    for (var i:int = 0; i<10; i++) {
    if (floor.hitTestPoint(ball.x,ball.y+18,true)) {
    ball.y-=gv;
    vy=0;
    jumped=false;
    thanks

    Hi, Surendra and Grant,
    Thank both of you for help!
    I am tring to learn Form Developer. The database and developer suites are installed in one PC. I don't think I am working in web environment.
    Except the Mouse Movement Triggers, other mouse trigger work well, such as when_mouse_click, when_mouse_doubleclick.
    Any help is very much appreciated.
    John

  • In the new iTunes you no longer have the 'create iPod version' or 'create Apple TV version,' for converting movies. Will this feature return..?

    After installing the new itunes, I inserted some video files, and wanted to create a version for my iPod classic. Before, I could just click on the video and then select 'create iPod version' from the menu. It would then convert the file. However, this feature no longer exist. Is there another way I can easily convert my files?

    David,
    You've probably sorted kahlia_1's problem too! https://discussions.apple.com/thread/4613451?tstart=0

  • No sound for converted movies

    My Ipad plays movies I bought from Itunes fine, but the ones I have converted dont have any sound. It seems like they worked fine until I updated it. Any suggestions?

    What do you mean by you "updated it" - what, the iPad, the movies?  What did you use to convert your movies to play on the iPad?

  • Help for ----convertion of tab-delimited for download to UNIX

    hi,everyone, I have one question for your kind advice.
    I have managed to find a way to download an tab-delimited file to UNIX.
    which need to define the TAB as hex number.
    I think the tab-delimited should be defined as "23" ,but the outbound is just a
    "#" . and if I changed it to '09', I can get the correct result such as 123&#8594;123
    here, &#8594;is an tab-delimited sign.
    so could you kindly explain the reason,and How can I get the "correct hex number " 09 ?
    hope you  can understand my fuzzy explaination....
    thanks

    dear Atish
    thanks a lot for your kind advice....
    I tried this way and it  works well.
    Though I stilll want to know the reason ...anyone can explain it?
    thanks

  • Fm or method for converting  doc,pdf or text  files to binary format

    Hello,
    Are you aware of any function module or method which takes input as a file of type doc, pdf or text files and convert it to binary format? Kindly let me know.
    This is what i tried and was unsuccessful.
    i tried using gui_upload method and pass " asc" as file type while importing file of type .doc but it returns me string filled with strange characters.
    I did try converting this string to xstring using  cl_proxy_service=>cstring2xstring but i realized my 1st step of uploading file itself was wrong.
    Please let me know what can be done if you are aware of how to convert file of various types to binary.
    thanks
    Pooja

    hi All,
    thanks alot for the information and help provided by all of you.
    I did figure out a way where the word document or pdf  can be pretty much loaded with gui_upload. the file type used in the method would be "BIN" the following thing has to be done. declare data type as given below and file would be the complete path along with document name which has to be uploaded
    DATA: BEGIN OF res_line,
                raw(255) TYPE x,
             END   OF res_line.
      DATA: res_tab LIKE res_line OCCURS 0 WITH HEADER LINE.
    data :  wf_var_stringx TYPE xstring .
      CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename                =  file
            filetype                = 'BIN'
            read_by_line            = 'X'
         has_field_separator     = ' '
         header_length           = 0
         header_line           = 'X'
          IMPORTING
            filelength              = l_filelength
          TABLES
            data_tab                = res_tab
          EXCEPTIONS
           OTHERS                  = 1.
    LOOP AT res_tab .
        CONCATENATE wf_var_stringx res_tab-raw INTO wf_var_stringx IN BYTE MODE.
      ENDLOOP.
    this will upload the file and will file the string x with its content.
    hope this helps to some of you.
    Thanks
    Pooja

Maybe you are looking for