Triggers into a video playline for to trigger events in overall timeline.

How could I trigger events in my animations caused by a point in a video play?
For example, I want to show an image in the 02:30 minute.
Sorry for the language misuse, I speak Spanish.

You need to read up about "Track Targeting"
Basically - Select the tracks in the Track Headers.  Click on them.

Similar Messages

  • I made a video series on one time line and now want to copy paste sections into other tiemlines so I can separate the series into distinct videos to upload. How do I get new timelines? When I go to new event it asks for import footage.

    I made a video series on one time line and now want to copy paste sections into other tiemlines so I can separate the series into distinct videos to upload. How do I get new timelines? When I go to new event it asks for import footage.

    You seem to be new to this software, so I highly recommend that you take some time to learn it using some great tutorials available online - it will pay off to invest the time, if you follow through, for example the great (and free) introductory tutorial at izzyvideo.com.
    This is an amazing piece of software, and you'll have a lot to learn, but it's well worth it.

  • How cut a 30 video in imovie into 15 minute pieces for youtube

    Brand new to imovie. I have a 30 minute video from my iphone 4 that I have imported to imovie so I can cut it in two pieces and send two 15 minute videos to youtube. I am a beginner so step by step would be nice. Thank you

    The 30 minute video should be in an Event in the Events Library. Before exporting (sharing) to YouTube, you have to create a Project. To do this, in iMovie's menu click on File then select New Project. From the drop-down box, name your Project, choose a theme (or none), aspect ratio and frame rate - the last two should match your Event settings.
    In the Event, click on the beginning of your 30 minute clip then drag across the thumbnails until the duration is showing 15 minutes (or less). Now release the mouse button. The section you have dragged across will be highlighted with a yellow border - drag this to your Project.
    Now create a new Project, giving it a different name. In a similar fashion to before, highlight the second half of your video thumbnails in the Event and drag it to the new Project. You will now have two Projects, each of approximately 15 minutes.
    Another method is to drag all the video (30 minutes) into a Project. Duplicate the Project by right-clicking (Control-clicking) on the Project name in the Project Library. To go to Project Library view, click on the "Project Library" button at the top left of the Project thumbnails window. When you duplicate the Project, iMovie will add a number to the name. In the original Project, delete the 2nd half. In the duplicate, delete the first half. Now you have 2 separate projects ready for sharing to YouTube. To delete sections of video you first need to split the video into separate parts. Do this by right-clicking (Control-clicking) on the point where you wish to split the clip, then selecting "Split Clip" from the pop-up menu. Highlight (click on) the part to be deleted, then press the delete key on the keyboard, OR from the menu select Edit>Delete Selection.
    To upload your 2 projects to YouTube, select each in turn from the Project Library and click on Edit Project at the top left of the Project window. When the Project opens, click on Share in iMovie's menu then select YouTube. Follow the prompts from there, including your preferred size. Tip: Select a size the same as your Project size.
    I hope this covers the basics Kathleen. There is lots more I could add, regarding adding titles, transitions and music but far too much to cover so it's best that you have a look at the video Tutorials provided by Apple. I'll post back with some links for you shortly, as I've just had an interruption.
    John

  • I am wondering how to zoom into a video in iMovie '09. For example I want to  zoom into a certain part of the video. Is there any way to do this???

    I am wondering how to zoom into a video in iMovie '09. For example I want to
    zoom into a certain part of the video. Is there any way to do this???

    Yes.
    If you want to see the zoom, use the Rotate, Crop, Ken Burns Tool and select the Ken Burns effect. You can set the starting and ending rectangle for your zoom.
    If you want to go directly to the zoom, use the Rotate, Crop, KenBurns Tool and select Crop. Set the rectangle to be where you want the zoom.

  • Job not getting triggered for Multiple Scheduler Events

    hi,
    I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works.
    My objective is to run a job, whenever job starts or restarts or exceeds max run duration.
    Note : Is it possible to trigger a job, when a job RESTARTS by subscribing to JOB_START ????????
    procedure sniffer_proc(p_message in sys.scheduler$_event_info)
    is
    --Code
    end sniffer_proc
    dbms_scheduler.create_program(program_name => 'PROG',
    program_action => 'sniffer_proc',
    program_type => 'stored_procedure',
    number_of_arguments => 1,
    enabled => false);
    -- Define the meta data on scheduler event to be passed.
    dbms_scheduler.define_metadata_argument('PROG',
    'event_message',1);
    dbms_scheduler.enable('PROG');
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' or tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    I tried this too...
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' and tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    Need help
    Thanks...
    Edited by: user602200 on Dec 28, 2009 3:00 AM
    Edited by: user602200 on Dec 28, 2009 3:03 AM

    Hi,
    Here is complete code which I tested on 10.2.0.4 which shows a second job that runs after a first job starts and also when it has exceeded its max run duration. It doesn't have the condition but just runs on every event raised, but the job only raises the 2 events.
    Hope this helps,
    Ravi.
    -- run a job when another starts and exceeds its max_run_duration
    set pagesize 200
    -- create a user just for this test
    drop user test_user cascade;
    grant connect, create job, create session, resource,
      create table to test_user identified by test_user ;
    connect test_user/test_user
    -- create a table for output
    create table job_output (log_date timestamp with time zone,
            output varchar2(4000));
    -- add an event queue subscriber for this user's messages
    exec dbms_scheduler.add_event_queue_subscriber('myagent')
    -- create the first job and have it raise an event whenever it completes
    -- (succeeds, fails or stops)
    begin
    dbms_scheduler.create_job
       ( 'first_job', job_action =>
         'insert into job_output values(systimestamp, ''first job runs'');'||
         'commit; dbms_lock.sleep(70);',
        job_type => 'plsql_block',
        enabled => false, repeat_interval=>'freq=secondly;interval=90' ) ;
    dbms_scheduler.set_attribute ( 'first_job' , 'max_runs' , 2);
    dbms_scheduler.set_attribute
        ( 'first_job' , 'raise_events' , dbms_scheduler.job_started);
    dbms_scheduler.set_attribute ( 'first_job' , 'max_run_duration' ,
        interval '60' second);
    end;
    -- create a simple second job that runs when the first starts and after
    -- it has exceeded its max_run_duration
    begin
      dbms_scheduler.create_job('second_job',
                                job_type=>'plsql_block',
                                job_action=>
        'insert into job_output values(systimestamp, ''second job runs'');',
                                event_condition =>
       'tab.user_data.object_name = ''FIRST_JOB''',
                                queue_spec =>'sys.scheduler$_event_queue,myagent',
                                enabled=>true);
    end;
    -- this allows multiple simultaneous runs of the second job on 11g and up
    begin
      $IF DBMS_DB_VERSION.VER_LE_10 $THEN
        null;
      $ELSE
        dbms_scheduler.set_attribute('second_job', 'parallel_instances',true);
      $END
    end;
    -- enable the first job so it starts running
    exec dbms_scheduler.enable('first_job')
    -- wait until the first job has run twice
    exec dbms_lock.sleep(180)
    select * from job_output;

  • Slipped into strange video mode - how to reset?

    My mac slipped into a strange video mode. It looks like some kind of reverse-video. I was playing around with configuring the icon view, and with a script that automatically positioned my windows, when this happened.
    The video mode - when I boot I see the normal white-screen with apple, then the normal blue background for a second, and then it switches into "reverse-video". Menu bar is dark, lettering on menu bar is white. The usual "shadow" effect appears like a highlighted halo; the pop-up menu on the desktop appears black; the letters on that popup appear white. etc.
    If I re-boot in safe mode the video appears normal.
    Any suggestion what sequence of things I might try to get this reset?
    Thanks!

    Thank you!!
    I had used that key combination as a shortcut for my window scripts, never even occurred to me that it might have triggered something like this.
    Thanks again.

  • Wrong 'mini dvi to video' adapter for my 12" Powerbook 1.33

    I recently bought the M9319 mini dvi - video adapter for my 12" Powerbook 1.33 to find that the mini dvi on the adapter is a different size to the one on the computer and the adapters supplied with the computer.
    I've been doing a bit of research into this and it seems a bit of a grey area. Apple have not made it clear in advertising this product that it is only suitable for the newest 12" Powerbooks and even state that it will work with a 1.33 machine in their following article:
    http://docs.info.apple.com/article.html?artnum=86507
    Has anyone had a similar experience, or suggest an alternative product that will work? Did Apple make an older version that works with the 1.33?
    Any help would be much appreciated. Thanks, Graeme.

    Just took the adapter to my local Apple store and they identified it as a mini VGA to video adapter - not what it said on the packaging!
    I've noticed a few posts with this problem, so just double check before you leave the store that the packaging matches the product.

  • VGA to Video adapter for a late 2004 iBOOK

    I found a free TV and thought maybe i could use it as a larger screen format. so i went searching for cable adapters.
    I did do a search here in the search query box on word search vga to video and results show related to clam shell versions.
    while looking around the Apple web site for a VGA to Video adapter for a iBOOK G4 that shows a CPU speed of 1.2 GHz and a designation of PowerBook6, 5 yes that is how it is written in the System Profiler 'PowerBook6, 5'.
    Using a tape measure the screen itself with out the plastic frame shows a width of 9.5 inches , including the plastic frame shows: 11 and one quarter, that could round off to 12 inch even though it is not at or beyond the point 5 mark.
    The original paper work is some where ?.
    I found a VGA adapter that could possibly work at
    http://store.apple.com/us/product/M9109G/A?mco=MTY3ODQ5OTY#overview
    yet the wording states: The video adapter cable plugs into the video output port (mini-VGA) built into the back of the computers listed in the compatibility section below.
    Compatible with:
    iBook without an external reset button, eMac, iMac G5, or 17-inch iMac (1GHz) with mini-VGA port.
    does not say much for the laptop.
    There is shown a VGA adapter for the iBook here:
    http://support.apple.com/kb/HT2721?viewlocale=en_US
    yet finding it at the store ???
    if i copy the part number in a search query at the store the results show a Lexmark copy machine.
    I found many DVI adapters at:
    http://store.apple.com/us/product/M9319G/A?mco=MTY3ODQ5OTY#overview
    And then here:
    http://support.apple.com/kb/TA27124?viewlocale=en_US
    as copied and pasted here:
    The Apple Mini-DVI to S-Video/Composite Adapter does not work with PowerBook G4 (12-inch) computers,
    the one thing i have notice is that no compatibility charts actually show support for the 1.2 GHz iBOOK G4.
    I also see that there are Mini DVI to VGA adapters, Mini ?, does mention pin numbers ??.
    I was wondering if i could crossover the DVI to VGA thru the adapters using VGA and DVI cables, yet pin numbers and compatibility questions still remain.
    Suggestions ?
    Thank you.

    http://store.apple.com/us/product/M9109G/A?mco=MTY3ODQ5OTY#overview
    The adapter in the above link is the one you need.
    ~Lyssa

  • Final Cut Timeline Feed as video source for iChat?

    I was at the Apple NAB presentation in Vegas a few weeks ago, and one of the things they showcased in regard to iChat AV was the ability for an editor to videoconference with several other people at once and one of the video feeds in the chat window was actually the output from the editor's Final Cut Pro timeline. As he made changes in the FCP timeline, he could play it out in real time and all the people in the chat could see the video feed and make comments on the edit.
    OK- so we were excited because that's a workflow issue we have here. So, we bought some iSight cameras and Tiger and started to do some testing here. The only problem is that it doesn't seem very easy to set up. At first I just thought, "well, they are just playing the timeline out of the firewire port on the FCP machine and another computer is ingesting that firewire stream as a video source for iChat." except when you connect 2 Macs together with a firewire cable, the FCP system doesn't detect a DV video device to output to and the iChat system doesn't detect the incoming firewire stream as a "camera". I spoke to tech support and they said it's not something they support so no luck there.
    I did find an article on Creative Cow about someone doing something similar, but it involved exporting the FCP timeline out through a Kona analog video card into an external tape deck that does analog to DV conversion which then can be imported back into iChat as a DV stream, but last time I checked, a Kona card would run me around 1500 bucks.
    Anyone have any other ideas?

    HI Jeremy,
    Welcome to the Aple Discussion Pages.
    Based on the Auto Responding iChat Accounts that play films I would guess they were either using an AppleScript to import FCP as the Video sourdce or usiing an Add-On like iChatUSBCam that also alows you to change the video source to the desktop.
    iChatUSBcam has a new beta for Tiger http://www.ecamm.com/mac/ichatusbcam/
    Ralph

  • How to trigger event CREATED for Bus.Obj BUS2126003 (Vendor Settlement)

    Hi
    I want to start a workflow inside Agent Business, when Vendor Settlement (BUS2126003) is Created.
    The problem is that the event does not get triggered when Created. Not even the CHANGED event is tiggered during change.
    Currently I have workflow on the objects BUS2144001 (Customer Settlement - Agency Business )
    and BUS2100001 (Settlement request list - Agency Business). Both these objects gets triggered when created (EVENT = CREATED).
    I try to find out a way to trigger CREATED for Vendor Settlement. Do you have any suggestion for this?
    I've tried to find any exits, Badi's, ...from where I could trigger the event myself.... but with no good result...
    Best reg
    Henrik

    Hi HA,
    are you talking about ERS (Evaluated Receipt Settlement) in SRM?
    If yes, check with the settings in IMG, there is an ERS flag in Vendor master record that needs to be set for that vendor.
    Hope it helps.
    Aditya

  • How can i use original audio track in video editing for iPad 2?

    I am struggling to understand how the video editing apps work for iPad 2, and specifically, to understand why all the editing apps I have looked at explain how you can make these terrific video clips by ADDING audio tracks from iTunes, or. From the audio library. I just want to use the original audio on the tape?  Is that so strange? Today I took a video clip of my daughter singing with her guitar. I wanted to shorten the length a bit, so I downloaded a couple of Visio editing apps. When I pulled the clip out of my Camera Roll storage into the video editing screen, there was no sound at all,though there were ways to add other sounds ( for .99cents) most frustrating is that nowhere, does Apple explain this.  The tutorials just show someone editing a video of their friends ( with no sound) And adding text and music, as if it's normal not to include the actual sound that originally accompanied the video clip.  Seems like i wouldn't be the only customer who would prefer to hear my daughters own voice Ina video of her singing, and would like thisexplainedbefore I started downloading editing apps. If it can't be done, couldn't This be posted?

    I am not understanding your question, or your complaint, if it is a complaint.
    I movies takes a video clip, including its audio track. 
    You have the option of mutimg it, or of importing some other sound from your music library, or narrating.  What other option do you want?

  • How can I make a "Youtube" style video gallery for offline, '.air' use?

    I work for a language company and we've put together a set of videos for use in computers, not online.  Currently we're using Apple's Keynote to present our videos to to the student.  This has the advantage of allowing us to put videos in a sequential order, with absolutely no work in the development department, and most importantly was easy for any student to control and navigate.
    Things have now changed.
    Keynote can no longer hold the size of our videos and we are constantly adding and changing videos all the time.  Now that CS5 is out, I would like to build a stand alone flash application for our system modeled after the same look and functionality of youtube. 
    Key features would be:
    • Main video player that links to our resident video files
    • Something that generates and displays a title for the current video
    • A text box below the main video player for notes and instructions
    • a side bar of thumbnails for all related videos, with titles displayed
    Future features would be an easy way for us to change videos in and out of the library (by "uploading" and "downloading" using a form for the videos, although not to the net, but again, on the resident computer).
    It looks like CS5 would make this possible.  My plan is to make a youtube-like site using flash catalyst.  I think I can do it myself since the first version only needs basic elements and design, but I know I'm going to run into some problems because I'm not sure the limitations of catalyst for this style of interactive video gallery. 
    What I'm looking for is someone to just quickly guide, tell, or yell me in the right direction, and I'm really keen (hell-bent?) on trying it out using Flash Catalyst... is this the way?
    Keeping in mind that my first draft only has to be a simple working version of the system, and I can play with the rest later, is any of what I said possible using flash catalyst?
    Thanks in advance to whoever can help me out!

    I doubt MU can do this.  It's pretty limited in scope &  I don't think it supports server-side code which you would need to parse feeds.  But feel free to post your question in the MU forum.  Maybe somebody there has a workaround.
    http://forums.adobe.com/community/muse/help_with_using_adobe_muse
    Nancy O.

  • How to make best videos/audios for Creative Zen/Zen Vision W/Zen Vision M/Z

    4Easysoft Creative Zen Video Converter is an all-in-one Video Converter for Creative Zen software with high output quality and powerful video editing functions, which can help all the zen users to make the best video/audio effect.
    First of all, let’s make clear what kinds of videos/audios can get the best effect in the zen players.
    Video:
    MPEG, WMV, and AVI (MPEG-4 SP, DivX, Xvid), while MPEG-1, and MPEG-2 are supported, but must be transcoded with the included software.
    Audio:
    MP3, AAC, WMA, WAV, and Audible 2, 3, and 4 formats.
    Settings:
    Video resolution: 320×240; Video Bitrate: 500 kbps; Audio Bitrate: between 96 to 128 kbps.
    Then, let me show you how to make a full use of this powerful converter.
    Preparation:Download and install 4Easysoft Creative Zen Video Converter
    http://www.4easysoft.com/guide/creative-zen-video-converter/main.jpg
    Step 1: Run this software and add video/audio files.
    Step 2: Select output video format from the profile drop-down list.
    Click the “Profile” button to select the output video format from the drop-down list button.
    Step 3: Customize output settings.
    Click “Settings” button in the output settings area, you are allowed to customize the output parameters, specify output folder and select output format.
    Step 4: Start conversion
    Click “Start” button on right bottom of the main interface, you can begin the conversion. All the tasks of conversion will be finished at fast speed and high output quality.
    http://www.4easysoft.com/guide/creative-zen-video-converter/steps.jpg
    Tips on editing videos:
    1: Capture your favorite picture.
    Just click the “Snapshot” button to save your favorite image.
    2: Merge videos into one file.
    Just check the “merge into one file” option if you want to merge the selected contents into one file As default the merged file is named after the first selected file (either a title or a chapter)
    3: Select preference
    Click the “Preference” button and a dialog pops up, you can select the output destination, the Snapshot foler, the format of the snapshot image. You can also choose to shut down your computer or do nothing after your conversion. You can also select the CPU usage.
    4: Trim video
    You can get any clip of your video and put it on your zen.
    5: Crop video
    You can crop your video by selecting your video mode, setting crop values, or drag the frame.
    http://www.4easysoft.com/guide/creative-zen-video-converter/tips.jpg
    Ok, just enjoy movies and music with your Creative Zen player now!
    More useful tools:
    MP4 Converter is a powerful MP4 Video Converter which is designed to convert almost any video formats to MPEG-4 standard formats; WMV Converter provides perfect solution to convert common video formats to WMV with the best quality of picture and sound; Apple TV Video Converter is the excellent Apple TV converter software to convert all video files such as AVI, MPEG, WMV, MP4, MOV, RM, ASF, 3GP, VOB, etc, to Apple TV movies.
    Edited by: user11254370 on 2009-6-9 下午11:58

    Just wanted to mention - I bought the IR Remote thinking to make the player useful without navigation keys. Now I feel like I wasted more money instead of shifting to some other player by some other company with better customer service.

  • I just bought the new 2014 Mac Mini 2.6 8Gig for $699 at the Apple Store Online. I want to use it for light editing in iMovie making video's for YouTube, I couldn't afford the higher priced models. Is this going to work for me? I hope so..

    Will this do basic video editing for YouTube Video's in iMovie, I hope so.  It's all I could afford.
    Just under $800 with tax and Applecare.
    It's stock 2.6 8gigs 1 terabyte hard drive.
    I have two monitors DVI that I plan to hook to it.
    I know it's weak but will it get me going without too much hardship.
    I want to grow into the more high priced computers and Final Cut Pro later on.
    I know I will need a bigger computer then.
    Thanks

    There are many people using the basic (i5) 2012 MacMini and even older ones to edit complex films in FCP X so you should have no problems.
    I have been using FCP 7 and FCP X since they came out on my 2008 iMac Core 2 Duo and am thinking of getting the same model as you rather than pay the astronomic price for a new 27" iMac.
    The performance won't be quite as fast but it will be at least 4 times faster at rendering than my old iMac.

  • ITunes video hangs for 2 seconds at exactly 8 seconds after start of video

    This has been a nagging problem for me ever since iTunes 7. For some reason, when I play a video in iTunes, it always seems to freeze for about 2-3 seconds, and it always happens at the same time: 8 seconds into the video. Both video and audio freeze.
    If I were to open the same video file through QuickTime directly (outside iTunes), I don't see this problem. I've gone through Apple's basic troubleshooting guide (http://support.apple.com/kb/TS1386), changing all the DirectX settings in Quicktime, changing various video driver settings, and even did a full uninstall/reinstall of iTunes & QuickTime.
    The only self-installed video codec I have is DivX, but I don't think it's a video codec conflict since the videos work fine in QuickTime.
    I'm running iTunes 8.0.2 on a Windows XP laptop (Dell Latitude D620).
    Any suggestions on where to look next?

    Okay I have only used the media encoder in the past to render out  my movies so they we suitable for youtube using the "1080p Youtube" preset in the encoder.  So I am not to sure which pre-set or settings you want me to pick for this movie when I encode it. Also it says the codec it's currently in is H.264, AAC which I thought was also the codec the Media Encoder used when making movies suitable for youtube, so shouldn't it be fine inside AE?
    I also attached the "info" on the movie file, just to provide you with more detail of what I am working with.

Maybe you are looking for

  • Using PDFs in Slideshows - plus, the DVD-RW trick

    Dear Friends, As one of my menu options in a current iDVD project, I have a series of illustrated documents in TextEdit which I have converted to PDF (Problem is, I can't find the orig. TextEdit file, so must use the PDF) that the viewer can click th

  • How do I reset or delete settings in the Messaging...

    How do I reset or delete settings in the Messaging section on a 6790?  I input something that I need to delete.

  • Microsoft product future releases

    Where can i find information about Microsoft production future releases announcements? I googled it, seems that information are not clear? Can anyone shed some light on this?

  • How to handle BAPI RETURN message?

    Hi , I developed a bapi ,it is calling from java  application . i don't konw how to send the return message to java application .Pl any one help out this problem. Thanks&Regards, Pratap

  • Geographical attributes are stored in SAP equipment/functional master data?

    Hi gurus, I Need to Understand how the  typical geographical/spatial attributes are stored in SAP equipment/functional master, and how they are stored. Is it through enhancement with customer fields or through classification? Please through some ligh