Overlay Text software

Hey buddy,
Besides the Device or Overlay Mixer we need it to overlay the Text on the Video ,any other method??
Any software that can solve this problem??
Let say i have a LCD projector, a Macbook Pro and a Mini DV cam for live shooting purpose! Is that any software that cam provide Text overlay fucntion to output Through VGA to the LCD and combine with the RCA from Cam to LCD??
Is that posible??
Thanks
Ray

one of these will likely do what you need
http://www.audiovisualizers.com/toolshak/vjprgpix/softmain.htm

Similar Messages

  • Trying to overlay text onto images and save them.

    What I want: I have a computer running the media in my car and I want to hook up a camera to it that'll record when the computer is running and overlay the GPS speed onto the video for later viewing.
    What I got: I have the following piece of code that saves a series of .jpg images at a specified frame rate and a separate Java application that puts them together into a .mov file to view later. I couldn't find anything to record the straight video so if you have any links for that, please point me. But for now I'll settle for doing it this way and I'm not too concerned with the GPS speed NMEA parsing for now, I'll just use a static speed label until I get the overlaying working.
    What I need: I need to know what to plug into the speedOverlay() method in order to grab the image and put the speed on top of it before saving it and moving to the next image. Any ideas?
    Code:
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import com.sun.media.sound.Toolkit;
    import javax.imageio.ImageIO;
    import javax.media.*;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.format.VideoFormat;
    import javax.media.util.BufferToImage;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JTextField;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Font;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Panel;
    import java.awt.Shape;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.font.TextLayout;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.util.Timer;
    import java.util.TimerTask;
    public class SwingCapture1 extends Panel implements Runnable, ActionListener
         private static final long serialVersionUID = 1L;
         public static Player player = null;
         public CaptureDeviceInfo di = null;
         public MediaLocator ml = null;
         public JButton start = new JButton("START");
         public JButton stop = new JButton ("STOP NOW");
         public JLabel frequencyLabel = new JLabel("Frequency:");
         public JTextField frequencyInputField = new JTextField(5);
         public JLabel framerateLabel = new JLabel("Framerate: ");
         public JTextField framerateInputField = new JTextField(5);
         public JLabel timerLabel = new JLabel("Timer: ");
         public JTextField timerInputField = new JTextField(5);
         public JPanel southPanel = new JPanel();
         public static Buffer buf = null;
         public static Image img = null;
         public VideoFormat vf = null;
         public static BufferToImage btoi = null;
         public static ImagePanel imgpanel = null;
         public static Timer timer = new Timer();
         static int theFrameRate = 0;
         static int theTimeLength = 0;
         static int i = 0;
         static int interval = 0;
         int count = 0;
         static int timeLength = 0;
         static String filePrefix = "";
         static String imagesDirectory = "c:\\images\\";
         static boolean timerBoolean = true;
         Thread capThread;
         Toolkit toolkit;
         public SwingCapture1()
              setLayout(new BorderLayout());
    //          setSize(640, 480);
              imgpanel = new ImagePanel();
              start.addActionListener(this);
              final String str = "vfw:Microsoft WDM Image Capture (Win32):0";
              di = CaptureDeviceManager.getDevice(str);
              ml = new MediaLocator(str);
              try
                   player = Manager.createRealizedPlayer(ml);
                   player.start();
                   Component comp;
                   if ((comp = player.getVisualComponent()) != null)
                        add(comp, BorderLayout.LINE_START);
    //               add(capture);
                   add(imgpanel, BorderLayout.LINE_END);
                   add(southPanel, BorderLayout.SOUTH);
                   southPanel.add(framerateLabel);
                   southPanel.add(framerateInputField);
                   southPanel.add(timerLabel);
                   southPanel.add(timerInputField);
                   southPanel.add(start);
                   southPanel.add(stop);
              catch (final Exception e)
                   System.out.println("ERROR 1");
                   e.printStackTrace();
         public static void playerclose()
              player.close();
              player.deallocate();
         public void actionPerformed(final ActionEvent e)
              final JComponent c = (JComponent) e.getSource();
              if (c == start)
    //               snapPicture();
                   theFrameRate = Integer.parseInt(framerateInputField.getText());
                   theTimeLength = Integer.parseInt(timerInputField.getText());
                   startCapture(theFrameRate, theTimeLength);
              if (c == stop)
                   timerBoolean = false;
         public void startCapture(final int framerate, final int timeLength)
              interval = 1000 / framerate;
              // Start timer.
              timer.scheduleAtFixedRate(new TimerTask ()
                   public void run()
                        System.out.println("SNAP");
                        snapPicture();
                        count++;
                        if (count >= timeLength * framerate)
                             this.cancel();
              }, 1000, interval);
         public static void snapPicture()
              final FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
              buf = fgc.grabFrame(); // Convert it to an image
              btoi = new BufferToImage((VideoFormat) buf.getFormat());
              img = btoi.createImage(buf); // show the image
              imgpanel.setImage(img); // save image
              // saveJPG(img, "c:\\java\\Tomcat\\webapps\\loadimage\\main.jpg");
              i++;
              speedOverlay(img);
              saveJPG(img, imagesDirectory + filePrefix + i + ".jpg");
         public static void speedOverlay(Image img)
         public static void saveJPG(final Image img, final String s)
              final BufferedImage bi = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
              final Graphics2D g2 = bi.createGraphics();
              g2.drawImage(img, null, null);
              FileOutputStream out = null;
              try
                   out = new FileOutputStream(s);
              catch (final java.io.FileNotFoundException io)
                   System.out.println("ERROR 2");
                   System.out.println("File Not Found");
              final JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
              final JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
              param.setQuality(0.5f, false);
              encoder.setJPEGEncodeParam(param);
              try
                   encoder.encode(bi);
                   out.close();
              catch (final java.io.IOException io)
                   System.out.println("ERROR 3");
                   System.out.println("IOException");
         public void start()
              if (capThread == null)
                   capThread = new Thread(this, "Capture Thread");
                   capThread.start();
         public Image getFrameImage()
              // Grab a frame
              final FrameGrabbingControl fgc = (FrameGrabbingControl)
              player.getControl("javax.media.control.FrameGrabbingControl");
              buf = fgc.grabFrame();
              // Convert it to an image
              btoi = new BufferToImage((VideoFormat)buf.getFormat());
              return btoi.createImage(buf);
         @Override
         public void run() {
              // TODO Auto-generated method stub
    }

    Sorry guys, I haven't looked at your links yet but I will, once I get some time to sit down and code again. I just wanted to provide this piece of code that uses the Graphics2d you're talking about to overlay text onto an image but I haven't been able to plug it into my code at all. If you're links answer the question, I'm sorry, just providing it until I can actually sit down and spend time on the research you've given me. Thanks.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.text.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class WaterMark {
        public static void main(String[] args) throws IOException {
             String speed = "50";
            URL url = new URL("file:c:\\images\\1.jpg");
            BufferedImage im = ImageIO.read(url);
            String text = speed + " Km/H";
            Graphics2D g = im.createGraphics();
    //        g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
    //        g.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_ON);
    //        g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g.setFont(new Font("Lucida Bright", Font.ITALIC, 40));
    //        g.rotate(-Math.PI/4, im.getWidth()/2, im.getHeight()/2);
            TextLayout tl = new TextLayout(text, g.getFont(), g.getFontRenderContext());
    //        Rectangle2D bounds = tl.getBounds();
    //        double x = (im.getWidth()-bounds.getWidth())/2 - bounds.getX();
    //        double y = (im.getHeight()-bounds.getHeight())/2 - bounds.getY();
            double x = 10;
            double y = 50;
            Shape outline = tl.getOutline(AffineTransform.getTranslateInstance(x+2, y+1));
    //        g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.3f));
            g.setPaint(Color.BLACK);
            g.draw(outline);
    //        g.setPaint(new GradientPaint(0, 0, Color.WHITE, 30, 20, new Color(128,128,255), true));
            tl.draw(g, (float)x, (float)y);
            g.dispose();
            display(im);
        public static void display(BufferedImage image) {
            JFrame f = new JFrame("WaterMark");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JLabel(new ImageIcon(image)));
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Is it possible to add or overlay text on an image to be used in a slideshow in Aperture?

    Is it possible to add or overlay text on an image to be used in a slideshow in Aperture v3.2.2? If so how? Thanks.
    RJT

    Start here.
    Don't miss this:
    Stage 7: Titling and Adding Text to the Slideshow
    Add a title to your slideshow using the titling controls. Insert a blank slide at the beginning of the movie to display your title. You can also use blank slides to act as chapter dividers. Add text to individual slides where appropriate.
    or this:
    Adding Text to an Individual Slide
    Message was edited by: Kirby Krieger -- added final link.

  • Aperture newbie, is it possible to overlay text onto a photo?

    Aperture newbie, is it possible to overlay text onto a photo?

    Not from Aperture. But there is a free plugin named BorderFX. With this tool you can add text to photos easily.
    The option of BorderFX are:
    Add multiple borders.
    Borders can be bevelled, or shaded to create more realistic frames.
    Add Titles, Copyright & Metadata.
    Add a Watermark to your images.
    Save images back into the Aperture Library, using the BorderFX Edit plugin.
    Position text anywhere on the photo.
    Add any number of text boxes to the photo.
    Support for ColorSync and ICC profiles.
    Aperture 3, 64-bit support.

  • IMAQ Overlay Text.vi: "User-specified Font" ignored

    I'm trying to use "IMAQ Overlay Text.vi" use draw a fixed-width tag on an image. In my trials so far, I cannot determine how to use any other font but the default. The "User-specified Font" choice appears to ignore my font requests, but does use my size and bold settings.
    What I've tried so far:
    Use LabVIEW to tell me font names via the application drop-down menu, and then type one in verbatim into the "Font Name" component of the "User Specified Font" cluster.
    Use another Windows program (like Write.exe) to give me font names, and then typing one in verbatim as before.
    Use a nonsense font name to provoke some kind of "font not found" error, but none were raised.
    This third data point makes me think that a default font is selected if the user's is not found. How do I learn which font names this VI will use? LabVIEW can see and use the font I want, but not IMAQ :-(
    I have LabVIEW 2009 with the 2012 Vision Development Module.
    Solved!
    Go to Solution.

    Silver_Shaper wrote:
    Check the built in example.. It works.
    Excellent! Thanks for your reply :-)
    I can confirm that switching from "IMAQ Overlay Text.vi" (and "IMAQ Merge Overlay.vi") to "IMAQ Draw Text.vi" uses the font I specify by name on the Front Panel. This will suit my needs
    I have two points for NI engineers and I would like a response:
    Does "IMAQ Overlay Text.vi" have any outstanding bug reports about this behavior? Or, am I doing something wrong?
    Please make your examples easier to discover and find. With help from Silver_Shaper, I was able to find the example, but the directions on your website are incomplete and misleading. To experience the frustration first hand, follow the link in Silver_Shaper's post and read and follow the text.
    You will find that it is incomplete: the article takes you halfway there, pointing you to to "Help » Find Examples... » Toolkits and Modules", but doesn't follow through and ask you to expand "Vision » Functions" before you find the example.
    But once you're there, you will also find that the article is misleading. The article is called "Overlay Text on Image" and the same title is used in the overview, but on disk it is called "DrawText Example.vi" and the real name can only be found in the front panel image.
    Please confirm the bug or my misunderstanding of "IMAQ Overlay Text.vi", and please confirm that you will update that article.

  • Adaptxt texting software

    I think that I posted this onto the wrong forum ... now placed here
    Has anyone experience please of using this texting software on Nokia phones, particularly the X6. Does it function OK and not cause any problems when downloading/installing and subsequent use.
    I note that it is an available software on the Nokia site.
    Thanks Ron

    Here's a program I found called Threaded SMS
    http://www.blackberrynews.com/?p=2186
    Threaded SMS will also be a supported feature of OS 5.0
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • 3D text software anyone?

    Hello everyone, I am a english teacher at Chichi Piipii School for the Gifted in Bora Bora, and one of my students brought up a interesting topic. He thought that it would be more interesting if we took grammar notes in 3D. Im not talking about 3D on the screen. I mean wearing the red and blue glasses and everything on a projector. I just wanted to know if anyone out there knew of a 3D text software. If you can help that would be great.
    Thanks,
    Melliney Wilson

    Welcome to Apple Discussions!
    I'm not sure that this is the best place to post your question, but you might try a Google search of "3d text software" or "3 dimensional text software" or something like that. There are a lot of listings, and who knows, there might even be some forums.
    What OS are you using?
    Good luck on your project! It sounds like fun!

  • Overlaying text -- what text types are supported?

    Trying to pull up from a Microsoft Word document and Quicktime says it doesn't support this type of file... any ideas? Is there a simpler way to overlay text onto the video? I'm trying to add lyrics.

    "Plain" text (.txt format).

  • How to reinstall SMS text software...

    Brought a 8350i(nextel) off of ebay, received phone but device cant receive or send SMS text. Has options to send email, PIN, MMs, and IM but no SMS. Help PLEASE.... bbm me <censored>
    EDIT: Personal Information Removed - Info such as PIN is prohibited for security purposes.

    Before you do what JSanders suggests above, I'd do a resettofactory to remove any IT Policy that is likely blocking the sms/mms feature.
    Use Method 1 of the post below:
    http://www.blackberryforums.com/rim-software/67224-remove-policy.html
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • How do I overlay text or a logo in VLC on a mac?

    I want to add text to a video file. I've been trying, but I can't figure it out. i mess around with the filters, but it won't show up in my extended controls. If there's a better way to do it (besides converting the files and using iMovie or paying for new software) that would help too!

    Ralph,
    Thanks for your input.  I Highlighted the article and then I went to Safari Preference, advanced and turned on highlighting.  However when I scrolled down the page and tried to highlilght elsewhere the highlight disappeared.  Also the highlight was in blue.  What else should I do?
    Thanks in advance.

  • Is there Speech to Text Software Capabilities? .... for Adobe Acrobat PDF Fillable Forms - Mac

    Hi,
    I hope that someone can help me with this.....
    I create forms in InDesign and export to Adobe Acrobat PDF. I create a fillable version in Acrobat so my clients "field therapists" can fill the forms out utilizing their laptops and iPads when on location with client. The forms they fill out, most use the mac, and they are now requesting that the fillable PDF forms have the capability to render text when it is spoken. (Speech to Text) also if written with a stylus pen the want it to render the text in the fields (handwriting to text)
    I have researched and have found a company that has software that does this for mac, called dragon, but they said I need to test the software to see if it does what I need it to do with the acrobat pdf.
    Has anyone implemented this "speech to text" and "handwriting to text" in any of their Adobe Acrobat PDF fillable forms?
    If so, what did you find worked, or what did you find that did not work.
    All responses welcome, I am hopeful I can find software that will work with existing mac adobe acrobat fillable PDF forms so I dont have to change the manner in which I am creating my forms for this client.
    P.S. FYI, I am not looking for responses that are a response for 508 Compliant forms which is speaking the text, this I do for clients and this I know how to do, it is quite different from "Speech to Text"
    Thanks in advance for all responses.
    Message was edited by: muralsbyamy

    There really is nothing Adobe can do about how non-Adobe software functions. The PDF standard is no longer controlled by Adobe, it's controlled by ISO. Some PDF viewers choose to have no support for forms, some have pretty good support, and some (like Preview) are simply malevolent. There is a lot of non-Adobe software that creates bad PDFs, and a lot that doesn't have nearly the support of Acrobat/Reader. Again, this isn't a problem Adobe can solve.
    Regarding, allowing image formats with the buttonImportIcon method and Reader, I know a feature request has been submitted for this. Reader 11 is the first version since Reader 5 that supports this, so I have hope for the future. In the mean time, it's fairly easy nowadays to convert an image to PDF. Even Preview can do it.

  • Fix for overlay text rendering issue

    @Neil Enns - I have branched this into a new discussion from original thread: Re: Trouble with ipa size after changing assets
    Having some issues with overlays that are set to "vector" for "Export format in PDF articles"
    It seems as this setting doesn't really affect the output of the overlays? as a test we updated a few of our overlays to utilize this setting and after running them through DPS and loading up the resulting .ipa file the results remain pretty consistently pixelated.
    As a note, we are using 2048x1536 source files, rendering a 1024x768 folio and viewing on a retina display. (all screencaps taken from retina displays)
    This setup is described as providing an optimal balance between file size and image quality in the thread mentioned above.
    Is there anything we could be doing that would prevent the "vector" setting from rendering properly?
    Or is this perhaps just the best that type in an overlay will look with a 1024 folio on a retina screen?
    Thanks in advance for any feedback.

    Neil Enns - Adobe / Bob Levine
    Thank you both for the advice. There is a bit of strangeness though when importing the article. We had a couple of test folios we were using and on one of the folios the import article process would default to "automatic" format. When we forced the article format to be "PDF" all of a sudden our overlays were coming out nice and crisp!
    Huge thanks!!
    I do have one final follow up about this though.
    It seems that the "vector" format only applies to the second state of the overlay? For instance we have some buttons which have text objects in them inside our MSO. These buttons then trigger the second state of the object which now nicely appears as vector... but how come the buttons are still getting rasterized?
    Is there any way to apply this same vector format to buttons? Or is this only an option for an MSO?
    Just trying to understand how all this works!
    Thanks again for all your help and advice.

  • Overlay text from Photoshop CS3

    I am using a menu for DVD SP, the menu is made from PS. It has many layers, I am making a overlay file from the "Play" "Speacial Features" 'Chapters" buttons. I deleted all layers except the text for the overlay. Basic Myriad Bold white text...
    My questions is why does my overlay file look so ragged. I have a alpha channel, I have white text over black.
    I got then overlay to work but it is ragged, not sharp.

    Hi
    In your overlay the shapes/text to highlight must be black over a white backround. I allways flatten my PS artwork and save it as PICT file for use as overlay in DVDSP.
    Beside that, because the antialias in your shapes/texts you must play with the advanced colors setting in your menu, setting something like this:
    That will give you less ragged edges in your highlighted elements.
    Hope that helps !
      Alberto

  • How to: Add Conistent Overlay/Text On Top of Picture Slideshow

    Hello everyone - am fairly new to Keynote. I'm sure there is an easy way to do this just not sure how ...
    I am putting together a picture slideshow as part of a presentation I am doing ... have a lot of pictures to cycle through ... maybe 100 ... anyhow, it is very easy to add all the pictures by dragging and dropping them and also to change all the transitions and timing at once ... it is a cinch!
    However, I am struggling with a way to overlay a title/text on top of ALL the images (same logo/text for all of them). I have played around with creating my own "Master Slide" that has the text I want to display, however, the image always covers/blocks the text ... I noticed that I can enable something like "allow master slide to interact with the layers of the other slide material", however, I have to manually click each picture and "Send to the Back" in order to see my text/logo. This is a pain!
    Is there an easier way to do this ?
    Thanks,
    Damon

    In my experience, if you use a text box on a master and it's set to be a placeholder (or it's the actual Body box of the slide), then you put a media placeholder (photo placeholder) on the master slide, while the master will NOT let you put the text in front of the placeholder, on any actual slides that you make that use that master, the text shows up in FRONT of the placeholder. I put a placeholder on a slide and wanted it behind the bullets. It doesn't look that way on the master, but when you make a slide from it, sure enough, the photo is behind the bullet box.

  • Overlaying text, shapes to images

    I'm editing together pieces of a presentation that include screen captures of activity on my PC. I need to overlay hollow rectangles, ovals, and arrows at various points to highlight different regions of the screen. I've found how to add one rectangle--of solid color that blocks the area I'm trying to highlight--or one text string. But adding multiple rectangles and strings and easily moving them around to properly align with the underlying images has been tough.
    Where can I get some help on out to do this with FCE? I'm a recent convert from Windows/Premiere where I found this to be a very easy process. Surely I'm missing something in this new environment.

    Unfortunately, I don't own Photoshop for the Mac.
    But let's say that I buy it...or at least a cheaper version. And I create a bunch of hollow rectangles of various sizes that I can use to box important text or regions of my screen. How do I go about placing these multiple items on top of my video and sizing them to enclose the right areas? Are there any books or online material that can help me out with this?

