Pls help - Film is too red on DVD by Encore CS5.1

Hello,
Please i need some help asap. I dont know what i am doing wrong, but i just used Encore CS5.1 to burn my new film on DVD and it the color has nothing to do with the original.
My DVD player is showing me a very red film. I am using the same film on youtube and it look fine, exactely how it should be.
I am very new to editing and this is the second time Encore is giving the red-ish look to my film.
Please help asap.
Also, could you please point me to a good and simple tutorial about using Encore for DVD.
Many thanks.

First, provide the DETAILS about what you are doing... what are your source files and what are your Encore settings, for a start
Post screen shots of your Encore settings so people may see what you are doing
CS5 User Guides - online and PDF (right click PDF link to save PDF to your hard drive)
http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for-creative-suite-5-pdf -and-html.html
Here Tutorials
http://forums.adobe.com/thread/913334
http://forums.adobe.com/thread/845731
-and http://forums.adobe.com/message/3234794
Encore http://tv.adobe.com/show/learn-encore-cs4/
A "crash course" http://forums.adobe.com/thread/761834
A Video Primer for Premiere http://forums.adobe.com/thread/498251
Premiere Tutorials http://forums.adobe.com/thread/424009
CS5 Premiere Pro Tutorials http://forums.adobe.com/message/2738611
And http://blogs.adobe.com/premiereprotraining/2010/06/video_tutorials_didacticiels_t.html
And http://blogs.adobe.com/premiereprotraining/2010/06/how_to_search_for_premiere_pro.html
CS5 Tutorials http://bellunevideo.com/tutlist.php
PPro Wiki http://premierepro.wikia.com/wiki/Adobe_Premiere_Pro_Wiki
Tutorial http://www.tutorialized.com/tutorials/Premiere/1
Tutorial http://www.dvxuser.com/V6/forumdisplay.php?f=21
Tutorial HD to SD w/CS4 http://bellunevideo.com/tutorials/CS4_HD2SD/CS4_HD2SD.html
Premiere Pro Wiki http://premierepro.wikia.com/wiki/Main_Page
Exporting to DVD http://help.adobe.com/en_US/premierepro/cs/using/WS3E252E59-6BE5-4668-A12E-4ED0348C3FDBa.h tml
And http://help.adobe.com/en_US/premierepro/cs/using/WSCDE15B03-1236-483f-BBD4-263E77B445B9.ht ml
Color correction http://forums.adobe.com/thread/892861
Photo Scaling for Video http://forums.adobe.com/thread/450798
-Too Large = Crash http://forums.adobe.com/thread/879967
After Effects Tutorials http://www.videocopilot.net/
Authoring http://www.videocopilot.net/tutorials/dvd_authoring/
Encore Tutorial http://www.precomposed.com/blog/2009/05/encore-tutorial/
And more Encore http://library.creativecow.net/articles/devis_andrew/
Surround Sound http://forums.adobe.com/thread/517372

