Need source code to add image from a rolling camera onto a panel

is there anyone who would be kind enough to tell me how i would get a moving camera image to appear on a specified panel.I am using Java awt

Thankyou for responding. its important because i dont have a clue where to begin and i have a project idea that could help me exscape back into freedom

Similar Messages

  • Errors in code that captures images from webcam

    Here is the code
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.datasink.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import com.sun.image.codec.jpeg.*;
    // import com.sun.media.vfw.VFWCapture; // JMF 2.1.1c version
    import com.sun.media.protocol.vfw.VFWCapture; // JMF 2.1.1e version
    public class JWebCam extends JFrame
    implements WindowListener, ComponentListener
    protected final static int MIN_WIDTH = 320;
    protected final static int MIN_HEIGHT = 240;
    protected static int shotCounter = 1;
    protected JLabel statusBar = null;
    protected JPanel visualContainer = null;
    protected Component visualComponent = null;
    protected JToolBar toolbar = null;
    protected MyToolBarAction formatButton = null;
    protected MyToolBarAction captureButton = null;
    protected Player player = null;
    protected CaptureDeviceInfo webCamDeviceInfo = null;
    protected MediaLocator ml = null;
    protected Dimension imageSize = null;
    protected FormatControl formatControl = null;
    protected VideoFormat currentFormat = null;
    protected Format[] videoFormats = null;
    protected MyVideoFormat[] myFormatList = null;
    protected boolean initialised = false;
    * Constructor
    public JWebCam ( String frameTitle )
    super ( frameTitle );
    try
    UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
    catch ( Exception cnfe )
    System.out.println ("Note : Cannot load look and feel settings");
    setSize ( 320, 260 ); // default size...
    addWindowListener ( this );
    addComponentListener ( this );
    getContentPane().setLayout ( new BorderLayout() );
    visualContainer = new JPanel();
    visualContainer.setLayout ( new BorderLayout() );
    getContentPane().add ( visualContainer, BorderLayout.CENTER );
    statusBar = new JLabel ("");
    statusBar.setBorder ( new EtchedBorder() );
    getContentPane().add ( statusBar, BorderLayout.SOUTH );
    * Initialise
    * @returns true if web cam is detected
    public boolean initialise ( )
    throws Exception
    return ( initialise ( autoDetect() ) );
    * Initialise
    * @params _deviceInfo, specific web cam device if not autodetected
    * @returns true if web cam is detected
    public boolean initialise ( CaptureDeviceInfo _deviceInfo )
    throws Exception
    statusBar.setText ( "Initialising...");
    webCamDeviceInfo = _deviceInfo;
    if ( webCamDeviceInfo != null )
    statusBar.setText ( "Connecting to : " + webCamDeviceInfo.getName() );
    try
    setUpToolBar();
    getContentPane().add ( toolbar, BorderLayout.NORTH );
    ml = webCamDeviceInfo.getLocator();
    if ( ml != null )
    player = Manager.createRealizedPlayer ( ml );
    if ( player != null )
    player.start();
    formatControl = (FormatControl)player.getControl ( "javax.media.control.FormatControl" );
    videoFormats = webCamDeviceInfo.getFormats();
    visualComponent = player.getVisualComponent();
    if ( visualComponent != null )
    visualContainer.add ( visualComponent, BorderLayout.CENTER );
    myFormatList = new MyVideoFormat[videoFormats.length];
    for ( int i=0; i<videoFormats.length; i++ )
    myFormatList = new MyVideoFormat ( (VideoFormat)videoFormats );
    Format currFormat = formatControl.getFormat();
    if ( currFormat instanceof VideoFormat )
    currentFormat = (VideoFormat)currFormat;
    imageSize = currentFormat.getSize();
    visualContainer.setPreferredSize ( imageSize );
    setSize ( imageSize.width, imageSize.height + statusBar.getHeight() + toolbar.getHeight() );
    else
    System.err.println ("Error : Cannot get current video format");
    invalidate();
    pack();
    return ( true );
    else
    System.err.println ("Error : Could not get visual component");
    return ( false );
    else
    System.err.println ("Error : Cannot create player");
    statusBar.setText ( "Cannot create player" );
    return ( false );
    else
    System.err.println ("Error : No MediaLocator for " + webCamDeviceInfo.getName() );
    statusBar.setText ( "No Media Locator for : " + webCamDeviceInfo.getName() );
    return ( false );
    catch ( IOException ioEx )
    statusBar.setText ( "Connecting to : " + webCamDeviceInfo.getName() );
    return ( false );
    catch ( NoPlayerException npex )
    statusBar.setText ("Cannot create player");
    return ( false );
    catch ( CannotRealizeException nre )
    statusBar.setText ( "Cannot realize player");
    return ( false );
    else
    return ( false );
    * Dynamically create menu items
    * @returns the device info object if found, null otherwise
    public void setFormat ( VideoFormat selectedFormat )
    if ( formatControl != null )
    player.stop();
    imageSize = selectedFormat.getSize();
    formatControl.setFormat ( selectedFormat );
    player.start();
    statusBar.setText ( "Format : " + selectedFormat );
    currentFormat = selectedFormat;
    visualContainer.setPreferredSize ( currentFormat.getSize() );
    setSize ( imageSize.width, imageSize.height + statusBar.getHeight() + toolbar.getHeight() );
    else
    System.out.println ("Visual component not an instance of FormatControl");
    statusBar.setText ( "Visual component cannot change format" );
    public VideoFormat getFormat ( )
    return ( currentFormat );
    protected void setUpToolBar ( )
    toolbar = new JToolBar();
    // Note : If you supply the 16 x 16 bitmaps then you can replace
    // the commented line in the MyToolBarAction constructor
    formatButton = new MyToolBarAction ( "Resolution", "BtnFormat.jpg" );
    captureButton = new MyToolBarAction ( "Capture", "BtnCapture.jpg" );
    toolbar.add ( formatButton );
    toolbar.add ( captureButton );
    getContentPane().add ( toolbar, BorderLayout.NORTH );
    protected void toolbarHandler ( MyToolBarAction actionBtn )
    if ( actionBtn == formatButton )
    Object selected = JOptionPane.showInputDialog (this,
    "Select Video format",
    "Capture format selection",
    JOptionPane.INFORMATION_MESSAGE,
    null, // Icon icon,
    myFormatList, // videoFormats,
    currentFormat );
    if ( selected != null )
    setFormat ( ((MyVideoFormat)selected).format );
    else if ( actionBtn == captureButton )
    Image photo = grabFrameImage ( );
    if ( photo != null )
    MySnapshot snapshot = new MySnapshot ( photo, new Dimension ( imageSize ) );
    else
    System.err.println ("Error : Could not grab frame");
    * autoDetects the first web camera in the system
    * searches for video for windows ( vfw ) capture devices
    * @returns the device info object if found, null otherwise
    public CaptureDeviceInfo autoDetect ( )
    Vector list = CaptureDeviceManager.getDeviceList ( null );
    CaptureDeviceInfo devInfo = null;
    if ( list != null )
    String name;
    for ( int i=0; i<list.size(); i++ )
    devInfo = (CaptureDeviceInfo)list.elementAt ( i );
    name = devInfo.getName();
    if ( name.startsWith ("vfw:") )
    break;
    if ( devInfo != null && devInfo.getName().startsWith("vfw:") )
    return ( devInfo );
    else
    for ( int i = 0; i < 10; i++ )
    try
    name = VFWCapture.capGetDriverDescriptionName ( i );
    if (name != null && name.length() > 1)
    devInfo = com.sun.media.protocol.vfw.VFWSourceStream.autoDetect ( i );
    if ( devInfo != null )
    return ( devInfo );
    catch ( Exception ioEx )
    // ignore errors detecting device
    statusBar.setText ( "AutoDetect failed : " + ioEx.getMessage() );
    return ( null );
    else
    return ( null );
    * deviceInfo
    * @note outputs text information
    public void deviceInfo ( )
    if ( webCamDeviceInfo != null )
    Format[] formats = webCamDeviceInfo.getFormats();
    if ( ( formats != null ) && ( formats.length > 0 ) )
    for ( int i=0; i<formats.length; i++ )
    Format[] aFormat = formats;
    if ( aFormat[i] instanceof VideoFormat )
    Dimension dim = ((VideoFormat)aFormat).getSize();
    // System.out.println ("Video Format " + i + " : " + formats.getEncoding() + ", " + dim.width + " x " + dim.height );
    else
    System.out.println ("Error : No web cam detected");
    * grabs a frame's buffer from the web cam / device
    * @returns A frames buffer
    public Buffer grabFrameBuffer ( )
    if ( player != null )
    FrameGrabbingControl fgc = (FrameGrabbingControl)player.getControl ( "javax.media.control.FrameGrabbingControl" );
    if ( fgc != null )
    return ( fgc.grabFrame() );
    else
    System.err.println ("Error : FrameGrabbingControl is null");
    return ( null );
    else
    System.err.println ("Error : Player is null");
    return ( null );
    * grabs a frame's buffer, as an image, from the web cam / device
    * @returns A frames buffer as an image
    public Image grabFrameImage ( )
    Buffer buffer = grabFrameBuffer();
    if ( buffer != null )
    // Convert it to an image
    BufferToImage btoi = new BufferToImage ( (VideoFormat)buffer.getFormat() );
    if ( btoi != null )
    Image image = btoi.createImage ( buffer );
    if ( image != null )
    return ( image );
    else
    System.err.println ("Error : BufferToImage cannot convert buffer");
    return ( null );
    else
    System.err.println ("Error : cannot create BufferToImage instance");
    return ( null );
    else
    System.out.println ("Error : Buffer grabbed is null");
    return ( null );
    * Closes and cleans up the player
    public void playerClose ( )
    if ( player != null )
    player.close();
    player.deallocate();
    player = null;
    public void windowClosing ( WindowEvent e )
    playerClose();
    System.exit ( 1 );
    public void componentResized ( ComponentEvent e )
    Dimension dim = getSize();
    boolean mustResize = false;
    if ( dim.width < MIN_WIDTH )
    dim.width = MIN_WIDTH;
    mustResize = true;
    if ( dim.height < MIN_HEIGHT )
    dim.height = MIN_HEIGHT;
    mustResize = true;
    if ( mustResize )
    setSize ( dim );
    public void windowActivated ( WindowEvent e ) { }
    public void windowClosed ( WindowEvent e ) { }
    public void windowDeactivated ( WindowEvent e ) { }
    public void windowDeiconified ( WindowEvent e ) { }
    public void windowIconified ( WindowEvent e ) { }
    public void windowOpened ( WindowEvent e ) { }
    public void componentHidden(ComponentEvent e) { }
    public void componentMoved(ComponentEvent e) { }
    public void componentShown(ComponentEvent e) { }
    protected void finalize ( ) throws Throwable
    playerClose();
    super.finalize();
    class MyToolBarAction extends AbstractAction
    public MyToolBarAction ( String name, String imagefile )
    // Note : Use version this if you supply your own toolbar icons
    // super ( name, new ImageIcon ( imagefile ) );
    super ( name );
    public void actionPerformed ( ActionEvent event )
    toolbarHandler ( this );
    class MyVideoFormat
    public VideoFormat format;
    public MyVideoFormat ( VideoFormat _format )
    format = _format;
    public String toString ( )
    Dimension dim = format.getSize();
    return ( format.getEncoding() + " [ " + dim.width + " x " + dim.height + " ]" );
    class MySnapshot extends JFrame
    protected Image photo = null;
    protected int shotNumber;
    public MySnapshot ( Image grabbedFrame, Dimension imageSize )
    super ( );
    shotNumber = shotCounter++;
    setTitle ( "Photo" + shotNumber );
    photo = grabbedFrame;
    setDefaultCloseOperation ( WindowConstants.DISPOSE_ON_CLOSE );
    int imageHeight = photo.getWidth ( this );
    int imageWidth = photo.getHeight ( this );
    setSize ( imageSize.width, imageSize.height );
    final FileDialog saveDialog = new FileDialog ( this, "Save JPEG", FileDialog.SAVE );
    final JFrame thisCopy = this;
    saveDialog.setFile ( "Photo" + shotNumber );
    addWindowListener ( new WindowAdapter()
    public void windowClosing ( WindowEvent e )
    saveDialog.show();
    String filename = saveDialog.getFile();
    if ( filename != null )
    if ( saveJPEG ( filename ) )
    JOptionPane.showMessageDialog ( thisCopy, "Saved " + filename );
    setVisible ( false );
    dispose();
    else
    JOptionPane.showMessageDialog ( thisCopy, "Error saving " + filename );
    else
    setVisible ( false );
    dispose();
    setVisible ( true );
    public void paint ( Graphics g )
    g.drawImage ( photo, 0, 0, getWidth(), getHeight(), this );
    * Saves an image as a JPEG
    * @params the image to save
    * @params the filename to save the image as
    public boolean saveJPEG ( String filename )
    boolean saved = false;
    BufferedImage bi = new BufferedImage ( photo.getWidth(null),
    photo.getHeight(null),
    BufferedImage.TYPE_INT_RGB );
    Graphics2D g2 = bi.createGraphics();
    g2.drawImage ( photo, null, null );
    FileOutputStream out = null;
    try
    out = new FileOutputStream ( filename );
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder ( out );
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam ( bi );
    param.setQuality ( 1.0f, false ); // 100% high quality setting, no compression
    encoder.setJPEGEncodeParam ( param );
    encoder.encode ( bi );
    out.close();
    saved = true;
    catch ( Exception ex )
    System.out.println ("Error saving JPEG : " + ex.getMessage() );
    return ( saved );
    } // of MySnapshot
    public static void main (String[] args )
    try
    JWebCam myWebCam = new JWebCam ( "TimeSlice Web Cam Capture" );
    myWebCam.setVisible ( true );
    if ( !myWebCam.initialise() )
    System.out.println ("Web Cam not detected / initialised");
    catch ( Exception ex )
    ex.printStackTrace();
    when I run it I get the following errors
    BufferToImage cannot convert buffer
    could not grab frame
    pls help

    Do you expect anyone to read this?
    http://forum.java.sun.com/help.jspa?sec=formatting
    By the way, you have a condition that makes it print those messages. Check why that condiiton isn't rue.

  • Grab images from a IP camera

    ---BACKGROUND---
    We have very little experience with programming for the LabView, but good experience with programming in general.
    ---SETUP---
    In one end we have the newest LabView (8?) that is connected to several OPC driven PLSes.
    In the other end we have a piece of custom hardware that grabs images from several analog cameras (surveillance machine)
    We need to send the image from the surveillance machine to the labview
    software as easily as possible. We have access to the sourcecode for
    the surveillance machine to writing a custom protocol to send images is
    no problem, the problem is the labview end.
    My question is if there is a way to make labview connect to a machine
    and download images from it, the exact protocol is no problem since we
    can customize the hardware completly, a llI need is a connection where
    images come streaming to it.
    If not then maybe there is a way to program the labview to do the following;
       Connect to a machine on the internet
    Send commands to the connected machine
    Receives images in a loop until connection is broken
    Hope anyone got any clues as to what I am trying to accomplish here.
    Thanks in advance
    Thomas Leggett
    Programmer for DigiTales

    nyc thanks for your time,
    Here is my code, along with the C# example code from the vendor. 
    FYI the sample code from the vendor did not work on the customers machine either, just showed a black screen. I installed VS2010 Express C#.NET on the machine to test if I could grab images from the vendors example and no joy....didnt work.
    Steven Howell
    Certified LabVIEW Developer
    Certified Professional Instructor
    Systems Developer
    Optimation - Houston
    [email protected]
    Attachments:
    Pelco Test.zip ‏188 KB

  • Lightroom not merging and sorting images from two different cameras - help please !!

    Hi guys,
    I need some help here. I've just imported a few thousands of images form two different cameras, however Lightroom simply sorts them by camera only. (i.e.. images from the first camera, all sorted by capture time, then come images form the second camera.)
    The cameras are the same brand and model, times are synchronised, but the images refuse to merge and sort. I've tried putting them in the same folder and importing, but that doesn't do it either. I've been doing this for years and it all worked fine, till today. Does anyone know whats causing this, and how I can fix it?
    Thanks in anticipation.
    Latch

    Hi John,
    View > Sort > Capture Time is checked, The cameras are in sync down to the second, and images from both have been merging and sorting fine for over two years, till today. Sort order is all set to capture time in all modes and views, but its still sorting first by camera.

  • How to capture an image from my usb camera and display on my front panel

    How to capture an image from my usb camera and display on my front panel

    Install NI Vision Acquisition Software and NI IMAQ for USB and open an example.
    Christian

  • Photos won't import images from my Canon camera.  When connected, program sees the images, tells me it will import the new ones, then freezes once import starts, not allowing any other operation to happen.  MacbookPro 15" 2012, OSX Yosemite 10.10.3.

    Photos won't import images from my Canon camera.  When connected, program sees the images, tells me it will import the new ones, then freezes once import starts, not allowing any other operation to happen.  MacbookPro 15" 2012, OSX Yosemite 10.10.3.  Any suggestions?

    Solution discovered.  Faulty connector cable.  Tried a different one and it worked.

  • Any ideas of how to receive images from a wireless camera (2.4 ghz) to my ipad rather than the handheld DVR supplied?

    Any ideas of how to receive images from a wireless camera (2.4 ghz) to my ipad rather than the handheld DVR supplied?

    some of those often have webserver so one just navigate to it using a browser

  • Stop motion animation help using images from a digital camera...how tricky is this?

    I'm teaching a media arts course for the first time, and I'm trying to figure out how to use images taken with a digital camera, import them to Premiere Elements 7, and put them in the timeline without having to shorten the length of them.  As soon as I drag an image from the project bin onto the timeline, it automatically plays for 5 seconds, and I have to try to shorten it to one frame length.  If that's what it takes, this process is going to take a lot of time, because the students are going to be taking several hundred photos.  If I edit them in the preview, it's still just as difficult.  Is there any way to change the settings before I import the images so that they automatically are one or two frames in length on my timeline?  Your help would be GREATLY appreciated. 

    Welcome to the forum.
    As Steve points out, setting the Edit>Preferences>Still Duration BEFORE Importing, will get what you want.
    When doing Stop-Motion, I find that a Duration = 3 to 5 Frames, works best, but that will depend on the images, how far apart, they were shot, and the exact effect that I want. It might take a little experimenting, to get things correct to both your eye, and to the images from the camera.
    Also, Scaling the Still Images, prior to Import is a very, very good idea, and especially so, with Stop-Motion, as you will have lots of them.
    Good luck,
    Hunt
    PS - if you are using Transitions, between the Still Images, you will want to alter the Duration of those too, prior to applying them.

  • I have an older imac with os10.4.11. Will it transfer images from newer digital camera using my iphoto when on the camera box it specifies a mac os of 10.5 or above?mo

    I have an older imac with OSX 10.4.11. Will it transfer images  from newer digital cameras on to my computer via my iphoto program when the camera box states that the required mac OS is 10.5 or above or is that only if you wish to load the camera manufacturers own image processing program?

    Which camera are you speaking about?
    Why are you on such an old version on OS X?
    With the information provided, I am inclined to say, no.
    Allan

  • Raspberry Pi B+ capture a image from a video cam

    Hello,
    is there any way to capture a image from the video camera. I didn't find any media class for video. Nor did I find any Runtime.exec to use a native linux command.
    Did I overseen something?

    Hi Klaus,
    There a few ideas in design stage, but nothing solid enough to talk about. And actually it should not have been possible with older ME as it's specifically prohibited by the spec. I mean native methods in Java applications. Of course there may be other means to communicate with native applications, like files, sockets etc. But no direct calls
    The date for ME 8.1 GA (General Availability) release is not confirmed yet. But it should happen quite soon, stay tuned
    Regards.
    Andrey

  • Receive image from two web-camera​s

    Hallo all.
    I have LV 7.1.1
    I have two web-cameras which are connected to USB1 & USB2.
    How can I see two images  from two web-cameras or more in LV  at the same time?
    With respect
    Aleksandr
    Message Edited by [email protected] on 06-19-2006 01:20 AM

    Aleksandr,
    The IMAQ for USB driver communicates to the 3rd party camera driver using Directshow.  There is an IMAQ USB Property Page VI available in LabVIEW that gives you the ability to open the camera configuration page of the 3rd party camera provided that there is one available.  Depending on the vendor, you may or may not have access to change the resolution of your camera through this property page.   I would contact the manufacturer of the camera to find out if there is a way to do this.
    In case you are curious to know where to find the IMAQ USB Property Page VI, right-click on the block diagram and go to Search in the upper right corner of the palette.  Search for "IMAQ USB Property Page" and the corresponding VI will show up in the list below it.
    Regards,
    Mike T
    National Instruments

  • Im trying to add music from a different computer onto my phone..how can i get it to work?

    im trying to add music from a different computer onto my phone..how can i get it to work?

    acsapl wrote:
    plug in device
    open sidebar (Ctrl + S ) or (Command +Option +S)
    click on device
    on summary tab at bottom select manually manage music and videos
    drag and drop music to phone
    This will wipe all her current data off her phonee and will be replaced with the data on the computer she is syncing to.

  • I opened and edited a pic from my Olympus camera onto my mac (not in iPhoto).  I zoomed in

    I opened and edited a pic from my Olympus camera onto my mac (not in iPhoto).  I zoomed in and rotated the pictures and when I tried to click out of them, I got a message that the file was locked because I hadn't used it recently and "If you want to make changes to this document, click Unlock. To keep the file unchanged and work with a copy, click Duplicate."  I clicked "unlock" and then another message came up with the options of OK, Cancel, or Revert.  If I hit OK, I couldn't go back to my original picture.  I clicked OK. 
    Then later I tried to open the picture in iPhoto and it doesn't recognize it, even though it is still a JPEG file.  It still shows on my camera, but shows as a bland square in iPhoto.  Have I lost the ability to open it in iPhoto?  Will I be able to go to a store and print it out from my camera?

    No one can answer that since you only provide problems and questions
    we need to know exactly what you have, what you did and what happened including exact error messages
    I opened and edited a pic from my Olympus camera onto my mac (not in iPhoto).  I zoomed in and rotated the pictures and when I tried to click out of them, I got a message that the file was locked because I hadn't used it recently and "If you want to make changes to this document, click Unlock. To keep the file unchanged and work with a copy, click Duplicate."  I clicked "unlock" and then another message came up with the options of OK, Cancel, or Revert.  If I hit OK, I couldn't go back to my original picture.  I clicked OK.
    What software did you use and exactly what did you do and what exactly was the  error message? There is a good chance that you will need help for the support for the program you used. Where was the photos you were editing not using iPHoto?
    Then later I tried to open the picture in iPhoto and it doesn't recognize it, even though it is still a JPEG file.  It still shows on my camera, but shows as a bland square in iPhoto.  Have I lost the ability to open it in iPhoto?  Will I be able to go to a store and print it out from my camera?
    What version of iPhoto  Had you imported the photo into iPhoto - iPhoto is not a photo viewer and can not open photos that have not been imported
    as to how your camera and the store work - those are qestions for them -
    LN

  • How do I convert a VLC file to imovie. I have managed to download the mini dvd disc from the video camera onto a USB and have saved the file on my desktop but have no clue how to get it into iMovie so I can edit and send via email. Any ideas!!!

    How do I convert a VLC file to iMovie.
    I've managed to download the mini dvd from the video camera onto a USB and have save onto my Desktop.
    But have no idea how to convert to iMovie so I can edit and attach video to an email and Facebook.

    Edit WMV
    http://www.microsoft.com/windowsxp/using/moviemaker/getstarted/default.mspx
    and http://www.microsoft.com/windows/windowsmedia/forpros/encoder/default.mspx
    Also... I have NOT used those products, I only forward due to other mentions
    Convert http://premierepro.wikia.com/wiki/FAQ:How_do_I_convert_my_files%3F
    Edit Vob http://premierepro.wikia.com/wiki/FAQ:How_do_I_import_VOB_files_/_edit_a_DVD%3F
    $99 http://www.corel.com/servlet/Satellite/us/en/Product/1175714228541#tabview=tab0
    $99 http://www.womble.com/products/mvw.html
    $80 http://www.nchsoftware.com/prism/index.html
    $75 http://www.videoredo.com/en/index.htm
    $75 http://www.magix.com/us/movie-edit-pro/
    $70 http://www.nchsoftware.com/prism/index.html Converter
    $40 http://www.daniusoft.com/dvd-ripper.html#135
    $40 http://www.deskshare.com/dmc.aspx Digital Media Converter
    $00 http://www.squared5.com/ MPEG Streamclip Converter
    $00 http://www.erightsoft.com/SUPER.html Multi-Converter
    $00 http://www.virtualdub.org/ Mpeg to AVI Converter

  • How can I add images from collection after the book is saved?

    I am new to the Book module on Lightroom 5. I prepared a rough draft of a book and saved it with the tab on the right hand top of the main screen. Unfortunately, I saved it with the option of only saving the used images from the original collection. Later I brought up the draft book and tried to add some additional images, but see that only the images already used in the book are available on the image strip at the bottom.  I need to get other images which are in the original collection.  Is there any way to do this?  If not, is there a way to save the entire format of the book and then start over with the same format but with the original full collection as the source of images in the bottom strip?

    When you create a saved book, it creates a "Saved Book Collection" in your collections panel with a special "Book" icon. To add pictures to a saved book. Find them in your Grid mode of Library module and drag them into your Saved  Book Collection and they will be available to add back in from the Book Module.

