Does Compressor create FLV files?

I'm very new to creating videos and am trying to streamline my workflow. What I do now is create .mov files in Final Cut and then have Adobe Media Encoder translate them to FLV files which I can import into an HTML page using Dreamweaver.
Does Compressor make this easier or faster?
Thanks

That doesn't work-- all I get is a huge FLV file. Adobe Media Encoder works fine. Apple refunded my money for Compressor because it's useless unless it exports to FLV.

Similar Messages

  • SQLJ Translation does not create profile file

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

  • Does SAP create missing files TRACExx when starting up?

    Hi there,
    I'm working on a documentation regarding a system copy from a productive system to a consolidation system.
    We're using Sun Solaris 10/64Bit with Oracle 10g2 and Netweaver 7.00.
    In the directory /usr/sap/<SID>/DVEBMGS_xx/log there are several files SAP uses:
    - ALALERTS
    - ALMTTREE
    - ALPERFHI
    - ENQBCK
    - SLOGxx
    - TRACE
    - TRACE00...TRACE07
    My question concerns the TRACE-files. Only the file TRACE seems to be used by the consolidation system, but there are still eight files TRACE00 up to TRACE07 that were last accessed in 2008 and before.
    These files are filled with data from former consolidation systems that got overwritten everytime by the system copy. Now, after the new copy, the SAP system is still down. May I delete these files? Does SAP create these files new when starting up?
    Greetz, Uwe.

    Hi,
    Yes you can delete those files at any time. Check SAP Note 16513, it may help you.
    Thanks,
    Sushil

  • I have an hd movie on final cut pro x; i want to create an sd disk of that movie. compressor created 2 files: dolby.... and mpeg2. How do I get these files burned to disc to create my sd movie?

    I have an hd movie on final cut pro x; i want to create an sd disk of that movie. compressor created 2 files: dolby.... and mpeg2. How do I get these files burned to disc to create my sd movie?

    These are elementary streams and they would be used by DVD authoring apps that use them for reasons like foreign language capability. Examples would be DVD Studio Pro, Adobe Encore, Toast.
    The most straightforward way to burn your DVD is either to use the Share feature in FCP or the Batch Template feature in Compressor.
    If you can find a boxed copy of iLife (try Amazon), it should have iDVD as part of the suite of apps. iDVD offers far more complete authoring capability than FCP or C4. iDVD  doesn't work with elementary streams; you'd just drag in your HD movie and you'd be good to go.
    Good lluck.
    Russ

  • Payment Wizard Does not create the File

    Hi I am trying to run the payment wizard and in the final step it says it ran successful and create the outgoing payments but it does not create the payment file for the bank.
    Step 1
                Start a new Payment run
    Step 2
               payment type : out going
               payment method : bank transfer
               File Path : Go to Desktop and file name is test
    Step3
              Select the business partner
    Step 4
             Select the date range
    Step 5
            Select the payment method
    Step 6
            Select the Invoices
    Step 7
            Execute
    It says successfully Executed the payment and create outgoing payment for the business partner.
    But it does not create the payment file (test in the Desktop)
    Please help me!!!
    Thanks
    Sanjaya

    Hi Sanjaya,
    Check the link
    Payment Wizard
    Payment Wizard Run does not create Payment/Check
    Payment Wizard/Engine - creation of Bank File
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Does pages create pdf files or should i use adobe

    I need to have software that can read and create pdf files.  Does "pages" do this or should I use adobe?

    Welcome to Apple Support Communities
    Pages can create PDF files. To do it, create a document and, when you have finished it, choose the File menu (on the menu bar) > Export > PDF, so you will be able to read this document with any other PDF software.
    However, Pages can't read PDF files. To read PDF files, Mac OS X comes with Preview, so you don't need to get Adobe Reader to use PDF files on your Mac

  • Installer does not create directories/files in APPDATA directory

    I have an installer that installs the application into the Program Files directory, and additionally, is supposed to create application files and a directory structure in the Public App Data (%APPDATA%) directory of the Windows installation. In the LV Build Specification, I have created the appropriate destinations, moved the project specific files to those destinations in the Source File section, and tried combinations of the source file properties. When I run the installer, the application installs into Program Files correctly, however, nothing is created in %APPDATA%. I have even marked these files as vital to the installation, in order to stop, if there's a problem. No problem was indicated during the installation.
    Thanks for the help.

    Hi Jlgeris,
    I build a little istaller and told the installer to put something in the appdata directory as you can see in the attached files. After  installing it, I found the file in the right directory.
    Did you do this in the same way?
    regards
    Tobias
    Attachments:
    Destinations.png ‏89 KB
    Source_Files.png ‏93 KB
    Appdata.png ‏95 KB

  • Export command does not create output file (PDF/WORD etc format)  file

    I am using Crystal Report 8.5 and studio .net 2002.  I have crystal report 8.5 as well as Crystal report XI
    installed on machine.
    I have used Crystal Report Engine 9.1.3300 as reference in asp.net application.
    Some of the crystal reports get exported to file (PDF/WORD etc) properly in the virtual directory.
    However, for some reports export file (any format) PDF file does not get created.
    Please help urgently.
    regards,
    Anita

    Anita please download Service Pack 1 for CR 9.1 and see if that resolves the issue. SP 1 is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100009301312009E/crnet11win_en.zip
    Ludek

  • Batch Actions - Export to PNG does not create PNG files

    I am testing Illustator CS4 to see if my department will upgrade to CS4 from CS2.  We do a lot of batch conversion of .eps graphics and have never had a problem in previous versions of Illustrator including CS2.
    I have created a new Set and Action to Export all .eps files  to .png files from a specific folder.  All the settings appear to be correct and match the settings from CS2.  However, when I run a the bacth on CS4, it appears to go through the motions, the .eps files show the current modified date, but no PNG files are created.  I think this may be a bug, and if this doesn't work, do I try CS3? or stay on CS2 which we rather not do?

    I think you will be happier with CS4 and have a suggestion use Fireworks to batch your files to png.

  • Does DW create .swf files?

    Hello, I have Creative Suite 2, and have been asked by a
    client (I am also a web developer, but mainly using ASP) to rescue
    their website. Their designer has *lost* the original files which
    were written in Dreamweaver, so he tells me, and I don't have a
    copy of Dreamweaver.
    AS I have CS2 - photoshop, illustrator, indesign, GoDesign,
    is there a way I can get Dreamweaver, or another product cheaply,
    just so I can help this one client out? I am not too sure I
    actually want to plunge in and buy Dreamweaver, as I don't really
    know what I would use it for, and I expect the learning curve to be
    as steep as the other Creative Suite products were!
    If anyone could recommend/suggest a fix for me (all I have
    are .html and .swf files that are sitting on my client's website),
    for me to be able to update his website, that would be great - I
    really don't want to have to scrap what he has and start over in
    another software package. Or if you can convince me that it is easy
    to start desiging flash files, maybe I might go there! (I presume
    Dreamweaver's primary purpose is to create Flash websites?)
    Many thanks!
    Teresa

    Is the current site a Flash site? If it is, you are in big
    trouble....
    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
    ==================
    "teresafr" <[email protected]> wrote in
    message
    news:fabseg$9qd$[email protected]..
    > Hello, I have Creative Suite 2, and have been asked by a
    client (I am also
    > a
    > web developer, but mainly using ASP) to rescue their
    website. Their
    > designer
    > has *lost* the original files which were written in
    Dreamweaver, so he
    > tells
    > me, and I don't have a copy of Dreamweaver.
    >
    > AS I have CS2 - photoshop, illustrator, indesign,
    GoDesign, is there a way
    > I
    > can get Dreamweaver, or another product cheaply, just so
    I can help this
    > one
    > client out? I am not too sure I actually want to plunge
    in and buy
    > Dreamweaver,
    > as I don't really know what I would use it for, and I
    expect the learning
    > curve
    > to be as steep as the other Creative Suite products
    were!
    >
    > If anyone could recommend/suggest a fix for me (all I
    have are .html and
    > .swf
    > files that are sitting on my client's website), for me
    to be able to
    > update his
    > website, that would be great - I really don't want to
    have to scrap what
    > he has
    > and start over in another software package. Or if you
    can convince me that
    > it
    > is easy to start desiging flash files, maybe I might go
    there! (I presume
    > Dreamweaver's primary purpose is to create Flash
    websites?)
    >
    > Many thanks!
    > Teresa
    >

  • Maxl on error write to does not create error file

    The following MaxL statement functions except the creation of the dimbuild.err file. I have tried numerous combinations of syntax, server, folders without success.
    I am running this from the MaxL editor on the eas web server.
    import database XYAFIN.Finance dimensions
    from server text data_file "XYAFINPS_11P3.201102240507.txt"
    using server rules_file "DimNew"
    preserve all data on error write to "D:\\Hyperion\dimbuild.err";
    Results:
    Statement executed with warnings.
    Object [Finance] is locked by user
    Building Dimension elapsed time: [3.594] seconds
    There wer errors, look in D:\\Hyperion\dimbuild.err
    I appreciate your help!

    spool stderr on to "D:/Hyperion/StdErr.log";
    spool stdout on to "D:/Hyperion/StdOut.log";
    import database XYAFIN.Finance dimensions
    from server text data_file "XYAFINPS_11P3.201102240507.txt"
    using server rules_file "DimNew"
    preserve all data
    on error write to "D:/Hyperion/dimbuild.err";
    if D:\Hyperion\dimbuild.err already exists then change the last line to:
    error append to "D:/Hyperion/dimbuild.err";
    See how that works.
    Robb Salzmann

  • 1080x 1920 AE Comp  to FLA FILE. the xfl can't create FLV files greater then 1920x1080

    I need help! My problem is the following:
    I need to transform an AE comp into a FLA file (not an SWF). The comp is 1080 by 1920 (vertical) and I tried to use the XFL file but I get a 1080 by 1080 FLA file when I open the XFL in Flash. then maximum supported by XFL 1920x 1080 (the opposite).
    a) I tried in AE to export a sequence of PNG to import it into FLASH inside of a movie clip, but I only can do this on the first 100 frames then it crashes all the time.
    b) Use different import file types when to import to Flash?
    c) Scale the comp in AE to 608x1080 and then scale on a FLA FILE?
    No success!
    What can I do?
    Thanks a lot!

    Todd_Kopriva,
    Thanks man! It was very
    usefull. I got to have to trick it a bit but in the end it works.
    Mylenium,
    I suppose that it can be done by code, but it works Todd´s way. Thank you very must!
    Now, Im kind of worried of what I can lose of quality or noise on the effects, because of the  transfer from AE to FLA? It all vectors, so it doesn´t loose nothing, right?
    Thanks very must guys. I have the weekend to fix this so Im trying to do it the right way.

  • Netbeans does not create lib file in dist anymore?

    Hi,
    I am using Netbeans 6.5 and for some reason, the project libraries are not included in the dist anymore? Does anyone know why? I can't find an option in Netbeans.
    Thanks,
    J.

    corlettk wrote:
    masijade. wrote:
    georgemc wrote:
    masijade. wrote:
    You can modify it yourself, but, IMHO, that is kind of like attaching a rope to your steering rods and using that to steer rather than the steering wheel. ;-)Not sure I agree with that. Preparing a distribution is something that's different for different people, different projects and different organisations. It's not out of the question that you'll need more than one dist anyway. Your IDE makes a good stab at guessing what you want? Good-oh. You'd probably use Ant anyway (if you haven't embraced Maven!) to do this, and there's no "standard" to thatYes, if you want multiple distributions or partial distributions, of course, edit your build.xml, but then, IMHO, you should be using ant (or maven) manually and externally (which would also mean an external build.xml) and not the "compile" button on the IDE, as that is (again, IMO) not meant for either of those.We don't have a problem doing both. That is: developers built with the build button, but the official builds are scripted with ant.
    The build script starts by blowing away the project directory, getting everything (source, and all config) from the repository, and running an ant. It's not hard to maintain the official build.xml from diffs on the developers build.xml (which is checked in seperately).
    Cheers. Keith.So do we. But that is, as I've said, keeping the manual modification of build.xml and the manual execution of ant with that separate from the "build" button in the IDE, as it should be, IMO.

  • Does imovie create video_ts files?

    I am tryng to get my movie out of iMovie and onto a DVD.  I know that Apple used to provide iDisk and iMovie communicated directly with it.  So, now that Apple has decided that DVDs are dead, how do we get from iMovie to a DVD?  I just purchased Dragon Burn to do the disk creation.  What I need is for iMovie to generate the VIDEO_TS and AUDIO_TS files.  How is that done?
    thaks

    You need iDVD.
    Why is there no iDVD on my new Mac? How do I get it and how do I install it?
    https://discussions.apple.com/docs/DOC-3673

  • Latest advice on creating .flv advice from Final Cut Express?

    IN our newsroom, we have a recently purchased MacBook Pro running Final Cut Express 4.0.1 for the creation of videos for our website - problem is the the website can only take .flv files and they can be no larger than about 20 MBs. I have looked at most of the posts in this forum on creating .flv files, but I wondered what the llatest, best advice for doing this is? I know that:
    1/ I can export a .mov file and just change the extension to .flv, but that creates a file as large as the original .mov file - too large for the website.
    2/ The powers-that-be did not include Adobe Flash on this computer so I am supposing I cannot use Adobe Flash Encoder as a standalone app.
    3/ DV Kitchen looks like it might work, but it is $79 and has a lot of bells and whistles we don't need. Plus, the beancounters will have to approve the purchase.
    4/ What other cheaper options can create an .flv file from a FCE .mov file that would squeeze it down to about 20 MB?
    Thanks, Douglas

    If you dont have Flash the only worthwhile converter for flv is Sorenson Squeeze:
    http://www.sorensonmedia.com/video-encoding/

Maybe you are looking for

  • Problem with tags. Different languages and no colors?

    Hello does anyone know how this come? Before Yosemite there was no problem,... On other accounts is everything like it should be. http://kevinroelands.be/img/tags.png Thank you. Message was edited by: ziddu.be - Found the solution.

  • Javafx through command prompt

    Hi, untill now i have used NetBeans for developing javafx applications, i want to know how to run javafx applications through command prompt. what are the requirements? which environment variables to be set? and commands to compile and run javafx app

  • Need an efficient way to write history record

    I need to keep the old images of the records in table A after any changes made by the user. So, I create a history table B which is exactly the same as A but have two more columns to store the the SYSDATE & USER. Currently, my program uses a cursor t

  • My Nikon D3000 won't install

    I have a Nikon D3000 and want to use my MacBook, which I got from a friend, for the photo storing and editing. I deleted her old account and installed Snow Leopard and immediately tried to install the D3000 but when I connected it via USB, nothing ha

  • Disable the List Accounts Applet.

    I want to disable the List Accounts link on the Accounts tab and have the Accounts tab redirect you to the Find user menu. Is this possible and how do you do it? The applet is very slow when multiple users are listed at the top. I was able to edit th