Urgent export help needed

Extremely urgent help needed! I'm on a tight deadline. I'm working on a sequence, with all my settings set to DV. My client needs an AVI file as an output. After exporting using conversion, the file looks and plays fine, except for any transitions. At the start of each transition, there is 1 frame that is unrendered. I have rendered the entire sequence, and tried the export many times now, and I can't figure out what's wrong. I'm working on v5.1.4. Can someone please help?????

Thank you, kind sir! < </div>
Careful who you're callin' names around here, buddy!
Thank you for the kind words, that's why we're here. Hrdly anyone ever closes their threads on a positive note, I thank you for that, too.
Good luck with your future projects and those squeaky deadlines.
bogiesan

Similar Messages

  • Urgent!help needed!!Payment issue!!!

    Last day I updated my credit cart info to make the payment and on the screen comes up a hint as follows:
    I updated the info for 6 times to make sure it is OK.Every time I update I receive a hint from my bank about $1,which in total is about $6 for 6 times.
    And words from the bank said the money for the creative cloud still remain in my account and was not charged.
    later I check with the customer service support and I was told the payment was not successfully.
    And in my transaction record there was no record of October.
    What is exactly the situation????
    Another problem is that can I change my email address?
    My email address which used to register is yahoo china .Yahoo China email has been shut down and I cannot log in any more.
    Urgent help is needed!! Anyone especially customer support from adobe can help me???Thanks you very much!!

    Hi Prasad,
    if you have performance problems with your table because of lots of different controls in it, then maybe you could try instead of that to create two tables, one for display of rows  (only textviews), and the other table for editing only one row (currently selected row). The second (for edit) table can be shown only when you want to add a new row, or edit selected row and it can be hidden when you are finished with editing selected row.
    In that way you can have one big table with only textviews and no events, and one small - one row table for editing with dropdowns, datepickers etc.
    You can put EditTable(the one for editing) above ShowTable (the one in which you display rows as textviews).
    ie.
    EditTable
    ShowTable
    Hope that helps,
    Ladislav

  • Export help needed

    Hi
    I want to export a short film Ive made so it can be viewed on a pc and Quicktime doesn't seem to work. I have only very basic understanding of File formats so I may not have saved the files correctly.
    I have FCP studio and the film was shot in HDV, 16:9. Plays great on FCP. I exported as a quicktime file as HDV and as SD. The files Ive made play on the mac but not a pc and don't play widescreen on either i.e. picture appears squashed.
    Ultimatly id like to be able burn dvd's from the file.
    Any help greatly apreciated.
    Thanks
    Thomas

    If you want to burn a DVD, then choose: file/export/Using Compressor. Select a preset for DVD's there (using a 16:9 setting). Then burn the resulting files with DVD SP to a disk. No need to go through another conversion. In DVD SP, select the track of video in the outline after you've added it to a button, and enable all the User operations in the tab that's seen in the User operations tab. The resulting DVD will play on a PC, a Mac or a DVD player.
    Select 16:9 letterbox in the General Tab of that same stream. It will then fill a 16:9 screen or letterbox on a 4:3 set.
    Jerry

  • Urgent array help needed! come get some duke points

    this program keeps track of rentals for a shop. Other methods and classes not shown (like Customer, Transaction classes) are also in this program. Every item (created with a constructor in Item class) can hold an array of up to 20 transactions; part of a Transaction object is a rental total, based on a number of rental days * specific rental price for that item rented (backhoe, edger, etc.) If the user presses "t" for total amount of transactions, the following method is called, which calls the getTotalPrice() in another class called Item. My problem here is that even if I enter in transaction amounts, when I press "t", the program just quits, not producing the report and returning me to the main class. I have been over it with the debugger and I am still lost. Below is some selected code; I hope it is sufficient. Please let me know if I need to put up more
    //main
    String input = JOptionPane.showInputDialog(null, "Enter a rental transaction (x)" +
                                                      "\nAdd a customer (c)" +
                                                      "\nAdd an item (i)" +
                                                      "\nReport on a specific item (r)" +
                                                      "\nReport on total dollar amounts of rentals for all items (t)" +
                                                      "\nReport on total rentals for a specific customer (s)" +
                                                      "\nStrike cancel to exit from the program");
              //big huge while
              while (input != null){
                   if (input.equals("x")){
                        rentalTrans();
                   }//if
                   if (input.equals("c")){
                        addCustomer();
                   }//if
                   if (input.equals("i")){
                        addItem();
                   }//if
                   if (input.equals("r")){
                        specificItemReport();
                   }//if
                   if (input.equals("t")){
                        allItemReport();
                   }//if
                   if (input.equals("s")){
                        customerReport();
                   }//if
                   input = JOptionPane.showInputDialog(null, "Enter a rental transaction (x)" +
                             "\nAdd a customer (c)" +
                             "\nAdd an item (i)" +
                             "\nReport on a specific item (r)" +
                             "\nReport on total dollar amounts of rentals for all items (t)" +
                             "\nReport on total rentals for a specific customer (s)" +
                             "\nStrike cancel to exit from the program");
    //allItemReport()
    public static void allItemReport(){ //menu item t
              Item temp = null;
              for (int index = 0; index < items.length; index++){
                   temp = items[index];
              }//for
              JOptionPane.showMessageDialog(null, "Total rental transactions to date amount to: $" + temp.getTotalPrice());
    //Item Class
    public String getTotalPrice() {
              double total = 0;
              String output = "";
              for (int i = 0; i < trans.length; i++) {
                   if (trans[i] == null) {
                        if (i == 0) {
                             output = "There are currently no transactions.";
                        }// if
                        break;
                   }// if
                   else{
                   total += getPerDayRentalPrice();
                   }//else
              }// for
              output+= total;
              return output;
         }//getTotalPrice

    Don't flag your questions as urgent. It's rude. Also don't think that waving with a couple of worthless Dukes is going to get you better/quicker help.
    The reason I respond to your question is because you have explained your problem well and used code tags.
    Try this:class Main {
        public static void main (String[] args) {
            String message = "Enter a rental transaction (x)\nAdd a customer (c)" +
                "\nAdd an item (i)\nReport on a specific item (r)\nReport on total "+
                "dollar amounts of rentals for all items (t)\nReport on total rentals"+
                " for a specific customer (s)\nStrike cancel to exit from the program";
            String input = JOptionPane.showInputDialog(null, message);
            while(input != null){
                if (input.equals("x")) rentalTrans();
                else if (input.equals("c")) addCustomer();
                else if (input.equals("i")) addItem();
                else if (input.equals("r")) specificItemReport();
                else if (input.equals("t")) allItemReport();
                else if (input.equals("s")) customerReport();
                else System.out.println("Invalid option!");
                input = JOptionPane.showInputDialog(null, message);
            System.out.println("Bye!");
        // the rest of your methods ...
    }

  • URGENT dreamweaver help needed

    I need some urgent help please any experts here. I have 2
    html pages. One is my index and one is my home. The index has an
    image with a ENTER link which when clicked takes them to another
    html which has my flash file in it. The problem I have is when
    someone clicks enter the home page opens in big window and my flash
    pice is stuck on one side. It is 766 by 662 and I want when someone
    clicks enter that the home page open in a smaller window around 776
    by 662 in size and in center of screen so it looks better. Also
    would be nice when someone type web address the index page also
    opens in smaller size. Please can someone tell me in as easy to
    understand terms how to to this. Thanks and hope someone is able to
    help

    Who are you to make my browser fit your site? Wouldn't it be
    much more
    professionaly to make your site so skillfully that it fits
    any browser?
    Besides, once you change my browser from the way I like it,
    you do not
    change it back - that's rude in anyone's book....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "liquidsuite78" <[email protected]> wrote in
    message
    news:ehofhq$b15$[email protected]..
    > Thanks for advice but I disagree with you. Who are you
    to say how people
    > will
    > see my site when I am the that knows how it looks and
    its surely my choice
    > how
    > I project my website. All i asked was for how to do
    something. I know
    > that my
    > site like 100s of other flash sites I have seen all open
    within their own
    > re
    > sized html specially when the flash piece is smaller
    then average website.
    > I
    > think mine works better within a box as the way the
    effects and text
    > animate.
    > I tried with big space around and it just does not work
    in the creative
    > way I
    > wanted it too. I think without seeing it you can not
    judge it. Anyway I
    > guess
    > answer to my post is you dont know how to do this.
    Thanks for your help I
    > might
    > just end up doing big space cause no option so thanks
    for this also.
    >

  • Exporting help needed!!!

    Hi. I am trying to export a video from FCP 5.1.3. It's roughly 4 minutes (720x480, 29.97fps), and I need an uncompressed quicktime. I have tried several times to export, but it usually quits about 75% of the way through. Can someone please advise me as to the best settings for this. Thanks.
    Charles
    MacBook Pro 15", 2.0   Mac OS X (10.4.7)  

    I have tried many ways. I am exporting to a Lacie 160GB external drive via USB2, and there are about 30GB available. So, here's what I've attempted thus far:
    - Export as a QT Movie: Settings - uncompressed 8bit NTSC, including Vid & Audio, make self contained. I have also tried setting the compressor to None. After about 25 minutes (about 75%), FCP just terminated.
    - Export Using Compressor:
    Settings - default Quicktime
    Inspector - Settings - Compressor = None
    Depth = Best, Millions of Colors +
    This resulted in a "Failed QT error 27"
    - Export Using QT Conversion
    Settings - Compressor = None
    Depth = Best, Millions of Colors +
    I have also tried using Uncompressed 8 bit, and 10 bit, but with all three I get "File Error: Unknown File".
    During one of my many attempts in the wee hours of the morning (I can't remember which one exactly) the export got to about 75% again, when it terminated and the dialogue box said that the file was too big. Would this mean that the file is too big for my destination drive, or does FCP have a file export size limit? Any help would be greatly appreciated. This is something I have to have done today, and my client requested uncompressed. The source files are all animations that I have imported into FCP, and they need to be absolute best quality going back to him. Thanks.
    Charles
    MacBook Pro 15", 2.0   Mac OS X (10.4.7)  

  • FCP exporting help needed

    Hi. I have also posted this question in the Final Cut forum, but thought I would try here as well. I am trying to export a video from FCP 5.1.3. It's roughly 4 mins in length, 720x480, and my client needs it as an uncompressed QT. The source footage is all animations that he supplied me with on a drive. After many long hours and many attempts, I am unable to export an uncompressed QT, so I think I'm doing something wrong. Here is a summary of my orignal posts on the FCP forum:
    Hi. I am trying to export a video from FCP 5.1.3. It's roughly 4 minutes (720x480, 29.97fps), and I need an uncompressed quicktime. I have tried several times to export, but it usually quits about 75% of the way through.
    I have tried many ways. I am exporting to a Lacie 160GB external drive via USB2, and there are about 30GB available. So, here's what I've attempted thus far:
    - Export as a QT Movie: Settings - uncompressed 8bit NTSC, including Vid & Audio, make self contained. I have also tried setting the compressor to None. After about 25 minutes (about 75%), FCP just terminated.
    - Export Using Compressor:
    Settings - default Quicktime
    Inspector - Settings - Compressor = None
    Depth = Best, Millions of Colors +
    This resulted in a "Failed QT error 27"
    - Export Using QT Conversion
    Settings - Compressor = None
    Depth = Best, Millions of Colors +
    I have also tried using Uncompressed 8 bit, and 10 bit, but with all three I get "File Error: Unknown File".
    During one of my many attempts in the wee hours of the morning (I can't remember which one exactly) the export got to about 75% again, when it terminated and the dialogue box said that the file was too big. Would this mean that the file is too big for my destination drive, or does FCP have a file export size limit? Any help would be greatly appreciated. This is something I have to have done today, and my client requested uncompressed. The source files are all animations that I have imported into FCP, and they need to be absolute best quality going back to him.
    Any help would be greatly appreciated. Thanks.
    Charles

    It sounds to me like you're trying to make the file too big. You do not need to export a 10bit Uncompressed file for 720x480 MinDV footage. Check with your client and ask how big he needs the video. If your native 720x480 is fine, then just export QuickTime Movie using Current Settings and check the Make This Movie Self Contained box.
    That will be an uncompressed QT version of your film in the DV format.
    Hope that helps. It should only take it a couple of minutes.
    ~Luke

  • Urgent Form Help Needed

    I am trying to fill out a pdf form created by the Government of Canada and when I enter text in to the one of the text fields it does not keep the text there the text field merges with the box above.  The form is available here: http://www.international.gc.ca/development-developpement/assets/pdfs/partners-partenaires/ calls-appels/iyip-psij-form-2014-eng.pdf . The fields I am having the problem with is 1.1 Internship Details which when I put in the answer (1200 words) it half merges with the text box above 1.0 Rationale for Initiative.
    I have downloaded a number of versions of the file (on a number of pcs) and they all have the same problem. There are problems downloading the form in Chrome and some of the other web browsers but the newest version of IE works.  I need to know if I am doing something wrong or if there is a problem with the form itself. I'm using Adobe Reader XI to fill the form and it was created using LiveCycle Forms 9.0. The creator of the form is highly unlikely to offer any assistance unless I can prove the problem is on their end. This is an RFP due tomorrow and my job kinda depends on it. HELP!

    Hi Erin,
    I've downloaded the form and tried to fill it in myself. I'm able to paste in 700 words (just under 4000 characters) without issue, but anything above that produces the error that you describe. So, it seems to me that the form designer may have imposed a limit on how many characters can be entered into that form field.
    I hope that helps....
    Best,
    Sara

  • Urgent Report help needed

    Hi Guru's,
                     I have a query which gives amount of calls for every month.But my requirement is i need to calculate current month calls/lastmonth calls *100.I need suggestion on how to get the last month calls
    for example
                          05.2008                                                  06.2008
    Sevrity        Amount of calls                         Severity   Amount of calls
        2                  500                                         2                  400
    I am able to see in the query like this.But How can i calulate the last month calls to show in my formulae
    Please help,
    Regards
    Srikanth
    Points will be assigned

    Hi Srikant
    Create two structures in key figure side in query.
    one for current month call & second for previous month call then creat a formula as (current month call/previous month call)*100. It will do
    Now if your problem is how to create a key figure for previous month then:
    -> create new structure
    -> Select the desired key figure
    -> take month characteristics & go to its restriction
    -> take Month Characteristics as value range between from month to month
    -> Now drag it into selection panel, then select it & "off set variable" as (month -1)-(month)
    if month characteristics is not there then you can do the same thing with calender day
    -> as for previous month "off set variable" as(calendar day-60)-(calendar day-30)
    -> for current month "off set variable" as(calendar day-30)-(calendar day-1)
    you will get the things done
    Cheers
    Shailesh

  • FCP to DVD Studio Pro exporting help needed - desperatey......

    Hi.
    Please help me if you can.
    I am exporting a Quicktime movie from FCP for DVD Studio Pro 4. I chose the MPEG 4 option in the compression, make it best quality and bounce it. But when I look at the self-contained mov file, every time a person walks across the screen I am getting little lines on the light parts of the screen or a beating or sizzling effect in the dark parts. Basically it looks like everything is "alive" somewhat - objects like curtains seem to sizzle.
    Can someone guide me in the proper choices to make when exporting from FCP to import into DVD Studio Pro? There is not an MPEG-2 or M2V option, and the MPEG compression breaks it down to MPEG-2 or M2v upon import into DVD Studio Pro anyway.
    I guess I don't know how to get the best quality bounce from FCP, in order to have a file that is less that 4G in size. Can someone please advise?
    There are no directions on exporting FOR DVD Studio Pro in the Final Cut books, nor was there a FCP prep covered in the DVD SP books.

    Quick workflow from FCP -> DVDSP:
    In FCP, File Export QuickTime Movie
    Select DVD Studio Pro Markers in the Markers drop-down (leave other settings as is)
    Save QT Movie to your preferred location
    In DVDSP, import your newly-created QT Movie
    (You may want to confirm your encoding settings - both in terms of bit rate and whether
    you're encoding on build or have background coding enabled - prior to this step though)
    Best Quality workflow:
    In FCP, trash the render files for your sequence
    From the Menu, File Export Using Compressor
    Now, in Compressor, select the appropriate preset(s): DVD: Best Quality 90 Minutes - 4:3
    Optional: Delete the AIFF setting completely
    Select the appropriate destination(s)
    Optional: For the Dolby preset, alter Dialog Normalization (under the Audio tab of the Inspector) to -31. In the Preprocessing tab, alter the Compression Preset to None
    Click Submit
    Once the encode is done, import the .m2v and .ac3 (and/or .aiff) files into DVDSP
    It's only fair to tell you that since this produces (pretty much) the best possible quality from Compressor, it may take as much as 5x-10x as long as the 'quick workflow' detailed earlier. (Especially if you've set DVDSP to do a one-pass encode)

  • Urgent Flash help needed; Using Movie Clip Objects

    Hello,
    I am currently trying to design a small flash movie.
    I have a "Movie Clip" object (a short animation) that i wish to act like a static object until a certain frame on the main Timeline.
    Then i want it to play out, at it's own pace, just like normal, until it finishes (no looping)...
    What do i need to put into, and where do i put it?
    So in short, frame 30 of the main animation triggers the clip, whilst the main animation still runs...
    I know very, very minimal AS3... so please, can someone help me?
    A lot of solutions suggest a button, but I don't want to use a button, as it's not interactive - just a movie.
    i just want the damn movie clip to play in the damn movie when it reaches frame 30! it shouldn't be that hard..

    There is most likely no need for any code. And most likely no need for a movieclip even.
    It sounds like you would need a graphic symbol. (You can convert it in the library or you can just change the instance you have placed on stage.)
    First select the symbol on its first keyframe and on the properties panel select the looping options and tell it single frame, first 1.
    Then move along your timeline to where you want the animation to start playing. Add a keyframe. Now select Once, first 1.
    Now it will start playing, you will be able to see it play as you scrub the timeline.
    If you use movieclips and code for this, you won't be able to see them play together as you scrub the timeline.

  • Urgent webcam help needed please

    i didnt know where else to put this post. Anyway i just got a logitech fusion webcam which they sell on the apple store. i plugged it in and set it up. whenever i speak to anyone on skype(its the only one i use). they always say that around every 20 seconds they get a noise their end that sounds like wind noise. ive opened up the sound box in preferences and can see it happening form the noise indicator. but dont know what it is or how to stop it.. any ideas i really need help.. thanks in advance. the webcam by the way has a built in mic and i have the output coming through my speakers. ive also moved the speakers away from the webcam in case of interference but no joy.. please help..

    Hi-
    Checking the Skype forums reveals a concensus that the problem is most likely within the Skype software.
    http://forum.skype.com/index.php?s=6b9ae6327268168f5c1291d17df06400&showforum=15
    Some suggest disabling the mic, and using a seperate mic. This is because some believe the hardware combo (camera/mic) over USB is the problem. Others suggest using the macam driver. Others still, claim there was no noise before 2.5. There are even problems with the Windows version, apparently.
    A new Skype for Mac beta was released today- 2.7. You can download it from the following link:
    http://forum.skype.com/index.php?act=announce&f=15&id=38
    Would be adviseable to report the current bug to Skype. Include all system details, software and OS versions. The more people that report the problem, the sooner a fix will come about.

  • URGENT MAIL HELP NEEDED!

    Leopard has seriously screwed with Mail.
    Somehow while trying to make my .mac emails only appear in Mail and not on the server my .mac account has become Read Only. I can't move mails, delete mails, mark them as read. I can send and receive but nothing else. Mail worked exactly as I wanted it for many years and now it's completely shot.
    So, 2 things to resolve....
    Firstly, I need to make my .mac account not read only. The error box says the following but I can't find what it's on about
    The account path /Users/Ant/Library/Mail/Mac-ant.carr is not writable. Please change the Account Directory field in the Account Options tab to a writable directory
    Secondly, I just want my sent emails to live in the sent email box and not on the server!
    Hope someone can help!

    If this helps anyone.
    I installed Thunderbird and my .mac account works fine.
    So,
    I backed up and copied my pref file. App Zapped Mail and re-installed it. Without putting my pref file back in, the .mac account was still read only.
    Anyone...?

  • Urgent Subnetting help needed

    Hi All,
    Could anyone be kind to help with the first six subnets of the following address 172.23.0.0/27 WITHOUT inclusion of subnet zero and please explain to help my understanding.
    Regards
    Newnetman

    27 bits are on
    11111111.11111111.11111111.11100000
    5 bits are variable
    2^5 = 32
    You need a subnet ID and a broadcast address on each subnet, so starting with the first subnet.
    172.23.0.0 [subnet ID]
    172.23.0.1-30 [IP for Host]
    172.23.0.31 [broadcast for that subnet]
    172.23.0.32 [subnet ID]
    172.23.0.33-62 [IP for Host]
    172.23.0.63 [broadcast for that subnet]
    172.23.0.64 [subnet ID]
    172.23.0.65-94 [IP for Host]
    172.23.0.95 [broadcast for that subnet]
    And I will let you do the last 3. The logic is adding 32 to the subnet ID and broadcast address, whatever you have in between those 2 values, they are your IPs for the hosts.
    HTH,

  • Urgent CSS Help Needed

    Hi guys, I need some serious help, I am making a website for
    University and am struggling to center the website so that it stays
    centered on different resolutions and when the window is made
    smaller. My lecturer gave me the code which is apparently this -
    body {
    margin:50px 0px; padding:0px;
    text-align:center;
    #Content {
    width:500px;
    margin:0px auto;
    text-align:left;
    padding:15px;
    border:1px dashed #333;
    background-color:#eee;
    but I have no idea what to do with this stuff in order to
    correctly implement it, the attached code is an example of one of
    the pages I want centering, could someone either give me a step by
    step walkthrough of what to do? or could they show me directly
    where the code goes in the attached stuff.
    Thanks in advance

    try this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Simons Self Portrait Bio</title>
    <style type="text/css">
    <!--
    body {
    margin:50px 0px; padding:0px;
    text-align:center;
    #Content {
    width:500px;
    margin:0px auto;
    text-align:left;
    padding:15px;
    border:1px dashed #333;
    background-color:#eee;
    position:relative;
    #apDiv1 {
    position:absolute;
    left:0px;
    top:1px;
    width:135px;
    height:183px;
    z-index:1;
    #apDiv2 {
    position:absolute;
    left:76px;
    top:119px;
    width:383px;
    height:226px;
    z-index:2;
    -->
    </style>
    </head>
    <body>
    <div id="Content">
    <div id="apDiv1"><img src="Images/xboxbio.jpg"
    width="700" height="500" border="0" usemap="#Map" />
    <map name="Map" id="Map"><area shape="rect"
    coords="12,456,122,492" href="xbox.html" />
    </map></div>
    <div id="apDiv2">
    <iframe src="bioframe.html"
    width="383" height="200"
    align="right" marginheight="0" marginwidth="0">
    </iframe>
    </div>
    </div>
    </body>
    </html>

Maybe you are looking for