Putting a picture in Live Action

Okay, I want to put a picture, let's say a painting, in a clip so that it appears on the screen, in a certain position, while the film is going
any help?
thanks
-Danl

1) Import your picture into your browser using File>Import>Files
2) Drag picture into the Viewer Slug from Browser.
3) Choose "Image+Wire Frame" option in the Viewer Slug.
4) Adjust the picture size by using the corners of the wire frame.
5)Adjust the location by dragging it over the checkered matt.
6) Drag the picture from the Viewer Slug into the Timeline.
7) If you place the picture in your timeline and "double click" on it, it will turn the clip brown and it will appear on your "Canvas" as well. (Note: ensure the playhead, of the timeline, is over the picture and video clip being modified. Any changes made to the picture will be shown in the "Canvas" as you make them. Saves from making a change then playing to check if the was what you wanted.

Similar Messages

  • How to add live action video to the timeline in Adobe Flash CS5?

    Hi, I want to make an animation over live action footage, I've looked on the guides and the ones which explain what I need to do are for previous versions of Flash and don't work on CS5.
    I'm wondering how I can import a video in to Adobe Flash CS5, so that it plays in the timeline frame by frame? I dont mean putting it on one frame so it will play, but so i can edit objects over the top of the flash in each single frame
    Thanks.

    So are you saying that you cannot embed the video directly into the main timeline (I don't use CS5) as you could with earlier versions?
    Overall I wonder if you are using the wrong tool for the job. Flash is not a video editor and attempts to use it as such often fall short. Adobe After Effects or even a simple video editor may work better:
    http://www.adobe.com/products/aftereffects.html
    If that is not an option... how about
    .... embed video directly into main timeline... or
    ... convert video file to .swf, then import .swf... extending timeline as needed..... or
    ... if vid is short, do frame grab for each frame, save as bitmap, import the series of bitmaps, place them on layer below animation... or
    but to keep the video synced to the animation, you'll need to set the Flash doc frame rate to exactly the same as the original framerate of the video. For example, if shot in mini-dv format, the frame rate of the video is 29.97 so the Flash doc frame rate would need to be 29.97 also.
    Best of luck,
    Adninjastrator

  • How do I put a picture in my gui?

    Can anyone tell me how to put a picture in my gui?
    Thank you

    Someone used my code before I added this new stuff. They took it word for word.
    I apologize if you are getting frustrated with me. Please know I am working very hard on this. Learning Java in just a few weeks to me is impossible so I wil take all the help i can get. I know it must seem very easy to you because you know it very well but I am just learning, maybe you can remember back to when you were learning?
    Anyways i tried this code but it did not work. I didn't get any errors when compiling but nothing showed.:
    JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);Here is my code but please keep in mind that alot of it has comments because I have not actually worked on the code for it yet. Just getting the buttons set up is where I am at.
    I really wish that i could look at the examples and just have it be easy to code from it. I tried and I tried and sometimes I can get it but sometimes I just can't.
    Thank you,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.JFrame.*;
    import java.io.*;
    class Testing
      java.util.List<DVD> dvds = new java.util.ArrayList<DVD>();
      JTextField tfTitle = new JTextField(15);
      JTextField tfGenre = new JTextField(15);
      JTextField tfProductNumber = new JTextField();
      JTextField tfPrice = new JTextField();
      JTextField tfQuantity = new JTextField();
      JTextField tfInventoryValue = new JTextField();
      DefaultListModel dlm = new DefaultListModel();
      JList list = new JList(dlm);
      public void buildGUI()
        JButton btnLoadfile = new JButton("Load File");
        JButton btnAdd = new JButton("Add");
        JButton btnModify = new JButton("Modify");
        JButton btnDelete = new JButton("Delete");
        JButton btnSearch = new JButton("Search");
        JButton btnSave = new JButton("Save");
        JButton btnFirst = new JButton ("First");
        JButton btnPrevious = new JButton ("Previous");
        JButton btnNext = new JButton ("Next");
        JButton btnLast = new JButton ("Last");
        JPanel p1 = new JPanel(new BorderLayout());
        JPanel p = new JPanel(new GridLayout(6,2));
        p.add(new JLabel("DVD Title: "));
        p.add(tfTitle);
        p.add(new JLabel("Genre: "));
        p.add(tfGenre);
        p.add(new JLabel("Product Number: "));
        p.add(tfProductNumber);
        p.add(new JLabel("Price per Unit: "));
        p.add(tfPrice);
        p.add(new JLabel("Quantity on Hand: "));
        p.add(tfQuantity);
        p.add(new JLabel("Inventory Value: "));
        p.add(tfInventoryValue);
        p1.add(p,BorderLayout.NORTH);
        JPanel p2 = new JPanel();
        p2.add(btnLoadfile);
        p2.add(btnAdd);
        p2.add(btnModify);
        p2.add(btnDelete);
        p2.add(btnSearch);
        p2.add(btnSearch);
        p2.add(btnSave);
        p2.add(btnFirst);
        p2.add(btnPrevious);
        p2.add(btnNext);
        p2.add(btnLast);
        p1.add(p2,BorderLayout.CENTER);
        JFrame f = new JFrame();
        //f.setIconImage(new ImageIcon("test.gif").getImage());
        JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);
        f.getContentPane().add(p1,BorderLayout.NORTH);
        JScrollPane sp = new JScrollPane(list);
        f.getContentPane().add(sp,BorderLayout.CENTER);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.pack();
        f.setLocationRelativeTo(null);
        dvds.add(new DVD("StarWars","Action","1245",10.00,5,55.00));
        dvds.add(new DVD("OfficeSpace","Comedy","9821",20.00,5,105.00));
        dvds.add(new DVD("Lost","Drama","9382",25.00,2,52.50));
        dvds.add(new DVD("Friends","Comedy","9824",18.00,5,94.50));
        dvds.add(new DVD("Superman","Action","3652",20.00,10,210.00));
        dvds.add(new DVD("Batman","Action","9583",17.00,7,124.95));
        dvds.add(new DVD("Cinderella","Family","2734",19.00,8,159.60));
        setList();
        f.setVisible(true);
        f.setIconImage(new ImageIcon("Images/test.gif").getImage());
        btnAdd.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                    Double.parseDouble(tfPrice.getText()),
                                   Integer.parseInt(tfQuantity.getText()),
                                   Double.parseDouble(tfInventoryValue.getText())));
            setList();
            clearTextFields();
        btnDelete.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            int index = list.getSelectedIndex();
            dvds.remove(index);
            setList();
            clearTextFields();
            btnModify.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
             int index = list.getSelectedIndex();
            dvds.remove(index);
                 dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                         Double.parseDouble(tfPrice.getText()),
                                        Integer.parseInt(tfQuantity.getText()),
                                        Double.parseDouble(tfInventoryValue.getText())));
                 setList();
                 clearTextFields();
    // btnSave.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //                try
    //                  File file = new File("TestSave.txt");
    //                  PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(file)));
    //                  out.println("a line");
    //                  out.println("another line");
    //                  out.close();//<---------very important
    //                catch(IOException ioe){ioe.printStackTrace();}
                  //dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                  //                            Double.parseDouble(tfPrice.getText()),
                  //                           Integer.parseInt(tfQuantity.getText()),
                  //                           Double.parseDouble(tfInventoryValue.getText())));
    //                  setList();
    //                  clearTextFields();
    //    btnSearch.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //               String Search =
    //               JOptionPane.showInputDialog("Enter name of Movie");
    //               int x =0;
    //               for(x = 0; x < dvds.size(); x++)
    //            DVD dvd = (DVD)dvds.get(x);
    //  if(dvd.title.equals(searchTitle))// or
    //            if(dvd.title.equalsIgnoreCase(searchTitle))
    //        list.setSelectedIndex(x);
    //        break;
    //          if(x == dvds.size()) System.out "not found";
        btnPrevious.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
                 DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                int index = list.getSelectedIndex()-1;
                                 if (index <0) index = dvds.size()-1;
                                list.setSelectedIndex(index);
         btnNext.addActionListener(new ActionListener(){
                    public void actionPerformed(ActionEvent ae){
                                  DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                   //int index = list.getSelectedIndex()+1;
                                   int index = (list.getSelectedIndex()+1) % dvds.size();
                                list.setSelectedIndex(index);
        list.addListSelectionListener(new ListSelectionListener(){
          public void valueChanged(ListSelectionEvent lse){
            if(lse.getValueIsAdjusting() == false)
              int index = list.getSelectedIndex();//<---
              if(index > -1)//<---
                DVD dvd = (DVD)dvds.get(index);//<---
                tfTitle.setText(dvd.title);
                tfGenre.setText(dvd.genre);
                tfProductNumber.setText(dvd.productNumber);
                tfPrice.setText(""+dvd.price);
                tfQuantity.setText(""+dvd.quantity);
                tfInventoryValue.setText(""+dvd.inventoryValue);
      public void setList()
        dlm.clear();
        for(int x = 0, y = dvds.size(); x < y; x++)
          dlm.addElement((DVD)dvds.get(x));
      public void clearTextFields()
        tfTitle.setText("");
        tfGenre.setText("");
        tfProductNumber.setText("");
        tfPrice.setText("");
        tfQuantity.setText("");
        tfInventoryValue.setText("");
        tfTitle.requestFocusInWindow();
      public static void main(String[] args)
        EventQueue.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    class DVD
      String title;
      String genre;
      String productNumber;
      double price;
      int quantity;
      double inventoryValue;
      public DVD(String t,String g, String pn, double p, int q, double i)
        title = t; genre = g; productNumber = pn; price = p; quantity = q; inventoryValue = i;
      public String toString(){return title;}
    }

  • Importing 3D objects to animate within live action

    Regarding motion tracking, I'd like to import a 3D model of a robot and interact it with live action characters in a scene. Nothing too complicated - it hovers around but, it needs to be in 3D space for realism. What I've read of tracking, I can put an object in a scene and lock it down through camera movement and such. I would imagine the rotobrush tool will come in handy for this process. I just haven't wrapped my brain around how to animate this robot in a scene where the camera may be moving. Any suggestions?

    3d tracking a scene is never "nothing too complicated".
    The most important step is having a good script.
    Other steps following that will include planning, storyboarding, shooting the scene (with enough tracking markers - or trackable elements - in the right places in the shot), shooting a clean plate (also, take the chance to grab some ambient room noise for your audio editing later), and shooting an HDRI - note: this is not an all-inclusive list.
    That was all just pre-production and production.
    Steps in post would include tracking the shot, modeling the 3d elements, texturing the 3d elements, lighting the 3d elements, animating the 3d elements, rendering the 3d elements and their various passes (object buffers, ambient occlusion, shadows, lights, motion vectors, depth pass, etc.), compositing your 3d elements into the scene (which will involve color correction and may or may not involve keying, rotoscoping, and other techniques - you'll figure this out during the planning stages), rendering out your composite in a proper intermediate codec, bringing your final shot into your editing program, adding sound design, color grading, and producing a finished file in the correct delivery codec. Again, there is more to it than this, but these are some of the basic steps.

  • I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    Select all the photos that you need to change, then click the "Photos" menu and choose "Adjust Date and Time".
    If you add a year, it will adjust all the photos that you selected by adding a year (so if you accidentally select one of the photos that already has "2012", that will change to "2013"). 

  • Why can I not put a picture from camera roll into an album?

    Why can I not put a picture from my camera roll into an album now? When I try these are greyed out. I created these albums on my ipad too but ever since I updated to IOS 7 this can't be done, it was so easy before.

    I can now answer my own question as I've worked it out. For those who are interested click on Shared Streams then on album you require photo to be in then click on the empty box with a cross in the centre and choose photo you wish to add.

  • How do I put a picture in an email

    I want to put a pdf in an email, but not as an attachment, I want the email to open and the picture to all ready be there..just dont know how, thanks for your help

    Thank you Dan! I understand all that. What I don't get is that when I send an email to someone, the only way I can figure to put a picture in the email is by either dragging it onto the body of the email where I want to place it (which makes it an attachment) or I can use the Attach File from the File menu or the Attach button at the top of my composing window.
    I get emails all the time the look like a regular html web page with formatting and inline photos and graphics and they never show up in my email as having attachments. This is what I want to do. So, how does one place, insert, paste as html, or other wise put an image into an email so that it has formatting and does not show up as having an attachment when someone else receives my email.
    I am a photographer and the biggest reason I am asking the question is that I want to send out an email that includes an image inline in the body of the email so that the recipient will not trash the email before opening it because it has an attachment or their spam filter intercepts it and trashes it because it has an attachment.
    Thanks again for any assistance!
    If anyone likes, I can send you an example of both how my emails look (with attachments) and ones that I get that have the formatted text and photos.
    Am I just thick here and not getting something?????
    Cheers!
    Gar
    Message was edited by: Gar Benedick

  • How to put a picture/screen shot  on a post in this forum?

    How do you put a picture here on a forum page? Others have done it and there are times, like now, when it would be great if I could post and include a screen shot of the problem area.
    Lorna in Southern California

    great question, this would help if we had problems
    and could possibly use a picture of the problem to
    help solve it. I have seen this done before and now
    my curiosity is back again on how to do this.
    I hope that someone who knows how to do it will write the answer here. It would go along way to help us describe problems. Lorna in Southern California

  • How do i put a Picture in LiveType?

    How can i put a picture as a background?

    Do you want to reference the background or have it appear in your final project? You will want to open the manual to the section on BACKGROUND MOVIE to make sure you know how to enable or disable the b/g function when you render your output or move your project to FCP.
    If you are thinking you are going to use the b/g movie for the entire project and jsut place your LT elements on top of it: don't.
    bogiesan

  • How do I put a picture in Final Cut Pro X's Stats title?

    Hey! How do I put a pictures on these two little gray boxes, on the Stats generator?

    In the Title tab of the Inspector, under Published Parameters,  there are two drop zone wells. Click in one and then select your source clip from the browser or Time line…then the other.
    Russ

  • How do I put a picture in the background on Pages

    I must be having a senior moment!   In the past I have made a poster in Pages and put a picture in the background and text over the top.
    I have just tried to do it again and can't for the life of me remember how to do it.   I do have a new version of Pages which has confused me slightly.
    Any help would be much appreciated.
    Kathy

    Menu > Arrange > Section Master > Move object to Section Master
    You also should still have Pages '09 still in your Applications/iWork folder
    Pages 5.5.3 has over 100 + features missing and is comparatively buggy.
    Peter

  • Can I video capture 'live action' from Viewer screen ...

    Can I capture 'live action ' video as it appears on the 'viewer screen' in iMovie as I move the cursor across the 'source video' clips. Does iMovie allow me to record this 'action' to hard drive ?? ... Suggestions greatly appreciated.

    it is this 'rapidly changing 'still' images' as it appears in the 'viewer' that I want to record.
    You could use a screen capture application like Snapz ProX to capture the "preview" window as it is either playing or being "scrubbed." On the other hand, if you have QT Pro, you could also export the original source clip as a sequence of still images (image frequency can be selected by the user) to a folder and then simply open the "Image Sequence" using QT Pro to create a motion clip with a user selected frame rate for viewing. This approach would provide a more even playback than a screen capture of a "scrubbed" playback which depends on how fast and steadily you "scrub" the file.

  • I just cant put my pictures on it!!!!!

    I used to have one of the first generations of iPod Nanos, but it was stolen from me. Id mastered the consepts of it, and got alot of use out of it and it was a part of my everyday life, so i saved up and bought a referbish iPod Video. Ive gotten the hang of it, but for awhile have been iffy about putting my pictures on. Now that ive got aroung 38 videos, 1 movie, 27 podcast, 8 music videos and around 300 songs ive barly scratched the memmory's surface.
    So i sat down and tried to put on my photos. I selected 4 files of pictures, 1 is digital photos(241pics), 1 is little display pictures(936pics), 1 is cute little characters(36pics) and the last is Blends(258pics)
    I understand im trying to put around 13-15 thousand pictures on, but they cant take up 25.60GB can they?
    What could be wrong???
    Any Ideas?

    Im not going to try a super complex way for no reason
    I haven't suggested doing anything "for no reason".
    But the reason would be is because your iPod is not working properly with iTunes and you want to get photos onto it.
    Im Not and idiot, dont treat me like one
    Never suggested you are and none of my posts have even hinted at that.
    My iTunes says its syncing but when i look at my iPod it doesnt say "Do Not Dissconnect".
    That's what it's supposed to say when it it syncing.
    Untick Sync photos and then retick Sync photos.
    Tick Manually manage music and then untick it.
    Then untick Enable disk use.
    Have you Restored the iPod?
    Have you tried putting the iPod into Disk mode and then connecting it?
    http://docs.info.apple.com/article.html?artnum=93651

  • How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    Help PPLZ How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    http://www.ilounge.com/index.php/articles/comments/adding-album-art-in-itunes/

  • Matching part of a live-action footage with 3d perspective

    Hi!, just a simple trouble... hope so...
    I have a live-action footage showing the stage of a theater from the stage perspective. The stage has two parts, one lower than the other. The footage has no movement, the only thing i need to do is moving up the lower level, to match the upper level. I've been trying to do it just by 'eyeballing it". I duplicated the layer, mask the lower level, activated the 3d box in the layer, and tried to make the effect just by make keyframes and combining position and x rotation. But i just painful.. i just dont get it...
    link http://www.freeimagehosting.net/image.php?6ff086661b.jpg

    Hi Craig, i've been trying to shift up the layer, with a mask, the problem i'm having is that doesnt match the perspective of the frame, and when i try to softly rotate the layer as is goes up, its just doesnt look real. The idea is make a bigger bottom layer by precomposing and painting/cloning/stretching, so when its moved on 3d near to the horizon line i still have visible floor, thanxs anyway?

Maybe you are looking for