Technique for importing DV directly into iMoviwithout using import function

For those who don't want to spend extra time importing DV files, I offer the following technique which I deduced, tested and find very useful.
I recently developed a very simple technique for getting DV clips into an iMovie06 project without importing them directly. First, I transform the clip, whatever the underlying codec, into DV and name the DV files in the order I want them to appear. (Use of free MPEG Streamclip is recommended)
Then I create an iMovie06 project with the correct aspect ratio (4x3 or 16x9). Then I save and close the project in the same folder as the DV files.
Then in Finder I right-click the iMovie06 project and use "show package contents" to reveal the contents of the project.
I double click the Media folder and then select and drag all of the clips into the Media folder.
Then I double click on the iMovie project. When it opens, it will announce that there are items in the trash. Those items are the clips which were just added to the folder prior to opening the project.
Open the trash and systematically drag each clip into the clip menu spots in the sequence in which you wish to view them. Save the project and close the empty trash.
The project is ready for further editing.
This saves a great deal of time and seems to improve the video quality by avoiding a lengthy, second import process.
Cheers.

Yes, I have been using this with any longer import:
http://www.sjoki.uta.fi/~shmhav/iMovieHD_6_bugs.html#quick_DVimport
Just remember to take care that the .dv clip you are dropping in the Media folder is REALLY a plain DV stream .dv clip and that it is of the same video standard (PAL/NTSC) as the iMovie project.
Some gotchas: iMovie HD 6 accepts even DV-encoded .mov files or wrong video standard .dv clips straight to its Media folder, but adding titles to such clips produces colorful artifacts to the rendered clip. Also notice that iMovie 4's Full Quality DV export preset exports a file with the .dv suffix but it is, in fact, a DV-encoded .mov if the source iMovie 4 project has chapters in it (this is not an issue with iMovie HD's Full Quality DV export anymore).