Maybe you are looking for

  • External Hard Drive Permission Error

    I've been using a SimpleTech 160 GB external Hard drive for my mac computer for just over a year now. Never had a problem till one day I got on my mac to see the hard drive ejected. So I unplugged it and plugged it back in and it showed up. But since

  • How to connect steps in business scenario

    Hello, After creating a project in Solution Manager, creating a business scenario in that project and creating a custom business process in my scenario, Iu2019ve defined the necessary steps that I want in my process. These steps involve 2 different l

  • Printing a Dashboard in pdf format with bigger font size ?

    Hi, When we are trying to print a Dashboard with few reports in pdf format, the font size seems to be very small in the print, and it is not readable. Is there a way where in we can make the pdf's print a bit larger? Thanks

  • How to count number of equal tags in XMLTYPE?

    Hi, I need to count how many times repeats some tag in XML file. I loaded file in database: CREATE TABLE xml_tab ( id NUMBER(10), filename VARCHAR2(100), xml XMLTYPE File: <?xml version="1.0" ?> - <EMPLOYEES> - <EMP> <EMPNO>7369</EMPNO> <ENAME>SMITH<

  • Epson WP4530 No longer able to Scan....

    Scanning function has been removed for my Epson WP-4530 Printer. Epson.com points scanner drivers back at Apple. Scan button in Printers & Scanners Pref Pane no longer there.... Have deleted and reinstalled to no avail. What worked 12 hrs ago no long