Create simple slidshow for CD or DVD

This is pretty vague I know but still would like a push in the right direction.
I own photoshop CS3 but haven't used it for quite a long time.  I want to generate a slideshow from a pile of  images that can be burned to CD or DVD and play on most any settop player (or computer).
I'm pretty sure this fairly easy to do but from Bridge menu tool.. I don't see that in the list of things you can do with selected prictures.
Looking up `slideshow' in photoshop help file only leads to direction for using a slide show for viewing pictures inside photoshop.
Isn't there some starndard to way to create a cd/dvd presentation of pictures in slide show format using Photoshop?

As far as I know, you can't create a slideshow that plays on a dvd player in Photoshop.
You can do it using Nero (it will create a slideshow for you before burning it onto cd/dvd)  or if you want to make it the way you like it, use Adobe Premiere Pro/Encore CS4.

Similar Messages

  • Would iWork be a good tool to create a presentation for CD or DVD?

    I need to create a presentation for a supermarket about their new promotion, but I only have the preinstalled mac software on my Mac Pro, plus I have adobe creative suit and Final cut studio. With the Adobe software which includes: Photoshop, Illustrator, InDesign, Dreamweaver, Flash and Fireworks and Acrobat, I think I could use dreamweaver or Acrobat to create the presentation in a html or acrobat file, but I wonder if iWork won't be better. What do you normally use for presentations?

    As far as I know, you can't create a slideshow that plays on a dvd player in Photoshop.
    You can do it using Nero (it will create a slideshow for you before burning it onto cd/dvd)  or if you want to make it the way you like it, use Adobe Premiere Pro/Encore CS4.

  • What is the best software for creating simple forms for the internet? I am currently using an oldversion of Dreamweaver for web authoring.

    I am currently using and old version of Dreamweaver for web content, but need  a simple way of creating forms for my web site. I am not all that web savy...just enough to be dangerous.

    how about coda?

  • Creating Simple transformation for an XML data having deep structure

    Hi
    I have the following XML structure..
    <REQUESTS>
      <REQUESTNAME>REQ123</REQUESTNAME>
      <REQUESTID>1234</REQUESTID>
      <CITY>NEWYORK</CITY>
      <ZIPCODE>123456</ZIPCODE>
    <COMPETENCIES>
       <LANGUAGES>
         <COMPETENCY>
            <SKILL>SAP</SKILL>
            <PROFICIENCY>TEST</PROFICIENCY>
            <SKILL>JAVA</SKILL>
            <PROFICIENCY>TEST123</PROFICIENCY>
    (here we may have any number of records for SKILL&PROFICIENCY...)*
    </COMPETENCIES>
       </LANGUAGES>
         </COMPETENCY>
    </REQUESTS>
    My requirement is to read the above data from an URL and push it into an internal table.
    For this I'm trying to use Simple transformations but I'm facing difficulty in doing this.
    Can you pl. guide me how to create the transformation and the corresponding code for this.
    Best Regards
    Anil

    Hi
    Here is the actual XML structure..
    - <REQUEST>
      <COUNTRY />
      <ADDRESS />
      <CITY />
      <ASSIGNTYPE>IP</ASSIGNTYPE>
      <CHARGETYPE>CH</CHARGETYPE>
      <REMOTEALLOWED>Y</REMOTEALLOWED>
      <SALESRATE>EUR</SALESRATE>
      <SECURITY>NO</SECURITY>
      <TRAVELEXP>Y</TRAVELEXP>
      <MAXDAILYRATE />
      <CREDENTIALS />
      <EXPENDDATE />
      <NEWENDDATE />
      <NEWEXPENDDATE />
      <REPLYBEFORE>2010-11-30</REPLYBEFORE>
      <STARTDATE>2010-01-01</STARTDATE>
      <ENDDATE>2010-12-31</ENDDATE>
      <GCMTYPE>PM</GCMTYPE>
      <GCMLEVELFROM>02</GCMLEVELFROM>
      <GCMLEVELTO>08</GCMLEVELTO>
      <LOCATION>FR43</LOCATION>
      <MOBILITY>04</MOBILITY>
      <ZIPCODE />
    - <COMPETENCIES>
    - <LANGUAGES>
    - <COMPETENCY>
      <SKILL>01106034</SKILL>
      <PROFICIENCY>005103</PROFICIENCY>
      </COMPETENCY>
      </LANGUAGES>
    - <ACTIVITIES>
    - <COMPETENCY>
      <SKILL>01105500</SKILL>                            
      <PROFICIENCY>004507</PROFICIENCY>
      </COMPETENCY>
      </ACTIVITIES>
    - <BUSINESS>
    - <COMPETENCY>
      <SKILL>01105729</SKILL>
      <PROFICIENCY>004605</PROFICIENCY>
      </COMPETENCY>
      </BUSINESS>
    - <INDUSTRIES>
    - <COMPETENCY>
      <SKILL>01105491</SKILL>
      <PROFICIENCY>004901</PROFICIENCY>
      </COMPETENCY>
      </INDUSTRIES>
    - <METHODS>
    - <COMPETENCY>
      <SKILL>01105591</SKILL>
      <PROFICIENCY>004805</PROFICIENCY>
      </COMPETENCY>
      </METHODS>
    - <OFFERINGS>
    - <COMPETENCY>
      <SKILL>01105840</SKILL>
      <PROFICIENCY>005002</PROFICIENCY>
      </COMPETENCY>
      </OFFERINGS>
    - <PRODUCTS>
    - <COMPETENCY>
      <SKILL>01107304</SKILL>
      <PROFICIENCY>004703</PROFICIENCY>
      </COMPETENCY>
      </PRODUCTS>
      </COMPETENCIES>
      <CANDIDATES />
      </REQUEST>
    Here..... <SKILL></SKILL>   <PROFICIENCY></PROFICIENCY>  can be more than 1 entry...
    For this I have created a simple transformation like below..
    I have used the tcode 'XSLT_TOOL '..
    In SE11 I have created a Table type 'ZCOMPETENCIES' which is having  a line type 'ZLANGS'.
    ZLANGS is a structure which has another structure called 'ZCOMPETENCY' and this 'ZCOMPETENCY' is having fields
    SKILL & PROFICIENCY.
    I have used the wizard button which u can find  'XSLT_TOOL '.. and provided the table type ZCOMPETENCIES'  and it has automatically created the following transformation...
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates" xmlns:ddic="http://www.sap.com/abapxml/types/dictionary" xmlns:def="http://www.sap.com/abapxml/types/defined">
      <tt:root name="ROOT" type="?"/>
      <tt:root name="COMPETENCIES" type="ddic:ZCOMPETENCIES"/>
      <tt:template>
        <COMPETENCIES>
          <tt:loop ref=".COMPETENCIES">
            <ZLANGS>
              <COMPETENCY>
                <SKILL tt:value-ref="COMPETENCY.SKILL"/>
                <PROF tt:value-ref="COMPETENCY.PROF"/>
              </COMPETENCY>
            </ZLANGS>
          </tt:loop>
        </COMPETENCIES>
      </tt:template>
    </tt:transform>
    I have written following code to get the data
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename                = gs_file
      CHANGING
        data_tab                = gt_itab
      EXCEPTIONS
        file_open_error         = 1
        file_read_error         = 2
        no_batch                = 3
        gui_refuse_filetransfer = 4
        invalid_type            = 5
        no_authority            = 6
        unknown_error           = 7
        bad_data_format         = 8
        header_not_allowed      = 9
        separator_not_allowed   = 10
        header_too_long         = 11
        unknown_dp_error        = 12
        access_denied           = 13
        dp_out_of_memory        = 14
        disk_full               = 15
        dp_timeout              = 16
        not_supported_by_gui    = 17
        error_no_gui            = 18
        OTHERS                  = 19.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    GET REFERENCE OF gt_person INTO gs_result_xml-value.
    gs_result_xml-name = 'COMPETENCIES'.
    APPEND gs_result_xml TO gt_result_xml.
    TRY.
        CALL TRANSFORMATION ZTEST_TRAN
        SOURCE XML gt_itab
        RESULT (gt_result_xml).
      CATCH cx_root INTO gs_rif_ex.
        gs_var_text = gs_rif_ex->get_text( ).
        MESSAGE gs_var_text TYPE 'E'.
    ENDTRY.
    Please let me know if you need any further details..
    Best Regards
    Anil

  • Creat simple library for javaCard

    hi all.
    thanks for your reading.
    i use NetBean to create library. My project is very simple, just have some variables and some public methods. Now, i built and received 2 files: Mylib.Exp and Mylib.Class.
    The question is: how to convert it to JAR file to import from another applet.
    I use command line: jar -cvf, but it throw ex:
    java.io.FileNotFoundException: mylibrary\javacard (Access is denied)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
    at sun.tools.jar.Main.run(Main.java:169)
    at sun.tools.jar.Main.main(Main.java:1149)
    here is my simple code:
    package mylibrary;
    import javacard.framework.JCSystem;
    public class MyLibClass {
         public byte f1 = (byte)3;
         private byte f2 = (byte)2;
         protected byte f3 = (byte)2;
         private byte f4;
    public byte f5 = (byte)1;
         byte f;
         public void mPublic(byte a, byte b){
              f = (byte) (f2+f1+f3+f4+f5);
         private void m_private() {
              return;
    protected void mProtected(byte a, byte b){
              f = (byte) (f2+f1+f3+f4+f5);
    thanks you all
    Edited by: hoan_micheal on Jun 16, 2011 3:28 AM

    Hi,
    This is not a problem with your code. Can you show the complete command you ran? It looks like you do not have permission to write to the output folder.
    You should also be able to create a JAR file from NetBeans. As far as I am aware, when you build a project it will create a JAR file in the dist directory.
    Cheers,
    Shane

  • Is there an easy way to create simple forms for use in iweb?

    or a template?
    I need to create a reply form on the site I am working on.
    thanks

    After a few days of working on this issue the tutorial is updated to make the form be sent from within the webpage with extra form additions available as well!
    The form is fully customizable for background color or image background, there's no ads or service to sign up for, all you have to do is copy and paste a code into your html and enable cgi and/or php on your host with some additional small tweeks here and there to put it all together. Basically it's the do it yourself way.
    *The form on the tutorial link provided still opens the Email app when the form is submitted but we have tested this method on our other sites using the same procedures mentioned with successful results.

  • What's the fastest way to create simple report for the web?

    I have Developer 6i and Oracle 9I installed.
    If i have a report already done, how can I make it available to users, so they can access them thru an IP or a host?
    can I achieve that just with my developer 6i (report builder) and my database (oracle 9i)???
    If so, how?

    1) pls see
    [     Publishing reports to web  - 10G  ]
    see
    [    All Docs for all versions    ]
    for 9i version of same document
    2) Better to have 9i builder - 9i ias combinations
    (not sure whether other combination is supported or not. but understandably it is best to have same combination]
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • How to create desktop application for simple server program using netbeans?

    Hi,can anyone help me on this one??
    I'm am very new to java,and I already trying different example program to create desktop applications
    for simple server program but it's not working.
    This is the main program for the simple server.
    import java.io.*;
    import java.net.*;
    public class Server {
    * @param args the command line arguments
    public static void main(String[] args) {
    try{
    ServerSocket serverSocket = new ServerSocket(4488);
    System.out.println("Server is waiting for an incoming connection on port 4488");
    Socket socket = serverSocket.accept();
    System.out.println(socket.getInetAddress() + "connected");
    PrintWriter out = new PrintWriter(socket.getOutputStream(), true);
    BufferedReader in = new BufferedReader( new InputStreamReader(socket.getInputStream()));
    String inputLine;
    while ((inputLine = in.readLine()) != null){
    out.println(inputLine);
    System.out.println("Connection will be cut");
    out.close();
    in.close();
    socket.close();
    serverSocket.close();
    }catch(IOException e){
    e.printStackTrace();
    // TODO code application logic here
    }

    and this is the Main Processing :
    import java.awt.*;
    import java.awt.event.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.*;
    import java.text.*;
    import java.util.*;
    import java.net.*;
    import java.io.*;
    public class MainProcessing {
    private static final long serialVersionUID = 1L;
    static private boolean isApplet_ = true;
    static private InetAddress argIp_ = null;
    static private int argPort_ = 0;
    public TCPIP TCPIP_ = null;
    private InetAddress ip_ = null;
    private int port_ = 10001;
    static private boolean conectFlag = false;
    private BufferedWriter bw;
    FileOutputStream fos;
    OutputStreamWriter osw;
    public int[] current = new int[400];
    public int[] volt = new int[400];
    public int[] revolution = new int[400];
    public void init() {
    public void start() {
    if (isApplet_) {
    try {
    ip_ = InetAddress.getByName(getCodeBase().getHost());
    } catch (UnknownHostException e) {
    } else {
    ip_ = argIp_;
    if (argPort_ != 0) {
    port_ = argPort_;
    // IP&#12450;&#12489;&#12524;&#12473;&#12364;&#19981;&#26126;&#12394;&#12425;&#20309;&#12418;&#12375;&#12394;&#12356;
    if (ip_ != null) {
    // &#12467;&#12493;&#12463;&#12471;&#12519;&#12531;&#12364;&#25104;&#31435;&#12375;&#12390;&#12356;&#12394;&#12356;&#12394;&#12425;&#12289;&#25509;&#32154;
    if (TCPIP_ == null) {
    TCPIP_ = new TCPIP(ip_, port_);
    if (TCPIP_.getSocket_() == null) {
    System.out.println("&#12511;&#12473;&#65297;");
    // &#12456;&#12521;&#12540;&#12513;&#12483;&#12475;&#12540;&#12472;&#12434;&#34920;&#31034;
    return;
    if (TCPIP_ == null) {
    System.out.println("&#12511;&#12473;&#65298;");
    return;
    System.out.println("&#25104;&#21151;");
    conectFlag = true;
    try {
    TCPIP_.sendF();
    } catch (IOException ex) {
    Logger.getLogger(MainProcessing.class.getName()).log(Level.SEVERE, null, ex);
    System.out.println("" + conectFlag);
    return;
    public void receive() {
    try {
    // Calendar cal1 = Calendar.getInstance(); //(1)&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12398;&#29983;&#25104;
    // int year = cal1.get(Calendar.YEAR); //(2)&#29694;&#22312;&#12398;&#24180;&#12434;&#21462;&#24471;
    // int month = cal1.get(Calendar.MONTH) + 1; //(3)&#29694;&#22312;&#12398;&#26376;&#12434;&#21462;&#24471;
    // int day = cal1.get(Calendar.DATE); //(4)&#29694;&#22312;&#12398;&#26085;&#12434;&#21462;&#24471;
    // int hour = cal1.get(Calendar.HOUR_OF_DAY); //(5)&#29694;&#22312;&#12398;&#26178;&#12434;&#21462;&#24471;
    // int min = cal1.get(Calendar.MINUTE); //(6)&#29694;&#22312;&#12398;&#20998;&#12434;&#21462;&#24471;
    // int sec = cal1.get(Calendar.SECOND); //(7)&#29694;&#22312;&#12398;&#31186;&#12434;&#21462;&#24471;
    byte[] rev = TCPIP_.receive();
    // System.out.println("&#21463;&#20449;");
    if (rev != null) {
    byte[] Change = new byte[1];
    int j = 0;
    for (int i = 0; i < 1200; i++) {
    Change[0] = rev;
    current[j] = decimalChange(Change);
    i++;
    Change[0] = rev[i];
    volt[j] = decimalChange(Change);
    i++;
    Change[0] = rev[i];
    revolution[j] = decimalChange(Change);
    } catch (NullPointerException e) {
    public int decimalChange(byte[] byteData) {
    int bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7;
    int bit = 0;
    for (int i = 0; i < 8; i++) {
    int a = (byteData[0] >> i) & 1;
    System.out.print(a);
    System.out.println();
    return 1;
    public void destroy() {
    // &#20999;&#26029;
    if (TCPIP_ != null) {
    TCPIP_.disconnect();
    if (TCPIP_.getSocket_() != null) {
    try {
    System.out.println("\ndisconnect:" + TCPIP_.getSocket_().getInetAddress().getHostAddress() + " " + TCPIP_.getSocket_().getPort());
    } catch (Exception e) {
    TCPIP_ = null;
    public boolean conect(int IP) {
    conectFlag = false;
    String address = "192.168.1." + IP;
    System.out.println(address);
    try {
    argIp_ = InetAddress.getByName(address);
    } catch (UnknownHostException e) {
    // xp.init();
    isApplet_ = false;
    start();
    return (conectFlag);
    public void send(String command, int value, int sendData[][], int i) {
    int j = 0;
    Integer value_ = new Integer(value);
    byte values = value_.byteValue();
    Integer progNum = new Integer(i);
    byte progNums = progNum.byteValue();
    try {
    TCPIP_.send(command, values, progNums);
    for (j = 1; j <= i; j++) {
    Integer time = new Integer(sendData[j][0]);
    byte times = time.byteValue();
    Integer power = new Integer(sendData[j][1]);
    byte powers = power.byteValue();
    TCPIP_.send(times, powers);
    TCPIP_.flush();
    } catch (IOException ex) {
    Logger.getLogger(MainProcessing.class.getName()).log(Level.SEVERE, null, ex);
    public void file(String name) {
    ublic void fileclose(String name, String command, int value, int sendData[][], int i) {
    try {
    fos = new FileOutputStream("" + name + ".csv");
    osw = new OutputStreamWriter(fos, "MS932");
    bw = new BufferedWriter(osw);
    String msg = "" + command + "," + value + "";
    bw.write(msg);
    bw.newLine();
    for (int j = 1; j <= i; j++) {
    msg = "" + j + "," + sendData[i][0] + "," + sendData[i][1];
    bw.write(msg);
    bw.newLine();
    bw.close();
    } catch (IOException ex) {
    Logger.getLogger(MainProcessing.class.getName()).log(Level.SEVERE, null, ex);

  • A quick solution for creating simple SWF animation.

    A quick solution for creating simple SWF animation.
    So you’re not an expert with Adobe flash and you need
    to create a simple animation or banner for a client. Remember that
    old school point and click animation program you found on the web a
    couple of years age. Create your animation with the old school
    program then convert the .gif file to a SWF file. It worked for me.

    ok?

  • I need an app for creating simple signs like Windows Publisher allows. Suggestions?

    I have a MacBook Pro and purchased the Windows for Mac Office Suite software which includes Excel, Word, Outlook and Powerpoint. However, I now really need something similar to Publisher in order to create simple fliers and other items. I have Pages and thought that it would work for me, but I find that pictures I insert into a Pages doc are difficult to place or maneuver within the document. Any suggestions for a different app that would be easier to use?

    Word will actually 'work' for simple flyers - maybe even simple newsletters and the like. Do a Google search for some Word templates that you may be able to use.
    I have Pages but I don't use it - Word is powerful enough to do what you need, though, I would think.
    Clinton

  • More simple way for creating dummy variables

    I am finding for more simple way for creating dummy variables.
    For analyzing by linear regression, logistic regression ... creating dummy variables from categorical data is necessary.
    Most simplest way for creating dummy variables is may be pivot function.
    But I need more simple method.
    Anyone's idea. I welcome.
    Naoya Ikeda

    Hi Naoya. Can you give an example of a sample input and output, with a description of what you'd like to do?
    Thanks,
    Ehren

  • Steps to create a simple formula for 2 KF

    Hi, Can someone please give me steps to create a formula for 2 KF or redirect me.  Do I need to create a formula variable?  I just need to add KF1 + KF2.  I RClicked on KF structure in columns and i can see only structure elements and formula variable.  I don't see my KF.  I am in netweaver 2004s.
    Thanks,
    Radha

    No it isn't new in Netweaver 7.0.
    Left hand side - > Keyfigures - > Calculated Keyfigures - > Right Click - " CKF "
    You shud see keyfigures existing on the Infoprovider & other RKF's , CKF's existing on the query under "Available Operands " 
    When u create a formula ( which is local ) u may not see the keyfigures which doesnot exist in columns - u shud hav the keyfigures in the Columns to use them in the formula - u can use in the formula & to avoid them on the report jst hide em.
    Message was edited by:
            Jr Roberto

  • Simple steps for creating a planning application

    Hi all,
         I am trying to create a simple planning application. I need to show the actuals by hierarchies on characteristics and allow the users to plan on various levels of the hierarchy. Then, I have to generate a report comparing the previous year actuals and present plans. Please let me know the simple steps to achieve this.
    Thanks.

    hi Uma,
      Create planning applications ,Go THru This LInkS .
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/d-f/frequently asked questions - planning with sap netweaver bi.faq#q-6
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/s-u/sap bw business planning and simulation - how to guides list.htm
    Hope this links help you to create simple planning applications.
    THnaks
    Varun CN

  • Creating Photoshop buttons for motion menus and photoshop menus

    Hi I need to create buttons in photoshop for both a photoshop menu and a motion menu on DVD studio pro program
    Can someone tell me how to do it on both different menus?
    I really need some DETAILS on how to do it. Thanks for your time and responses ahead of time

    OK, here's what I recommend you try...
    Create the footage for your motion menu background. In that footage fade in the button shapes and text for the buttons exactly as you want them to appear. Hold the final position of these buttons for at least 30 seconds. save an image of the still portion to act as a guide in photoshop. Encode that footage to MPEG2 using Compressor and import it in to DVDSP.
    Take the still image in to photoshop and add a single layer to the file. On the new layer, create a shape of some kind (an underline, tick, circle, cross, box around, arrow, etc) next to the background button text. Make these shapes (for each piece of background text) black, and leave the rest of the layer white. Hide or delete the background layer and save the result as a .pict image. Import it in to DVDSP.
    Take the motion footage and drop it in to a menu. use the loop point in the property inspector to define where the 'still' portion of that footage begins. Now drag the .pict overlay image in to the same menu, but hold it a second until the contextual menu appears... set it as the overlay. Drag out button rectangles around the background text and position for the shapes in the overlay. Make sure the rectangles don't overlap, and set up the target for these buttons as well as the navigation between them.
    Use the property inspector to adjust the colours for the overlay - set it to be a simple overlay and in grayscale. What should happen is that when the menu plays the animated sequence starts first but as soon as the loop point is reached the overlay becomes active. The first button defined will be set as selected. You should now see the menu with the buttons faded in to position and the buttons should be clickable.
    When returning to this menu you may not want the viewer to sit through the animated sequence each time. Use a script (in DVDSP4) to specify that they return to the loop point only (the bit where the buttons are) or create a second menu that is identical to the loop point and send the viewer there instead.
    As you can see, there are several steps involved and I have made assumptions that you know something about menus and constructing buttons. It is all in the manual, but you will need to be familiar with Photoshop (or whatever image editor you prefer) to do this properly.
    You do not need to try to make four layer shapes and bring them in to the menu, and if you attempt to add anything else from the templates panel to this menu then the image quality will suffer as DVDSP builds the disc. If you do want to add other shapes and text to the menu then don't do the export to MPEG2... keep it as a simple QT .mov file.
    Please let us know how you get on after trying this method, and after reading up on those manuals

  • What is the most efficent way to create both a standard and HD DVD

    Hi,
    I'm just getting into HD video editing, and I have relatives who will be several years behind me. I will be making HD DVD's for myself to use, but I will also need to make standard DVD's to send to my relatives.I am assuming that the HD DVD's I create will not play in a standard DVD player. I may be wrong. However, If this is correct, is there a particular point in the process of working with Encore where I can make that choice, create the DVD, and then go back and alter it in order to create the other type without destroying and having to redo everything that was done up to that point?

    Thank you Hunt. Being ahead of most of the rest of the world and getting the best technology out there can be a pain sometimes. Reading through Jon Geddes' article left me scratching my head several times, and some of it went way over my head, but I'll keep at it, until it sinks in. Some language, terms, and shorthand, I'm sure are simple to understand to a lot of people, but I'm not in that catagory. I'll just keep working at it. 
    Terry Lee Martin
    Date: Sun, 18 Oct 2009 13:39:08 -0600
    From: [email protected]
    To: [email protected]
    Subject: what is the most efficent way to create both a standard and HD DVD
    I would edit the Project in HD in PrPro. The BD authoring part will be straight workflow.
    For the SD DVD-Video, you have a few choices. You can Export to DV-AVI Type II for Import into a new Encore Project for the DVD. Some feel that PrPro does not do a good job at down-rezing from HD to SD. For a workflow that will likely yield better quality, see this http://www.precomposed.com/blog/2009/07/hd-to-sd-dvd-best-methods/. If you have PrPro/Encore CS4, then Jeff Bellune's /thread/487134?tstart=0 might be useful to you. Just follow the links to the tutorial.
    Good luck,
    Hunt
    >

Maybe you are looking for

  • PO- Output to the PO creators by email in pdf

    Hi ALL, we have a requirement is to have the PO- Output  to the PO creators by email in pdf. Format.  how can we acheive this requirement , what is the partner function can be used for person who creates PO , where can we maintian his eamil ID . plea

  • Gneral:system error message appears when I try to ...

    when try to open any music songs I put in N95 8g even that songs come with N95 8g this message appear >>gneral:system error what I can do??

  • Xml file with Attachment-- File Adapter

    HI, I have a zip file which has an XML and a corresponding pdf file, with these files I need to create a target xml structure which is the original XML+ Additional tag containing the <bas64> of the pdf. I intend to write a module which could parse th

  • Receiving Attachment thru RFC

    Hi Experts, I am doing a scenario for SOAP to RFC. i am receiving the file in an attachment via SOAP protocol. i want to upload that attachment into SAP or into Local System thru RFC. Can somebody let me know the RFC for receiving the attachment in t

  • Can't Open PDF 2nd time

    I can't open a pdf the 2nd time I open the file.  Works fine on other PC's with XP & 7, Adobe versions 9 through 11.  But on this PC (XP) I can not open the file on any Adobe Reader version either from the desktop or the original CD it cam on.  It wi