Maybe you are looking for

  • Combobox and UseLOV with the same field

    Hi, i want use a Combobox which Select a Field name and after make a UseLov with this field name. I can make the combobox with field name Column and i can separatly make a USELov with a field name, but i can't make it together. Have tried two things

  • The new guide: change just because, STILL CAN'T SEE CURRENT TV REMINDERS!!

    WHoever designed the NEW guide SHOULD BE FIRED IMMEDIATELY. WHY DOES IT STILL TAKE a dozen clciks to see a list of reminders OF CURRENT TV STATIONS THAT I HAVE SET A REMINDER FOR, but it's only a REMINDER LIST FOR FUTURE SHOWS?? DO you people actuall

  • Serious iTunes error on launch

    I have Installed itune and ran into a error when trying to launch. I think its my fault party because before i installed i had a older version of itunes+quicktimes installing on my pc from a cd, when i relized that i stoped the install.. anyway heres

  • Migrating a smartform to a adobe form

    Hi, i'm using ECC 6.0 version.. i want to migrate a smartform into a adobe form (PDF based form).. i checked in the TCode SMARTFORMS... we don't have that option there.. how to migrate a smartform into a pdf based form thanks

  • HOW TO FIND ddic_activation logs?

    hI, I had Scheduled some patches in the background, From last 13 hours its showing following status, Import of queue for All Software components of the SAP System SPAM status:           (DDIC_ACTIVATION) Current action:   Queue import