Similar Messages

  • How to import csv data into Oracle using c#

    Hello,
    How to import csv data into Oracle using c #. Where data to be imported 3GB in size and number of rows 7512263. I've managed to import csv data into Oracle, but the time it takes about 1 hour. How to speed up the time it takes to import csv data into oracle. Thank you.
    This is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    using System.Threading;
    using System.Text.RegularExpressions;
    using System.IO;
    using FileHelpers;
    using System.Data.OracleClient;
    namespace sqlloader
    class Program
    static void Main(string[] args)
    int jum;
    int i;
    bool isFirstLine = false;
    FileHelperEngine engine = new FileHelperEngine(typeof(XL_XDR));
    //Connect To Database
    string constr = "Data Source=(DESCRIPTION=(ADDRESS_LIST="
    + "(ADDRESS=(PROTOCOL=TCP)(HOST= pt-9a84825594af )(PORT=1521 )))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=o11g)));"
    + "User Id=xl;Password=rahasia;";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    // To Read Use:
    XL_XDR[] res = engine.ReadFile("DataOut.csv") as XL_XDR[];
    jum = CountLinesInFile("DataOut.csv");
    FileInfo f2 = new FileInfo("DataOut.csv");
    long s2 = f2.Length;
    int jmlRecord = jum - 1;
    for (i = 0; i < jum; i++)
    ShowPercentProgress("Processing...", i, jum);
    Thread.Sleep(100);
    if (isFirstLine == false)
    isFirstLine = true;
    else
    string sql = "INSERT INTO XL_XDR (XDR_ID, XDR_TYPE, SESSION_START_TIME, SESSION_END_TIME, SESSION_LAST_UPDATE_TIME, " +
    "SESSION_FLAG, VERSION, CONNECTION_ROW_COUNT, ERROR_CODE, METHOD, HOST_LEN, HOST, URL_LEN, URL, CONNECTION_START_TIME, " +
    "CONNECTION_LAST_UPDATE_TIME, CONNECTION_FLAG, CONNECTION_ID, TOTAL_EVENT_COUNT, TUNNEL_PAIR_ID, RESPONSIVENESS_TYPE, " +
    "CLIENT_PORT, PAYLOAD_TYPE, VIRTUAL_TYPE, VID_CLIENT, VID_SERVER, CLIENT_ADDR, SERVER_ADDR, CLIENT_TUNNEL_ADDR, " +
    "SERVER_TUNNEL_ADDR, ERROR_CODE_2, IPID, C2S_PKTS, C2S_OCTETS, S2C_PKTS, S2C_OCTETS, NUM_SUCC_TRANS, CONNECT_TIME, " +
    "TOTAL_RESP, TIMEOUTS, RETRIES, RAI, TCP_SYNS, TCP_SYN_ACKS, TCP_SYN_RESETS, TCP_SYN_FINS, EVENT_TYPE, FLAGS, TIME_STAMP, " +
    "EVENT_ID, EVENT_CODE) VALUES (" +
    "'" + res.XDR_ID + "', '" + res[i].XDR_TYPE + "', '" + res[i].SESSION_START_TIME + "', '" + res[i].SESSION_END_TIME + "', " +
    "'" + res[i].SESSION_LAST_UPDATE_TIME + "', '" + res[i].SESSION_FLAG + "', '" + res[i].VERSION + "', '" + res[i].CONNECTION_ROW_COUNT + "', " +
    "'" + res[i].ERROR_CODE + "', '" + res[i].METHOD + "', '" + res[i].HOST_LEN + "', '" + res[i].HOST + "', " +
    "'" + res[i].URL_LEN + "', '" + res[i].URL + "', '" + res[i].CONNECTION_START_TIME + "', '" + res[i].CONNECTION_LAST_UPDATE_TIME + "', " +
    "'" + res[i].CONNECTION_FLAG + "', '" + res[i].CONNECTION_ID + "', '" + res[i].TOTAL_EVENT_COUNT + "', '" + res[i].TUNNEL_PAIR_ID + "', " +
    "'" + res[i].RESPONSIVENESS_TYPE + "', '" + res[i].CLIENT_PORT + "', '" + res[i].PAYLOAD_TYPE + "', '" + res[i].VIRTUAL_TYPE + "', " +
    "'" + res[i].VID_CLIENT + "', '" + res[i].VID_SERVER + "', '" + res[i].CLIENT_ADDR + "', '" + res[i].SERVER_ADDR + "', " +
    "'" + res[i].CLIENT_TUNNEL_ADDR + "', '" + res[i].SERVER_TUNNEL_ADDR + "', '" + res[i].ERROR_CODE_2 + "', '" + res[i].IPID + "', " +
    "'" + res[i].C2S_PKTS + "', '" + res[i].C2S_OCTETS + "', '" + res[i].S2C_PKTS + "', '" + res[i].S2C_OCTETS + "', " +
    "'" + res[i].NUM_SUCC_TRANS + "', '" + res[i].CONNECT_TIME + "', '" + res[i].TOTAL_RESP + "', '" + res[i].TIMEOUTS + "', " +
    "'" + res[i].RETRIES + "', '" + res[i].RAI + "', '" + res[i].TCP_SYNS + "', '" + res[i].TCP_SYN_ACKS + "', " +
    "'" + res[i].TCP_SYN_RESETS + "', '" + res[i].TCP_SYN_FINS + "', '" + res[i].EVENT_TYPE + "', '" + res[i].FLAGS + "', " +
    "'" + res[i].TIME_STAMP + "', '" + res[i].EVENT_ID + "', '" + res[i].EVENT_CODE + "')";
    OracleCommand command = new OracleCommand(sql, con);
    command.ExecuteNonQuery();
    Console.WriteLine("Successfully Inserted");
    Console.WriteLine();
    Console.WriteLine("Number of Row Data: " + jmlRecord.ToString());
    Console.WriteLine();
    Console.WriteLine("The size of {0} is {1} bytes.", f2.Name, f2.Length);
    con.Close();
    static void ShowPercentProgress(string message, int currElementIndex, int totalElementCount)
    if (currElementIndex < 0 || currElementIndex >= totalElementCount)
    throw new InvalidOperationException("currElement out of range");
    int percent = (100 * (currElementIndex + 1)) / totalElementCount;
    Console.Write("\r{0}{1}% complete", message, percent);
    if (currElementIndex == totalElementCount - 1)
    Console.WriteLine(Environment.NewLine);
    static int CountLinesInFile(string f)
    int count = 0;
    using (StreamReader r = new StreamReader(f))
    string line;
    while ((line = r.ReadLine()) != null)
    count++;
    return count;
    [DelimitedRecord(",")]
    public class XL_XDR
    public string XDR_ID;
    public string XDR_TYPE;
    public string SESSION_START_TIME;
    public string SESSION_END_TIME;
    public string SESSION_LAST_UPDATE_TIME;
    public string SESSION_FLAG;
    public string VERSION;
    public string CONNECTION_ROW_COUNT;
    public string ERROR_CODE;
    public string METHOD;
    public string HOST_LEN;
    public string HOST;
    public string URL_LEN;
    public string URL;
    public string CONNECTION_START_TIME;
    public string CONNECTION_LAST_UPDATE_TIME;
    public string CONNECTION_FLAG;
    public string CONNECTION_ID;
    public string TOTAL_EVENT_COUNT;
    public string TUNNEL_PAIR_ID;
    public string RESPONSIVENESS_TYPE;
    public string CLIENT_PORT;
    public string PAYLOAD_TYPE;
    public string VIRTUAL_TYPE;
    public string VID_CLIENT;
    public string VID_SERVER;
    public string CLIENT_ADDR;
    public string SERVER_ADDR;
    public string CLIENT_TUNNEL_ADDR;
    public string SERVER_TUNNEL_ADDR;
    public string ERROR_CODE_2;
    public string IPID;
    public string C2S_PKTS;
    public string C2S_OCTETS;
    public string S2C_PKTS;
    public string S2C_OCTETS;
    public string NUM_SUCC_TRANS;
    public string CONNECT_TIME;
    public string TOTAL_RESP;
    public string TIMEOUTS;
    public string RETRIES;
    public string RAI;
    public string TCP_SYNS;
    public string TCP_SYN_ACKS;
    public string TCP_SYN_RESETS;
    public string TCP_SYN_FINS;
    public string EVENT_TYPE;
    public string FLAGS;
    public string TIME_STAMP;
    public string EVENT_ID;
    public string EVENT_CODE;
    I hope someone can give me a solution. Thanks

    The fastest way is to use external tables or sql loader (sqlldr). (If you use external tables or sql loader, you don't use C# at all).

  • What is the process for recording vinyl records into iTunes using the Sony USB Turntable?

    What is the process for recording vinyl records into iTunes using the Sony USB Turntable?

    What is the process for recording vinyl records into iTunes using the Sony USB Turntable?

  • How to convert columns into rows using  transpose function

    Hi
    anybody tell me how to convert columns values into rows using transpose function.

    Since BluShadow went to all the trouble to put it together, someone should use it.
    See the post titled How do I convert rows to columns? here SQL and PL/SQL FAQ
    John

  • HT1473 I have always imported my cds into iTunes using one step called 'joining cd tracks' which is done under the "Advanced" drop down menu. I then went on with the process. Half way through the process today the "join tracks' choice greyed out. Not avai

    I have always imported my cds (including books) into iTunes using one step called "join cd tracks" which is under the "Advanced" menu. Never a problem. But today I was importing a 10 disc book and on the 7th disc all of a sudden the choice to join cd tracks was greyed out. I have tried it with other discs. No luck. How can I get to this option again. I was not doing anything different so don't know what took away this choice. Can anyone help me?

    Thought it had worked but soon found out it had not.
    after further days of trying finally, solved it for me Yesterday.
    turned off notifications when locked, and bingo, wow.
    i have not turned off iCloud but location services are also off.
    best thing to do I found was keep checking your usage, settings, general, usage, and flip down to bottom, if the standby and usage are similar there is a problem, if there is a big difference then all is ok. Just keep turning things off and on until the difference is very apparent.
    something on my phone was keeping the phone alive even when turned off, and I think this was the phone repeatedly trying to update continually.
    to me this is definitely down to the iOS, my wife has exactly same phone and iOS but hers doesn't have any problem and the battery lasts for days.
    the guy at the Genius Bar told me to restore the phone via iTunes, not iCloud. This is because iCloud remembers the exact info from your phone and simply reinstates it when you restore, and this includes the iOS too.
    when I get home from holidays that's what I'll do, or wait for iOS 8 in few weeks. But I'm so pleased I finally made it work, I was beginning to think ditch the phone and buy Samsung.
    anyway anyone out there please try my final solution and let me know if it works for you?

  • I need to capture directly into Imovie using EyeTV.

    I can capture directly into EyeTV software no problem. I have an EyeTV 200 with a firewire connection. I can export from Eye TV into Imovie. I would like to remove a step and capture from my EyeTV directly into Imovie. Currently I get a message that says "No Camera Attached". Does anyone know a work around?

    The EyeTV hardware/software mpg-2 compresses the content on capture. If you have the latest EyeTV software, the software will let you export the content in DV format for use in iMovie and iDVD which it appears you have been doing.
    As for >>I would like to remove a step and capture from my EyeTV directly into Imovie.<< That can't be done.
    F Shippey

  • How to map the method action return value directly into screen using variables?

    Hi,
    My JDev version is 11.1.1.6.3.
    I have a 'MethodAction' defined in PageDef file, that goes to model layer and return String value. As this needs to be executed during initializing of pageDef, I have also added an 'InvokeAction' for that.
    <executables>
               <invokeAction id="invokeSayHelloId" Refresh="ifNeeded"
                                    Binds="sayHello"/>
               <variableIterator id="variables">
                    <variable Name="Name" Type="java.lang.String"/>
               </variableIterator>
    </executables>
    <bindings>
              <methodAction id="sayHello" InstanceName="HrAMDataControl.dataProvider"
                                     DataControl="HrAMDataControl" RequiresUpdateModel="true"
                                     Action="invokeMethod" MethodName="sayHello"
                                     IsViewObjectMethod="false"
                                     ReturnName="data.HrAMDataControl.methodResults.sayHello_HrAMDataControl_dataProvider_sayHello_result">
                                        <NamedData NDName="pName" NDValue="Michael John" NDType="java.lang.String"/>
             </methodAction>
    </bindings?
    Requirement:
    I want to map the return value of this method action directly into screen by making use of PageDef variables.
    Question:
    I. I need to know how to map this return value direcly as exprssion against PageDef variable.
    2. If Question 1 is achievable, assuming the method action returls List instead of String (I know well it returns 2 items), can I map the 1st Item against Variable 1 and 2nd Item against Variable 2 directly?
    Thanks in Advance.
    Ragu

    Thanks Frank, but If I directly map the MethodAction's result to UI, there are chances where it might get executed whenever I refresh the UIComponent (UIComponent to which the methodAction result is mapped. Isn't so??). Instead, If I invoke the MethodAction using InvokeAction, I can get the control on when it should get invoked (using RefreshCondition). If I assign the variable to UIComponent (Assume I've mapped the method action result to variable using expression), refreshing of UIComponent will not cause any performance issue I feel.
    Correct me If I am wrong.

  • How can I paste an MS Word document directly into gmail using Firefox browser, without losing all formatting?

    I'm trying to paste a simple MS Word doc directly into the body of a Gmail email, but all formatting goes out the window. I've tried downloading a couple different HTML editors, including CoffeeCup (which doesn't work with Firefox) and Firefox's own Firebug, which, quite frankly, no one on this end can figure out (doesn't seem to be as user friendly as CoffeeCup). Please advise, as this will be an ongoing operation which we'll need to be able to perform. Thanks.

    First, thanks for your reply. It's greatly appreciated. However, the level of your response fails to address the scope of the original question. Your first supposition is incorrect, that most MS Word docs copy uneventfully into the body of Gmail emails. This only applies to the most basic of MS Word docs (i.e., those utilizing minimal formatting, such as basic letters, etc.) and otherwise runs contrary to dozens of online complaints posted by users such as myself (though not on the Firefox website). Second, everyone knows you can add an attachment to Gmail emails. In this case, the recipient will not accept attachments of any kind, and has therefore asked that the content be copied directly into the email body. This is not uncommon in these cases. Third, the very nature of Notepad makes it unable to translate/interpret any documents beyond the most basic, hence its name: Notepad. Fourth, apparently this problem is rare or virtually non existent with other browsers, as all the complaints online appear to be Firefox related. Again, however, I appreciate you taking a stab at this.

  • Import  .mov directly into FCE 4.0?

    Can you import a .mov directly into FCE 4.0?

    It depends. FCE works with a limited number of codecs, resolutions, etc. Open your .mov file in the QuickTime Player, then open the Movie Inspector (command/I) and see what it says.

  • I want to scan old photos and import them directly into Photoshop Elements 12 editor.  How do I do ?

    I want to open my Photoshop Elements 12 Editor and then import from my scanner after using the scanner software first.  Is this possible as it was in Elements 9?

    You will need to install the TWAIN driver:
    http://helpx.adobe.com/photoshop-elements/kb/twain-installed-photoshop-elements-11.html

  • Importing external images into Flash using ActionScript 3.0

    Hey Guys!
    What i'm trying to do it import a few (say four) images from
    an external
    folder at random and display them in a row. The folder would
    contain up to a
    hundred pictures, sequentially named (ie. 1.jpg, 2.jpg,
    3.jpg, 4.jpg,
    etc...)
    any suggestions on how I could do this??
    thanks,
    -Chris

    thanks for getting me started! Is there a way to get the four
    images
    directly out of an external folder, though?
    thanks,
    -Chris
    "kglad" <[email protected]> wrote in message
    news:f7eop9$8um$[email protected]..
    > here's code to get you started. this allows you to
    select 4 of your
    > images at
    > random. then use the loader class and its load method to
    start your loads
    > and
    > use its contentloaderinfo property to attach listeners
    to detect if
    > there's
    > been a load error (so you can load another) and load
    completion (so you
    > can
    > position your images):
    >
    >
    >
    > Array.prototype.shuffle = function() {
    > var p:int;
    > var t:int;
    > var ivar:int
    > for (ivar = this.length-1; ivar>=0; ivar--) {
    > p=Math.floor((ivar+1)*Math.random())
    > t = this[ivar];
    > this[ivar] = this[p];
    > this[p] = t;
    > }
    > };
    > var tl:MovieClip=this;
    > var swfNum:int=100;
    > var num:int=0;
    > var i:int;
    > var swfA:Array=[];
    > for (i=1; i<=swfNum; i++) {
    > swfA.push(i+".jpg");
    > }
    >
    > swfA.shuffle();
    >
    > // swfA[0], swfA[1], swfA[2], swfA[3] contain references
    to 4 of your
    > images
    > randomly selected. if one of them doesn't exist
    > // use the ieError event to select the next one at
    random: swfA[3] etc.
    >

  • Import Excel file into SQL, using bulk copy - date issues

    Hello. I have a VB project where I need to import multiple excel files with lots of rows and columns into SQL 2012. Currently the import is set up, using OleDbConnection and insert commands and it takes up to 10 minutes to process all the spreadsheets.
    I'm trying to switch the code to use SQLBulkCopy, but experienced issues with dates columns. Some rows have Null dates and those are interpreted as strings and won't import into SQL tables. Is there a way to format the column prior to import programmatically?
    Any advice is appreciated.
    Note -
    If I add column mapping and exclude all dates columns - import works fine. All excel files have date fields, excel files are reports from other vendor and change on weekly bases, manual formatting of the excel files prior to import are out of the question...
    The code is just basic:
    Public Sub ImportFormExcelSample()
    Dim ExcelConnection As New System.Data.OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\MyExcelSpreadsheet.xlsx;Extended Properties=""Excel 12.0 Xml;HDR=Yes""")
    ExcelConnection.Open()
    Dim expr As String = "SELECT * FROM [Sheet1$]"
    Dim objCmdSelect As OleDbCommand = New OleDbCommand(expr, ExcelConnection)
    Dim objDR As OleDbDataReader
    Dim SQLconn As New SqlConnection()
    Dim ConnString As String = "Data Source=MMSQL1;Initial Catalog=DbName; User Id=UserName; Password=password;"
    SQLconn.ConnectionString = ConnString
    SQLconn.Open()
    Using bulkCopy As SqlBulkCopy = New SqlBulkCopy(SQLconn)
    bulkCopy.DestinationTableName = "TableToWriteToInSQLSERVER"
    Try
    objDR = objCmdSelect.ExecuteReader
    bulkCopy.WriteToServer(objDR)
    objDR.Close()
    SQLconn.Close()
    Catch ex As Exception
    MsgBox(ex.ToString)
    End Try
    End Using
    End Sub
    The error I get is System.InvalidOperatiomException: The given value of type String from the data source cannot be converted to type date of the specified target column. System.FormatException: Failed to convert parameter value from String to a DateTime...
    Thank you!
    Alla Sanders

    Hi Alla,
    This issue might be caused because the field contains a NULL value, but the date/time columns in your table does not allow NULL values. Furthermore, please aslo take a look at "Data Type Issues" session in the article below:
    http://odetocode.com/blogs/scott/archive/2013/02/08/working-with-sqlbulkcopy.aspx
    Here is a similar thread about this topic for your reference, please see:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/2d99181c-fc2b-4caf-9530-3bd6ae1745f1/sqlbulkcopy-column-validation-not-working?forum=sqldataaccess
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Is it possible to import photos directly into iMovie from a folder on the HD

    I would like to use iMovie to create slide shows of still photos but can't can't seem to see how to import photos from a file on my HD.  I don't use iPhoto because of the number of photos I have and the way they are organized on the HD (moved from a PC).  Any help would be greatly appreciated.

    Yes, you can do this.
    Open a Finder window to the photos you want. Select the ones you want to move into your project. Then drag and drop into your project.
    My only warning is that they should be in a folder location that is stable. If you move or rename these photos later in the Finder, iMovie will not be able to find them and your project will be broken.

  • Importing FCP subtitle into DVDSP using TitleExchange

    Has anyone tried this converter? It converts XML file (exported from FCP) into STL, which let you import the subtitle of the FCP track that you choose into DVDSP.
    However, when I import the subtitle file from DVDSP, only 51 out of 450 segments were imported into DVDSP subtitle timeline, and not placed in correct timing with the video.
    Does anyone have any solution?
    Thanks

    You have to buy the Pro Version. € 135.
    I did and it works fine.
    Pieter

  • Importing .wmv Files Into FCE Using ffmpegX  ??????

    Was it a dream?
    A month or so ago I converted some .wmv files to use in FCE and iMovie.
    I am absolutely certain that I used ffmpegX.
    Yesterday I tried to convert some more but couldn't! I tried every possible format setting I could find - but no luck.
    Did I dream it? The wmv/FCE/iMovie movies are there for all to see.
    The only other conversion programs I have are HandBrake and Toast but I am sure I didn't use those.
    Any ideas?
    Ian.

    flip for mac is a quicktime plug that works in all qt based applications. with it, you can open a wmv in quicktime and export it as a .mov
    While I use it the other way round, to export wmv's for the web it will do what you want.
    be aware that wmv is a highly compressed format and transcoding it, even to a higher size file for example dv will look horrible.
    wmv is meant to be a delivery codec, not an editable one.

Maybe you are looking for

  • ITunes error message SIM card not supported after hard restore

    Decided to do a Restore of iPhone 4 after several unresolved issues. Everything fine until reboot when iTunes tells me that the SIM card is not recognized. I have found numerous posts and discussiopns about this; I have removed SIM card, restarted, r

  • SharePoint 2013 Designer Workflow Cannot find Action - Call Http web service

    Hi All, I Do not see the option in the workflow where i can add the action "Call HTTP Webservice. Am I doing something wrong. Thanks

  • Change order of elements each time a page is loaded?

    I'm trying to do a web page that lists products but I want to make it load the products in a random order each time the page loads. Is there a way this can be done without having to set up a database? If I did each product, say as a library item, is

  • FDM Multiload Batch loader issue

    Hi All, I need help in Multiload Batch load process. I am working on FDM 11.1.2.1. We need to move data of 6 months. I am using comma separated Text file for this purpose. When I am loading it through FDM user interface, it is fine (It is generating

  • LTC485 Model Errors

    Hello friends at the EWB forum, I obtained this model of a LTC485 transceiver and am having troubles getting it to work in multisim v.10.0.1.  I keep getting an error stating that it is "unable to find model definitions".  Anyhow can anyone take a lo