Getting an image from a DVD/Quicktime member

Has anyone worked out how to grab a frame still from a DVD or Quicktime member (from within Director, directly or otherwise)
I need to do this on both PC and Mac, but the mac one is more important to me at the moment.
When I try and access the image property of such a member (DVD/Quicktime) it says 3 parameters wanted, which i guess is its way of saying 'no can do'
DVD is hard wired DTS so I'm guessing its just not possible from within director. Does anyone know of a command line utility that could output an image from a DVD?
QT - ???

As you've noted, it's not possible with a DVD from within Director.
With a QuickTime file you can open a MIAW, place a sprite on-stage whose member.directToStage = 0 and grab window.image. You don't need to explicitly open() the window to get its image, or you can open it but somewhere offscreen - assuming you need to do this at runtime and don't want your suers to see this happening.

Similar Messages

  • Using a script to get specific itens from a dvd

    How can I get specific itens from a dvd using a list of archives.
    for example: I have a list exel ou text containing the files I'd like to extract from this dvd ...Is it possible? put this list working to copy these files?
    thank you very much.....

    If you're a professional photographer with 50,000 pictures stored now and more coming all the time, you need to forget about using iPhoto and get yourself some professional-quality digital asset management software. iPhoto is not meant for people like you, and instead of providing a simple, elegant one-stop answer to all your needs, iPhoto is actually complicating your life.
    You need an application that will:
    - catalog ALL your images and keep track of where they are, no matter how many DVDs, folders, partitions or hard drives they're spread over;
    - display thumbnails of ALL of them, even when the DVD that contains them is not present in any drive, so you can select all the ones you want for a project;
    - find and copy (or export) the originals of all the files you've selected in the browser window, even if it means prompting you to insert the necessary DVDs for all of them.
    I suggest Googling "digital asset management software Macintosh" and seeing what turns up. I used to use an old version of Extensis Portfolio, and even that would have been better for your purposes than iPhoto is.

  • How to get all images from folder in c#?

    I am trying to get all images from folder. But it is not executing from following:
     string path=@"C:\wamp\www\fileupload\user_data";
                string[] filePaths = Directory.GetFiles(path,".jpg");
                for (int i = 0; i < filePaths.Length; i++)
                    dataGridImage.Controls.Add(filePaths[i]);
    Please give me the correct solution.

    How to display all images from folder in picturebox in c#?
    private void Form1_Load(object sender, EventArgs e)
    string[] files = Directory.GetFiles(Form1.programdir + "\\card_images", "*", SearchOption.TopDirectoryOnly);
    foreach (var filename in files)
    Bitmap bmp = null;
    try
    bmp = new Bitmap(filename);
    catch (Exception e)
    // remove this if you don't want to see the exception message
    MessageBox.Show(e.Message);
    continue;
    var card = new PictureBox();
    card.BackgroundImage = bmp;
    card.Padding = new Padding(0);
    card.BackgroundImageLayout = ImageLayout.Stretch;
    card.MouseDown += new MouseEventHandler(card_click);
    card.Size = new Size((int)(this.ClientSize.Width / 2) - 15, images.Height);
    images.Controls.Add(card);
    Free .NET Barcode Generator & Scanner supporting over 40 kinds of 1D & 2D symbologies.

  • Is it possible to get the image from the i pad when mirroring via Apple TV to fill the screen instead of appearing as a screen within a screen?

    When mirroring, is it possible to get the image from the ipad to fill the screen on the TV instead of appearing as a screen within a screen?

    Welcome to the Apple Community.
    No, the iPad has an aspect ratio of 4:3, a TV has an aspect ratio of 16:9, to fit one into the other is impossible without distorting the picture. If your TV has a zoom feature, you may be able to use this to fill the screen a little more to your liking, but this will result in cropping top and bottom.

  • How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    If you do Cmd+Shift+3 you'll get a full screen image saved to your desktop as a jpg file.
    Also, you can use Cmd+Shift+4 and you'll get a cursor which you click+drag to draw a box. When you release the drag the boxed in area will be saved to the Desktop as a jpg file.

  • I am downloading from a Canon 650D to Photoshop CS5.1 AND Adobe Bridge CS5.1  do i need to download a  DNG convertor? if so how do i get the images from the camera to the convertor?

    I am downloading from a Canon 650d  TO Photoshop CS5.1  and Adobe Bridge CS5.1  Do i need to download a DNG convertor? if so how do i get the images from the camera to the convertor?

    Please check the list yourself and co,mare the necessary CR version with the one your version of Photoshop utilizes. 
    If the version os higher than yours you can use the free DNG Converter – as to how to use it please read up on that.
    Camera Raw plug-in | Supported cameras

  • Getting an image from a file

    I am trying to get an image from a file
    is there a way to convert a BufferedImage into an Image?
    or otherwise get an Image directly from a file?
    my searches turn up nothing
    TIA

    okay, so here's the new code:
    //  image_tracer.java
    //  image tracer
    //  Created by Erik Schmidt on 8/21/06.
    //  Copyright (c) 2006 __MyCompanyName__. All rights reserved.
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    import java.io.*;
    import java.awt.image.*;
    import java.util.ArrayList;
    import java.awt.Graphics;
    import java.net.*;
    import java.applet.*;
    //FILE class, deals with File IO (note: does not possess the full method count of the java.io class File, this class only supports IO)
    class FILE {
         private static String fname=new String();
         //class constructor, takes a String as an argument, returns nothing
         public FILE(String fName){
              fname=fName;
         }//end constructor
         //gets filename, takes no argument, returns a String
         public static String getFilename(){ return fname; }
         //Reads in a file, takes no arguments, returns a String-either the contents of the file, or an error message
         public static String readFile() throws FileNotFoundException,IOException {
              String ret=new String();
              String tempstr=new String();
              File tFile=new File(fname);
              BufferedReader inFile=new BufferedReader(new FileReader(new File(fname)));
              if(tFile.exists()){
                   while((tempstr=inFile.readLine())!=null) ret+=tempstr+"\n";
                   ret=ret.substring(0,ret.length()-1);
              }else{
                   return null;
              }//end if
              return ret;
         }//end readFile
         //Writes to a file, takes a String as an argument, returns true for sucess; false for IOException
         public static boolean writeFile(String str) throws IOException{
              PrintWriter prnt=new PrintWriter(new FileWriter(fname,false),true);
              try{
                   prnt.println(str);
                   return true;
              }catch(Exception ioe){
                   return false;
              }//end try/catch
         }//end writeFile
         //Appends text to a file, returns true on completion; false on IOException
         public static boolean appendFile(String str) throws IOException{
              PrintWriter prnt=new PrintWriter(new FileWriter(fname,true),true);
              try{
                   prnt.println(str);
                   return true;
              }catch(Exception ioe){
                   return false;
              }//end try/catch
         }//end appendFile
         //Tells if file exists.  Takes no arguments, returns true if it exists, false if not
         public static boolean exists(){
              File tf=new File(fname);
              if(tf.exists()) return true;
              else return false;
         }//end exists
    }//end FILE class
    class MyPanel extends JPanel {
         Graphics save;
         Image blank;
         Image face;
         ArrayList x;
         ArrayList y;
         ImageObserver ob;
         private class MListen implements MouseMotionListener {
              public void mouseDragged(MouseEvent e){
                   x.add(new Integer(e.getX()));
                   y.add(new Integer(e.getY()));
                   repaint();
              public void mouseMoved(MouseEvent e){
                   //do nothing
         public MyPanel(Image f){
              x=new ArrayList();
              y=new ArrayList();
              blank=Toolkit.getDefaultToolkit().createImage("~/sites/blank.jpg");
              //save=createImage(500,500).getGraphics();
              face=f;
              addMouseMotionListener(new MListen());
              x.add(new Integer(-30));
              y.add(new Integer(-30));
         public void paintComponent(Graphics g){
              g.drawImage(face,0,0,ob);
              //save.drawImage(blank,0,0,ob);
              g.setColor(Color.black);
              //save.setColor(Color.black);
              for(int i=0;i<x.size();i++){
                   //save.fillOval(((Integer)x.get(i)).intValue(),((Integer)y.get(i)).intValue(),20,20);
                   g.fillOval(((Integer)x.get(i)).intValue(),((Integer)y.get(i)).intValue(),20,20);
    class WListen extends WindowAdapter {
         public void WindowClosed(WindowEvent e){
              System.exit(0);
    class MainFrame extends JFrame {
         MyPanel panel;
         JButton submit;
         JPanel main;
         public MainFrame(Image face){
              super("Image Tracer");
              setSize(750,750);
              panel=new MyPanel(face);
              submit=new JButton("Save");
              main=new JPanel(new BorderLayout());
              main.add(panel,BorderLayout.CENTER);
              main.add(submit,BorderLayout.SOUTH);
              setContentPane(main);
    class IMAGE {
         public Image run(String filename){
              return Toolkit.getDefaultToolkit().createImage(filename);
    public class image_tracer {
        public static void main (String args[]) {
              IMAGE image=new IMAGE();
              MainFrame frame=new MainFrame(image.run("~/sites/face.jpg"));
              frame.addWindowListener(new WListen());
              frame.show();
    }ignore the file stuff, that's for later
    why does MainFrame not display the MyPanel object?

  • When I put in a DVD, the mac locks up, an image from the DVD stays on the screen even when the dvd is removed.  The only way to remove the image if to do a hard shutdown.

    When I put in a DVD, the mac locks up, an image from the DVD stays on the screen even when the dvd is removed.  The only way to remove the image if to do a hard shutdown.
    Is the hardware corrupt?

    Could you be a little more descriptive, does this happen with all DVDs? Please describe the type of DVDs you are attempting to use, commercial movies, blank DVDs, etc...

  • Extracting a single image from a DVD

    I would like to know if Final Cut Pro or any of iMac programs have the factility to extract a single image (frame) from a playing DVD. If yes, once the image is captured into a Jpeg or Tiff, what is the best way to increase it's resolution good enough for lay into a book for printing. Or perhaps you know of any professional and high resolution programs that capture still images (frames) from a DVD. Thanks

    Seems a bit of a waste to have to capture a movie clip in order to get a still picture.
    This page has some suggestions: http://www.tuaw.com/2007/04/16/take-full-screen-dvd-snapshots/
    If you scroll down to the comments, you will see some more suggestions.

  • How can i get the images from a picture ring into a cell in Excel?

    Hi
    I need to get the chosen image from a picture ring into a cell in a Excel worksheet. If i use an invoke node i only get to write a picture from file. How can i get the picture directly from the picture ring into Excel?
    Kenneth

    No, there is no simple way of doing it directly. You need some clipboard manipulation which means you need to write some codes in excel as well. Importing the image through a file is much easier.
    -Joe

  • Can I download images from a DVD created with a newer version of iPhoto?

    Hi, my first discussion forum! Why can't I download image files from a DVD created on my mother's computer(iMac G4 with Mac OS 10.4.11)?. She's running iPhoto6 and I'm running iPhoto5. Are'n't they compatible? The disc loads up OK then says at the bottom of iPhoto page "No Photos". Have tried with several disks. Many Thanks for yr help anyone.

    Welcome to the Apple Discussions.
    No, iPhoto 5 can't read a library or DVD created in iPhoto 6, because the structure of the libraries are much different.
    Your Mac should be able to read the DVD. Use the Finder to copy the contents of the disc to your Desktop. Then from iPhoto, you can File > Import to library the Originals folder that you copied from the DVD. If your mom did lots of photo editing, you could also import the Modified folder. However, there is no way for you to re-link the edits to their originals. You will not be able to access her keywords, titles, ratings, and other iPhoto organizational metadata.
    Regards.

  • How to get full image from adress book contact

    I'm trying to get the full image out of an address book contact. All my basic code is working. The problem that I am having is that for all contacts with images the returned image size is 320x320.
    Playing around I have edited contacts, through Contacts.app, by setting a full 320x480 image. I set such an image on my own contact and called my iPhone from a different number. Sure enough when the phone rings the phone displays the full screen original image as I picked it.
    So the contact seem to have the full 320x480 image associated with it. But, when I use the ABAddressBook functions to get this same image from the contact, the returned image data says the image is 320x320. And if I display this image data into a view it appears as a square with the top and bottom 80 pixels chopped off.
    Has anyone else run into this? Any ideas?

    Hey Rick,
    I am also working on the same feature. I was also able to retrieve everything fromt eh addressboook. But I have not worked for image as I am not able to design the same GUI for Add New Record, or Info page as present in iPhone. I am facing a problem of adding UIImageView in the design of grouped table cell. and Give the big gap between the UIImage and Table cell where First,Lat Name and Occupation is being present.
    Plz help in design view.
    Thanx
    Message was edited by: a1technology

  • How to get the image from web site

    Hi,
    Anybody know the coding that use to get or download the image from the web site when the image's url is given.
    Thanks

    http://www.exampledepot.com/egs/java.net/GetImage.html

  • Hi I have opened my trial of photoshop,but cant figure out how to get an image from my pictures in t

    I have opened my trial of photoshop,but cant figure out how to get an image in.

    Hi,
    The first video on https://helpx.adobe.com/creative-cloud/learn/start/photoshop.html shows you one way to do this: If you open Photoshop, just drag the image file from Explorer/Finder into the PS workspace (or even just to the PS icon).
    Another way is to open Photoshop, select File > Open from the menu, and navigate to your image.
    Hope this helps,
    Randy Nielsen
    Learning Content Manager, Creative Cloud Learn
    Adobe

  • Imaging from external DVD player or an external usb hard drive

    Hey,
    At the High School i work at we are running Netware 6.0 SP5 and Zenworks
    4.01 ir6. We have Zen Partitions installed on most computers to store a
    local image in case the the computer needs to be re-imaged.
    However, we have a dilemma. Every now and then a hard drive will go in a
    computer.
    When we replace the hard drive with a new one, we install the Zen
    Partition, do the config and then our last step is to bring down an image.
    Unfortunately our only means of dropping down an image is from the network
    either through normal imaging or through multicast sessions.
    When we drop an image down from the network which takes up network
    bandwidth, it causes slow downs on the users computers and they start
    complaining. Our network is running at 100mb.
    Is there any way possible to image from an external DVD player or an
    external usb hard drive when dropping down an image to a new hard drive in
    the computer? Currently I have all my Zen Images on the external USB
    Maxtor 160gb hard drive and I also have Zen Images burnt to DVD's.
    If so, how do I go about doing this and is there documents on doing this?
    Thanks!!!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

Maybe you are looking for

  • Do I need individual apple ids for family members?

    We are 5, each with either ipod touch or iphone. How do I keep track of it all and maintain sepatate music and apps for each device?

  • Deploying a J2EE web application in Oracle 10g

    Hi friends, <br> I had worked with Oracle9i 9.0.3 . But it's my first experience with Oracle 10g . I have installed Oracle 10g Infrastructure , Metadata Repository and one Middle tier - Forms and i hope i have followed The Oracle 10g installation gui

  • Has anyone managed to get Authorization working with JAAS from CusLoginMod?

    Hi everybody, I am on a standalone oc4j 10.1.3.1.0 I want to be able to access a private resource using form based authentication and I would like to use JAAS from with a custom login module. The authentication part works just fine but the authorizat

  • Snow Leopard Again

    Well after updating to SL 10.6.1I had crashes in safari PS CS4 mail, preview and others. Thought I had the problem fixed after eliminating some shared folders, but the crashes popped up again now in IMovie 09. Happens after I import movies, after the

  • [SOLVED] Jitsi does not start

    So I just installed Jitsi but although I can see the icon in the menu, the application won't start. If I try to open it via terminal I get this message: /usr/bin/jitsi: line 28: /usr/bin/java: No such file or directory Any ideas? Thank you. Last edit