Similar Messages

  • Pls help for Exception "Too Few Parameters : Expected 35"

    Hi,
    I am expericing with the exception
    "Too Few Parameters : Expected 35".
    What's wrong with it? The following is my code.
    try {                                                                                                                                                                                                                
    String DRIVER = ("sun.jdbc.odbc.JdbcOdbcDriver");               
    String URL = "jdbc:odbc:Industrial_One_DSN";
    String sql = "UPDATE BusinessRegistration " +
    "SET [Date] = ?, ISIC = ?, BizName = ?, BizAddress = ?, " +
    "OwnerName = ?, OwnerNRC = ?, Investment = ?, EstablishedYear = ?, " +
    "L_Male = ?, L_Female = ?, F_Male = ?, F_Female = ?, " +
    "OwnershipType = ?, Remarks = ?, IndustialZoneName = ?, Unit = ?, " +
    "Fuel = ?, FactoryType = ?, FactoryName = ?, Township = ? " +
    "MainProductName = ?, MainProductCountType = ?, " +
    "MainProductQuantity = ?, MainProductValue = ?, RMName = ?, " +
    "RMCountType = ?, RMQuantity = ?, RMValue = ?, EnergyName = ?, " +
    "MachinePower = ?, AmountGallon = ?, StateDiv = ?, BizSize = ?  " +
    "WHERE RegistrationID = ?";
    Class.forName(DRIVER);
    Connection con = DriverManager.getConnection(URL);
    PreparedStatement pstmt = con.prepareStatement(sql);
    int ilmale = Integer.parseInt(lmale);
    int ilfemale = Integer.parseInt(lfemale);
    int ifmale = Integer.parseInt(fmale);
    int iffemale = Integer.parseInt(ffemale);
    int impq = Integer.parseInt(mpq);
    int impv = Integer.parseInt(mpv);
    int irmq = Integer.parseInt(rmq);
    int irmv = Integer.parseInt(rmv);
    int iamountgallon = Integer.parseInt(amountgallon);
    pstmt.setString(1, date);
    pstmt.setString(2, isic);
    pstmt.setString(3, bizname);
    pstmt.setString(4, bizaddress);
    pstmt.setString(5, ownername);
    pstmt.setString(6, ownernrc);
    pstmt.setString(7, investment);
    pstmt.setString(8, eyear);
    pstmt.setInt(9, ilmale);
    pstmt.setInt(10, ilfemale);
    pstmt.setInt(11, ifmale);
    pstmt.setInt(12, iffemale);
    pstmt.setString(13, ownershiptype);
    pstmt.setString(14, remark);
    pstmt.setString(15, izn);
    pstmt.setString(16, unit);
    pstmt.setString(17, fuel);
    pstmt.setString(18, ft);
    pstmt.setString(19, fname);
    pstmt.setString(20, township);
    pstmt.setString(21, mpn);
    pstmt.setString(22, mpct);
    pstmt.setInt(23, impq);               
    pstmt.setInt(24, impv);
    pstmt.setString(25, rmname);
    pstmt.setString(26, rmct);
    pstmt.setInt(27, irmq);
    pstmt.setInt(28, irmv);
    pstmt.setString(29, ename);
    pstmt.setString(30, mpower);
    pstmt.setInt(31, iamountgallon);
    pstmt.setString(32, statediv);
    pstmt.setString(33, bizsize);
    pstmt.setInt(34, Integer.parseInt(rid));
    pstmt.executeUpdate();
    }I have got 35 fields in my db. But I wanna edit 34 fields only. I have no primary key in my table. Is't alright?
    pls help me.
    With thanks,
    WTDAHL

    I presume you are using SQL server, hence the [Date] in your SQL?
    I counted 34 question marks in your SQL statement, And 34 parameters supplied.
    Looks ok to me.
    You say you have no primary key? What is RegistrationId then?
    My suggestion for debugging: start smaller.
    Try updating it with only 5 fields, then 10 then 15 and build it up like that.
    Trying to debug 35 fields is a nightmare - you have to break it down to solve it.
    Good luck,
    evnafets

  • Help, I get this error code when installing encore cs5 from master collection Exit Code: 6.

    Hello all,
    I have been having a problem installing encore cs5 into my Dell xps studio 8100.  the machine is literally three days old and aside from the os, there's nothing else installed in it.
    I was able to run the installation for CS5 without any issues until it got to encore.  everything else installed without an issue but it refuses to install encore.  I have installed the same master collection on another machine, a little older than the new dell, and it installed flawlessly.  But on the new machine, no dice.
    I have posted below the error msg logs i received from the install.  Any help would be much appreciated please.
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 3 error(s), 8 warning(s)
    WARNING: OS requirements not met for {33A3F995-8333-4676-8D6F-AB7674BB52EA}
    WARNING: OS requirements not met for {565DE707-5798-4FC3-8DF6-0F58A348A9B0}
    WARNING: OS requirements not met for {5DDABB74-A879-4BE7-A4C6-FD41793942DB}
    WARNING: OS requirements not met for {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    WARNING: OS requirements not met for {7816FDDE-40D4-482D-AD7D-97858985DB3E}
    WARNING: OS requirements not met for {AAE6F374-91CB-45FB-9282-4CFA0DED2088}
    WARNING: OS requirements not met for {B8D286BC-A68D-4E74-9F68-8756A49896D8}
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe Encore CS5_AdobeEncore5en_USLanguagePack: Install failed
    ERROR:  - Adobe Encore CS5: Failed due to Language Pack installation failure
    FATAL ERROR: Cannot create extract assets at 'C:\Program Files (x86)\Common Files\Adobe\Installers\adobeTemp\{D8465547-5D5B-4856-A93A-8AC0A05C5D4D}' from zip file 'D:\Adobe CS5\payloads\AdobeEncore5AllRetail\Assets1_1.zip'. Error 23 Data error (cyclic redundancy check).

    Hmm... My CS5/AVCHD 1st Impressions http://forums.adobe.com/thread/652694?tstart=0 includes a link to the computer I built
    My CS5 install went with no problems at all, so I'm pretty much out of ideas, other than a note I saved
    Install Checklist http://forums.adobe.com/thread/569663?tstart=0

  • Adobe Encore CS5.1 producing DVDs with flickering video

    Hey all, new to the forums but been using Adobe software for a couple of years now.
    I've got Encore CS5.1 as part of the Adobe Master Collection CS5.5, and recently I've been using it to burn DVD videos.
    I made a video in Adobe Premiere Pro CS5.5 a few weeks ago and rendered it as an mp4 file in h.264 HDTV 24fps (video recorded with my Nikon D3200 D-SLR). I then imported the mp4 file into Encore as an asset (I didn't use Dynamic Link to insert the prproj file into Encore) and burned it onto a 4.7GB DVD (no menus or anything, just a simple DVD) and it looked absolutely fine on both my PC and on the TV and the recipient of the DVD was very happy with the result. The video was 28 minutes long and 6.2GB in size.
    Recently I have been making more videos in Premiere Pro CS5.5 and attempting to burn them onto DVDs using Encore CS5.1, but I've not been having so much luck.
    Whenever I create a DVD with Encore, the video playback is always a bit 'flickery' no matter how I import the video into Encore (have tried using both Dynamic Link and importing the mp4 file as an asset - both result in the same problem). The video playback results in flickering lines and it's really distracting. Again, I am rendering in mp4 h.264 HDTV 24fps and burning onto 4.7GB DVDs. If I watch the video in Encore on the Monitor, it also looks a bit flickery with lines showing. The video I am trying to burn onto a DVD is 25 minutes long and 4GB (but Encore transcodes it so it's just over 1GB in size I think).
    I am also trying to burn another video onto a DVD which again is rendered in h.264 but is 48 minutes and 11GB in size (Encore transcodes it so it's about 2.5GB) and the same thing happens: flickery lines which is really distracting.
    I did briefly have a trial version of CS6 installed and I rendered the video again in Premiere Pro CS6 and tried burning to a DVD using Encore CS6, but still got the same results. I don't have CS6 now, I installed it purely to see if CS5.5 was the problem.
    I don't understand why the first video I burned to DVD using Encore was perfect and now it seems to be giving me flickery video once it's burned to a DVD whenever I use it.
    I have updated it to version 5.1.0.342 which at the time of writing is the latesrt version of CS5.1.
    If anybody out there could help me that would be great, thanks!

    Still flickering on Encore even when rendered in MPEG-2 DVD in Pemiere Pro CS5.5. Looks perfect in Premiere Pro.
    Any other ideas?
    EDIT: Was looking for Google for people with similar problems to me and I came across this http://forums.adobe.com/message/3959757?tstart=0
    I am currently re-rendering the video in PAL DV Widescreen MPEG-2 DVD and using maximum render quality.

  • Encore CS5 slideshow transitions not rendering reliably to DVD

    I'm trying to create a relatively simple slideshow DVD in Encore CS5 on Mac (10.6).  The slideshow is about 35 images long, and most of the transitions are cross-dissolves.  However, there are exceptions: a couple of the transitions have no effect (ie, snap from one slide to the next).  All of the slides but one are manual advance.
    The problem I'm having is that the cross-dissolve time (most are set to 3 seconds, vs. the default 2) seems to render as a variable length: hit the "next chapter" button on the DVD control, and the transition time might be the requested 3 seconds, but is occasionally zero seconds, or 1 second, or 2 seconds.  I haven't been able to find the rhyme or sense behind this, although I haven't devoted much time to studying it either.  The settings on each slide appear to be set correctly (ie, transition type set to "Cross-dissolve" and transition time set to 0:00:03:00) in the project.
    An additional complication comes from the one autofollow slide in the show: it automatically advances as expected, but at the next manual transition, it cross-dissolves, appears to pop back to the image, then does the cross-dissolve again, finally ending up in the correct slide.
    Due to project deadlines, I've given up trying to make this work in Encore and moved to a different product, but I'd appreciate any feedback on how to do this all correctly next time.

    Many users have problems with Encore slideshows. The major advantage is the manual advance. I don't use them, so have little to offer.
    The settings on each slide appear to be set correctly (ie, transition type set to "Cross-dissolve" and transition time set to 0:00:03:00) in the project.
    I worry that your "set x:xx IN THE PROJECT" means that you have not checked each slide duration. It is possible to have a project setting, but for individual slides to have been set to something else.

  • Mac DVD Superdrive not recognized in Encore CS5

    I'm trying to burn a DVD using Encore CS5 on my new Mac Pro.  I already spoke with Apple to troubleshoot to see if it was the drive.  It was not the drive.  Therefore, there is a problem with Encore not recognizing the drive.  In the destination window in Encore, where it says "Recorder" in the build tab, it says "None Found".  Anyone know what the problem is?

    Well, in the WINDOWS world some software will cause Encore to not be able to "see" a drive, so read the links below... I don't know if the same kind of thing happens in the MAC world
    Things and Software to AVOID when authoring/burning a DVD
    Start --> http://forums.adobe.com/thread/608660?tstart=0
    #2 here has WHY Explained http://forums.adobe.com/thread/607390
    Plus http://forums.adobe.com/thread/562941?tstart=0
    Again in the Windows world, if the user can't or won't remove the offending software for some reason, the solution is to have Encore build the project to hard disk (folder or create an ISO) and then use 3rd party software to burn the folder or ISO to DVD
    Added
    In fact, just go ahead and tell Encore to write the project to your hard drive and then use other software to write that output to a DVD... if that works, you know that "something" is getting in the way of Encore being able to communicate with your drive

  • I reinstalled my computer because it was too slow, and Safary icon has a ? question mark on it in the dock, i  pulled it out with the hope that  i can bring it back from the application, but the icon could not be found in the application. Pls help me.

    Could you pls help me? i reinstalled my computer and the Safari Icon has a ? mark on it in the dock, I pulled it out and it disappeared, I checked for this icon in the application folder but couldnt find it there.  So for me to go on Internet i have to open Firefox first. 2. The message Java Plug in has been disable appeared immediatle after the reinstallation. I need help from the community pls.

    Welcome to the Apple Support Communities
    I think that your Mac detects your hard disk, but the problem is that your new hard disk doesn't contain any operating system, so your Mac doesn't find any bootable partition and you see a question mark.
    If your Mac came with DVDs, insert the Mac OS X Install DVD and hold the C key while your Mac is starting. Then, just install Mac OS X. If the hard disk isn't prepared to install Mac OS X, you will have to erase it using "Mac OS Extended (Journaled)". See > http://pondini.org/OSX/DU1.html

  • HT1212 i forgot my password then its block when, i restore to technician of cellphone there's appear to to insert  my apple.id but i forgot it too what can i do to restore my i phone pls help me

    i forgot my password then its block when, i restore to technician of cellphone there's appear to to insert  my apple.id but i forgot it too what can i do to restore my i phone pls help me

    https://iforgot.apple.com/password/verify/appleid

  • I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me

    I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me ..

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Hi, i have macbook A1181 and i lost my install DVD os, i need to buy, im here in philippines, manila, pls help me how can i get the DVD. tnx

    hi, i have macbook A1181 and i lost my install DVD os, i need to buy, im here in philippines, manila, pls help me how can i get the DVD. tnx

    Ask the store for a local Macintosh Users Group / Club... maybe someone there can help you. You might check pawn shops in the area for a machine that has a full set of disks. Apple will sell/mail you a set. I don't know of anyplace to legitimately download them... For what its worth any commercial (e.g. full retail version) install of OS X on disk should work for your machine.

  • I downloaded my software update yesterday but until now i was not able to open my iphone it keeps on blinking and the battery is too low even i kep on charging on it...it will just light up with the apple logo...pls pls help me what should i do with thank

    pls  help.... with my problem with my iphone

    The phone randomly shutting down-that could be a hardware issue. Do you live near an apple store? they could see whats up with the phone. It could very well be something in the software though. A good way to test it would be to follow this article:  http://support.apple.com/kb/HT4137  and test it for a few days. If it doesn't do the shutting down thing, you know it's a software issue. If it still does it, you know it's a hardware issue.
    As far as deleting the apps, they'll always be there. Just make sure there's not a check mark next to them and they won't sync to your phone =]

  • I using iPod touch (4th Gen) one year plus, from iOS 5 upgrade to iOS 6.1.3 sometime facing the late problem. But after all the application update support iOS 7, now my iPod touch become like snail. too late and application always force close. pls help...

    Who can help me ? Any solution...... pls help
    I'm very like the iPod Touch, small and easier to carry.

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • I have purchased the whatsapps via credit card today at USD0.99 but it does not apprear in my iphone 5 yet. Pls help!

    It's not in my purchased item list too~! Pls help~! Thanks

    Disconnect your devices then reboot your computer.
    Before connecting your devices again reboot your devices. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Pls help me.. unable to get past mac login sreen!!

    Hello people, This is my first post and after much searching i am praying someone can help..!
    I have a mac g5 dual, and i am having a really annoying problem, my mac keyboard is not working, sometimes some of the keys work but others dont, or none of the keys work, or when i press a button it types a different letter or types 2 or 3 at once!!
    Therefore i can not get past the login screen as the keys needed for thre password do not work!! not even when i try to log into admin!!
    I have purchased a new keyboard today, (wireless apple) but i can not get that to work as i need to pair it to the mac before it will work but i cant pair without getting past the login screen!!!
    typical that this should happen on my only couple of days off too!!
    pls HELP ME
    thanks in advance..

    Yeah, I tried every port available.
    Is there anyway at all i can get into the system settings with a shortcut on startup?
    Then again Im still not sure that the keys will work to use a shortcut.
    Its odd because i managed (just) to login earlier in the day, but the keyboard just seemed to get steadily worse until none of the keys worked!!
    Cheers Dale
    any other ideas??

  • Java Web Start- Cannot launch Application. Pls help

    HI
    Ia m beginner in java web start. I creaate a simple swing application and try to launch it through web start. But I failed. My application jar file (sample.jar)contains only class files. No menifest file. Then I sign my "sample.jar" file and placed inside tomcat server: "webapps/root/WebStart/Sample". I also placed the "sample.jnlp" file in the above directory.The name of my main class is :"Sample" .Here is the content of sample.jnlp:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+"
      codebase="http://165.231199.164:8080"
    >
    <information>
      <title>Sample Launching Test</title>
      <vendor>FMO</vendor> 
      <homepage href="www.sun.com" />
      <description>Demonstration of JNLP</description>
    </information>
    <offline-allowed/>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version="1.2+" />
      <jar href="/WebStart/Sample/sample.jar"/>
    </resources>
    <application-desc main-class="Sample" />
    </jnlp>Whenever I try to launch this application from the browser , it shows me following :
    An error occurred while launching/running the application.
    Title: Sample Launching Test
    Vendor: FMO
    Category: Unexpected Error
    RED
    Anybody pls help me here about how to Launch my application. Am I missing something?

    I fixed the porblem by modifying the sample.jnlp file. Here is the latest version:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase=http://[my-ip-address]:8080/WebStart/Sample>
    <href="sample.jnlp">
    <information>
      <title>Sample Launching Test</title>
      <vendor>FMO</vendor> 
      <homepage href="www.sun.com" />
      <description>Demonstration of JNLP</description>
      <offline-allowed/>
    </information>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version=1.4+ />
      <jar href="sample.jar"/>
    </resources>
    <application-desc main-class="Sample" />
    </jnlp>

Maybe you are looking for

  • Itunes keeps closing itself

    It sais it has encountered an error and needs to be closed everytime I have it running and are attemtping to sync and edit music files

  • Using organizer in Premiere Elements

    When I try to create a DVD of my slideshow while in PE8, I get a message that I need to download Premiere Elements. I have Premiere elements on my computer already. If I try to open the organizer while in Premier Elements, nothing happens. It seems a

  • How can I take off this malware?

    My mac is running really slow, I have a malware and I don't know how to take it off, and my skype has not been working, will upgrading to Lion Help??

  • Using OHS to redirect or rewrite using wildcards..

    Ok, so I'm trying to configure my OHS application to append a url on to the end of another.. Let me give an example to explain what I mean by that. This url is on my webpage http://servername/applicationname/faces/dDocName:20000 . I want to rewrite t

  • Error when updating second gen ipod touch to os 4

    when i am trying to update to os 4 on my ipod touch it downloads and when installing at the end it says "network unavailable" my mum has managed to do it on her 32gb ipod touch but i cant on my 8gb ipod touch any answers?