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

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

  • Does iMovie accept NSV Files

    Does iMovie accept NSV files. I have an NSV file that I need to convert to MP4.
    Is there any other software that may do this.

    Does iMovie accept NSV files.
    Must confess that I am not familiar with this compression format but since it is listed as a "streaming" format, I doubt it can be edited in iMovie '08 and therefore would not be allowed to be imported.
    Is there any other software that may do this.
    You can TRY THIS PAGE. It lists a number of media players that "supposedly" support this format. (However, as you will note, the truth of at least two of these applications is in dispute.)
    I have an NSV file that I need to convert to MP4.
    Believe you will have more problems than just finding a player here. Unless the player also has the ability to cache and save the data, you will likely have to "screen capture" the streaming file content. Once you can do that, then you should be able to convert the file to a desired compression format.

  • Buring DVD-R after creating Video_TS file

    I built a DVD in DVD Studio Pro and the log did not report any errors. I then tried to burn a 4.7 GB DVD-R with the VIDEO_TS file but soon into the burning process I keep gettig the same error code "result code=18771" and the message reads "Could not record the disc b/c there is a problem with source material." Does anyone know what this means and how I can correct this issue? My file size is 2.3 GB so it should fit on the 4.7 GB DVD-R. Any tips?

    Your project is already built on your hard drive. It might be a good idea to delete the build and do it again, but you can also select to format the current build. Select format from DVDSP and as your source locate your Video_TS folder. And as your destination choose hard drive as the output device. This will create a single file with the extension .img. You then use Disc Utility to burn the DVD.
    Here is some more info on how to burn DVD's with disc utiltiy.
    http://www.kenstone.net/fcphomepage/making_dvdcopies.html

  • Does imovie supports avchd files

    does imovie 11 supports avchd files?

    Yes, Maybe and No.  For iMovie '11, the answer is spread across a number of support responses and in the details of the technical requirements of the related products.
    Yes.  It appears that if you keep the SD card in the camera and direct connect it to your Mac you may import and it will allow you to select the clips (as shown in the iMovie '11 import video -- Artcile VI104).  (But see notes below under Maybe and No.)
    Maybe.  If you don't have the camera anymore, but you can copy the entire directory structure of the SD card over to a drive and copy it to a disk image then you should be able to import using an import command and choose the mounted disk image.  (But see note below under No.)
    No.  If your resolution is set too high for iMovie then it will not import.  For example, using the disk image workaround I was able to get iMovie to show that clips were present, but it would not allow importing because they were originally done at 60p (Panasonic SD90 1080p).  The clip import window (as shown in Article VI104) shows different clips, but they show up as black with red "no" line across them with a "60."
    If you want to import then make sure your resolution and frame rate is supported by iMovie.
    The other options seem to be:
    Buy a software transcoder specific to the purpose of converting .mts file to some other format for iMovie.
    Transcode via Handbrake or Toast (results were not great in my opinion).
    Toast workaround.  Create a DVD image in Toast and mount and import the image.  This works great.  There is a video on YouTube for it.  The one problem is that Toast will break large clips into smaller DVD files.  It did not seem to lose data, but now one large clip was three our four smaller ones and the time/date data was lost.  You have to reorder them in iMovie.  Quality was fine.  Time needed was OK.  Workflow was awful because of the larger clips being split.
    Rewrap the .mts file in something iMovie can handle.  Seems to work fine and is the quickest so far.  There are pay-for wrappers and free wrappers/automator files available.

  • 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

  • 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.

  • 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
    >

  • Does iMovie support swf files?

    Are the files drag and drop? Thanks

    iMovie support MP3、WMA、WAV、APE、FLAC,MPEG4 AVI、RM、RMVB. it means iMovie can not support swf files, if you want to watch swf flash on it,you need to convert swf MPEG4 or AVI. Moyea swf converter can help you make it.Its official site is :http://www.swfkits.com/

  • Does imovie support tod files?

    Help .. I can not find anywhere i have looked so far on what files are supported in imovie???  I thought it would be a easy task.....

    Just wanted to add this... if I demux into .m2v using Mpeg Streamclip I can import the .m2v files including audio into Final Cut Express but would prefer to use iMovie as it's easier to use!

Maybe you are looking for