Two movies at the same time

I want to run two .avi files on top of each other at the same time in one movie - can i do that in idvd or imovie? Sort of like in 24, where they show four scenes in four boxes, i want to show two scenes, one on top of the screen, and one on the bottom.

I want to run two .avi files on top of each other at the same time in one movie - can i do that in idvd or imovie? Sort of like in 24, where they show four scenes in four boxes, i want to show two scenes, one on top of the screen, and one on the bottom.
No. The cheapest way to go would be QT Pro ($30). It allows up to 99 tracks of data which means you can have multiple tracks/layers of video. iMovie on allows one movie track and has no way to scale and/or offset multiple video tracks in the display area. Basically, you would have to move up to a more advanced editor like FCE or FCP to do what you want to do.

Similar Messages

  • Open two movies at the same time

    It seems that it is not possible to open two movies (.cp) at
    the same time with Captivate 1 (well you can run a new Captivate
    program an open the second movie) but will it be possible to open
    more than one movie at the same time in Captivate 2?
    Thanks

    Hello hydrosound,
    Whilst you cannot open two Captivate movies in the same
    instance of Macromedia Captivate, you can get around this by simply
    loading another copy of Captivate. I do this all the time and open
    the second project file that way.
    HTH
    Regards,
    Mark

  • Write a progarm to test two parts at the same time

    Hi:
    I need to write a program in LabView that is capable of testing two parts at the same time.
    Explanation:
    I star the test on a unit, once all the electrical test is done move that unit to the pressure test without loosing the current test information and continue the test of the unit thewn generate a serial number only if it passes all the test. Then while the previous unit is going thru the pressure test star testing another unit for the elecrical test and so on.
    I am using LabView 2012

    From what you have described, I agree with what has been answered above. TestStand is specifically designed for. If you would like to provide more information about your application we could give you a more detailed response. For more information about TestStand follow this link
    www.ni.com/teststand
    Ryan
    Ryan
    Applications Engineer
    National Instruments

  • How do I separate two movies on the same timeline?

    I'm using Premiere Elements 11 but have not used it for a while so I've forgotten much of what I've learned. So here is my question: I have two movies on the same timeline. How do I separate them. In other words, how can I move one over on the timeline so it will not confuse my editing of the other one? But better yet - how can I just take one movie off the time line completely and edit it later as a separate movie. I really have four short movies - one minute long. I'd like to edit them separately, with a new file name. I don't know how to do this anymore.  

    Tommyvincent
    I have been doing some homework on the questions that you raised in this thread.
    Observations....
    1.
    After you  import a video into Project Assets, you can right click it, select Rename. That file when dragged to the Timeline will have the new name.
    But...
    If you import a video into Project Assets, drag it to the Timeline, right click the Timeline clip, select Rename from the pop up, then the Timeline file will be renamed but not its thumbnail in Project Assets. You would have rename that Project Asset thumbnail to match if you wanted to. But, these renamed files still trace back to the original with its original file name at its hard drive save location.
    2.
    About getting off your Timeline...one way would be to export the clip selectively if it were in group of clips on the Timeline. Two requirements for that
    a. In Edit area, set the gray tabs of the Work Area Bar to span just the segment to be exported
    and
    b. In the export area, have a check mark next to "Share Work Area Bar Only" option.
    3.
    If you brought a clip into Project Assets, double clicked it to open its Preview Window, you could trim the clip with the Set In and Set Out points and create "subclips" with new names in Project Assets. These "subclips" would be part of that project's media that could be dragged to the Timeline when needed.
    Please review and determine if any of the above is going in the right direction for what you want to do.
    Thank you.
    ATR

  • Can i run two widgets at the same time on the same page?

    Can i run two widgets at the same time on the same page?
    Hi
    I have created and published 4 free ibooks and i would to run two widgets
    - a countdown clock
    - a review test
    at the same time on the page. Can i do that?
    Thanks in advance
    Haris

    thanks for your answer. Yes indeed HTML widgets run only full screen (snif snif). I consider this as a "distinguishing treatment".
    One solution  i read !!!!! was to create through keynote a countdown clock, to export to quicktime move and to imported at iBA predefined widgets. of course this is not the solution i need.
    So, in order to have at the same widget and run together a count down clock and a preview test (20 questions)  i must
    1)"hack" the preview widget and insert a countdown clock
    2) create a preview test using iAD.....
    thanks again
    haris

  • Can I call two numbers at the same time on facebook?

    Can I call two numbers at the same time on facebook?

    thanks for your answer. Yes indeed HTML widgets run only full screen (snif snif). I consider this as a "distinguishing treatment".
    One solution  i read !!!!! was to create through keynote a countdown clock, to export to quicktime move and to imported at iBA predefined widgets. of course this is not the solution i need.
    So, in order to have at the same widget and run together a count down clock and a preview test (20 questions)  i must
    1)"hack" the preview widget and insert a countdown clock
    2) create a preview test using iAD.....
    thanks again
    haris

  • How to make 2 balls move at the same time

    I am working on an app in xcode and I need to make 2 balls move at the same time. When I try to use the same code for both of the balls, the 2 CGPoints interfere. Here is my code in the .m file.
    @synthesize ball, ball2;
    -(void) onTimer {
            ball.center = CGPointMake(ball.center.x+pos.x,ball.center.y+pos.y);
            if(ball.center.x > 295 || ball.center.x < 10)
                pos.x = -pos.x;
            if(ball.center.y > 435 || ball.center.y < 35)
                pos.y = -pos.y;
    - (void) onTimer2 {
    ball2.center = CGPointMake(ball2.center.x+pos.x,ball2.center.y+pos.y);
    if(ball2.center.x > 295 || ball2.center.x < 10)
    pos.x = -pos.x;
    if(ball2.center.y > 435 || ball2.center.y < 35)
    pos.y = -pos.y;
    [self collision];
    - (void)viewDidLoad
              [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer) userInfo:nil repeats:YES] retain];
        [[NSTimer scheduledTimerWithTimeInterval:0.04 target:self selector:@selector(onTimer2) userInfo:nil repeats:YES] retain];
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    Here is my .h file
    @interface game : UIViewController {
        IBOutlet UIImageView *ball;
        IBOutlet UIImageView *ball2;
    @property(nonatomic,retain) IBOutlet UIImageView *ball;
    @property(nonatomic,retain) IBOutlet UIImageView *ball2;

    What do you mean by the 2 CGPoints interfere?
    You're changing the location of the balls by pos.x and pos.y, where is the code for those? what is it doing?
    Why have two timers?  One timer would work , just have the code move both balls.
    The refresh rate for the screen is 60hz. (60 time a second) You'll get better animation if you stick as close to this value as you can.

  • Stream from iMac to 2 different ATV's; different movies, at the same time?

    Can I stream  from my iTunes library on my mid 2014 iMac; to two different 3rd gen ATV's, two different movies at the same time?

    Thank you Alley_Cat for your reply!
    Yes...all devices are enabled for Home Sharing with the same APPLE ID, all on the same network, the content is in iTunes and compatible, computer and iTunes running, and I am initiating playback on the AppleTVs themselves via the Computers icon.
    playback is is fine on 1st ATV. When I TRY to connect to ATV #2... and try to connect to my iTunes library i get:
    COULD NOT CONNECT TO _______ LIBRARY MAKE SURE COMPUTER IS ON THE SAME NETWORK AND ITUNES IS UP TO DATE AND ITUNES IS RUNNING.
    iTunes is up to date ver11.3.1.(2) .  As noted before,same network iTunes compatible, running and initiating playback on ATV's via Computers icon.

  • Drag two items at the same time

    I need to drag two items at the same time using the jqueryUI draggable widget; as in I'll drag one of the items, and the other one should stick to it.
    Is this possible ?

    Thanks for your reply. I fond a way to do this although this is not copy/paste.
    1. Open "iMovie Projects" folder and find the project that contains voiceover file
    2. Right click and select "Show Package Contents"
    3. Drag and drop "Voiceover Recording.aiff" file to a project I want to copy/paste
    In this way you don't need to use iTunes or other software to move around audio files.

  • Is there a way to show two angles at the same time in the final edit rather than switch between them with Multicam?

    Can I show two angles at the same time in the final edit rather than alternate with Multicam?

    Stack two clips on top of each other and reduce the sizes. I think that's what you want.

  • Working on 5 movies at the same time and one will not open. It is there and will play but won't open and I can't share it or move file.

    Working on a project with 5 movies at the same time andone movie project will not open    I can see it and play it but can't open to work on it or  share or copy it, what should I do?

    WHat version of iMovie?
    ANd for iPad or iPhone?
    Are you having issues opening a video you took on the device?
    OR an issue opening a project you previously created?

  • HT1657 Can you rent more than one movie at the same time?

    Can you rent more than one movie at the same time on itunes?

    I think Justin is correct and you should have statistics in place and a reasonable partition scheme so that the optimizer selects the correct partitions rather than telling it what to do. You paid a lot for partitioning after all.
    There are some, possibly misguided, examples in the manuals showing how to create a view so you can delete from a single partition without specifying the partition criteria in the delete statement. This in effect turns partitioning back into DIY partitioning i.e. separate tables, union all and pretend its a single logical table using a view. But backwards.
    So to do what you want you just assume the partitions are separate tables, and then use union all to glue the ones you want back together.
    select * from sales partition (sales_q1_2000)
    union all
    select * from sales partition (sales_q1_2001)
    union all
    select * from sales partition (sales_q1_2003)
    union all
    select * from sales partition (sales_q1_2004);It probably goes without saying that as well as making the expensive version of partitioning behave like the free alternative, there is the possibility that it will perform like it as well.

  • One again, "can I use CC on two computers at the same time?" - in practice.

    I know this has been asked before and all those threads are locked. Many asked the question, but I haven't found a satisfying answer yet.
    Can I multi task with CC?
    I want to have my laptop next to my desktop. And while I render, export or whatever my newly shot documentary on the laptop I want to work with a music video project on my desktop. Then when the render is finished I render the music video and go back to the laptop and continue on the documentary. Or maybe I just work 5 minutes on the desktop music video, then come up with something brilliant for the project on the laptop and switch. Back and forth. Will that kind of activity result in any kind of limitation, usage-wise?
    So, working on Premiere on my two computers at the same time.. is it possible? Technically? I know the EULA says "only one person". But will it let one person mutli task?
    I need to know this before I buy. sorry for asking this again, please bless me with a clear answer

    Hi Jimmy Crim,
    Yes in case of Creative cloud subscription you are allowed to install and use the cc apps in any two machines.
    Even if you want you care allowed to use these apps together in both the machines.
    Thanks
    Kapil

  • How do I get 2 layers to move at the same time?

    How do you get 2 layers to move at the same time?

    Thanks for the help folks, sorry I've been away.
    I'd love help with the problem of why I only one track seems to accept clips to play. When I drag them to other tracks or create a track by dragging the clips are grayed out and won't play, but if I drag them to the one track where they're blue they play.

  • Can I access two websites at the same time?

    Does Dreamweaver have the ability to open two websites at the same time?
    I basically have a CMS hosted on one server, that connects to my clients sites on other servers. I want to be able to open files on one server and edit them and also edit files on another server at the same time.
    If this isn't available in Dreamweaver, then I think it should be. I often need to copy code from one page in a site to another page in different site. To have the ability to have two windows open, each connected to a different website server would be invaluable to me. By having separate windows, each can have its own server connection. I don't know how easy that would be, but I'd love it!
    Cheers
    Glynn

    You can only connect to one site at a time.  And you need to edit files locally, save & then upload to the remote server.   AFAIK, no single FTP app is capable of connecting to more than one server at a time.  You might be able to do what you want with DW open and an additional 3rd party FTP client like Filezilla, each connecting to different servers.
    Nancy O.

Maybe you are looking for

  • Why can others not open a PDF after I have digitally signed it.

    I have a PDF that I have digitally signed that others users, MACS and WINDOWS can not open after my signature is applied on my computer.  I can still open and view the document with no problem.  I have been able to successfully sign the document on a

  • Open contracts

    Hi Friends, Is there any std trcode for getting the open contracts (SD)...or ABAP query is required to generate the report for the same. Thanks Ivy

  • Manage System Center Endpoint Protection (SCEP) policies for Internet-based clients

    Hi, I've recently change my SCCM configuration in order to allow internet-based clients registered in our domain to communicate with our primary site server. The objectives were to let us manage the SCEP policies of these clients and receive alerts w

  • Check print program prints an extra page...

    Hello Experts, I have a dillema here wherein I cannot customize the standard check print program RFFOUS_C. When I check the spool, it always prints an extra page even though the prior page does not overflow. I also do not have any explicit NEW-PAGE o

  • Want to know abt standard functionality

    hey guys Can you tell me if there is some standard functionality avialable in R12 to achieve below functionality 1)Shows the detail for the Sub-Lease contracts and 3rd parties. PN module 2)To show Future open balances by Store PN module