How to make vertical flip of video webcam.

Hi all.
I am using logitech webcam, i can show video and take piture well.
Now i want to make vertical flip of video.
They can do it ? If you have any experience, please help me.
Thanks.
Diego

Well, I really see 2 avenues you can go down...
The "proper" way to do it would be to create a custom "effect" that would flip the video frames inside the processor. You'd want to base this off the following example code:
[http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/RotationEffect.html]
The "easy" way to do it would be to render the graphics yourself. You would just essentially need to create a class that implements the "VideoRender" interface (probably extending a JPanel implementing VideoRenderer), and use the BufferToImage class inside the "process" function to convert the inputted buffer object into a BufferedImage, which you would then render to the JPanel upside down... This probably sounds more complicated than it is, however... Process gives you a frame as a buffer, you use a utility to convert the buffer to an image, and then you draw the image to the screen. Quite a simple procedure, really...
[http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/apidocs/javax/media/renderer/VideoRenderer.html]

Similar Messages

  • Anyone know how to make vertical text in a table in keynote?

    anyone know how to make vertical text in a table in keynote?

    Just to add a bit more about this question. I have seen in other related questions that this feature (vertical text) is not available in (apparently) the whole iWork09. someone even said that it should be asked to the developers, so they include this feature in iWork10. I find this issue a bit sad. This feature has been present in msOffice since a while, and at least for me, this is quite important for my work. It is also apparently not possible to have different page orientation in the same document, meaning portrait and landscape, so one can have wide tables in a whole page, for example. If this is true, it is again sad, and I just cannot understand why such a basic feature is not available in an already 09 version. I am using only the trial version of iWork, but already in the first day I have discovered that I actually cannot do what I was used to. Again sadly I (and many others I guess) will have to stick to Office until the mac software is fully developed.

  • HT1937 how to make iphone to iphone video call through sim card

    how to make iphone to iphone video call through sim card??

    use facetime to video call or any other app for that. you should have an cellular data connection or wifi to use this

  • Qosmio F30-140: How to make composite-in or video-in feature working

    Hi,
    I was using windows XP MC version, but now I switched to windows 7 64-bit version and I don't know how to make the composite-in or the video-in feature work.
    Does win-7 driver support this feature! or I need to use a certain software to make use of it?!
    Another thing I'm missing in this new windows version is the Dolby effects equalizer.
    Could any body tell me how to add this option to my sound card device or send me a driver that has this option.
    Thanks in advance.

    Hi
    As far as I know there is not full Win 7 support for F30 Qosmio.
    I found some Win 7 32bit drivers on the driver page but there are no 64bit drivers.
    There are Vista 64bit drivers check it!
    The Sigma sound driver has been released for Windows Vista 64 Bit. Try it!
    The composite-in or video-in port can be used in order to receive video signals from some external devices. For example you can connect a Xbox to the F30 and can use it in connection with Windows Media Center.
    http://www.microsoft.com/windows/windows-media-center/default.aspx
    You can also conenct an camcorder or similar devices.

  • How to make this effect ? ( video )

    Hi all
    how to make the screen blink dark like in this video  http://www.youtube.com/watch?v=TszuTgFx93U
    starts at 0.46 end at 0.50
    can anyone tell me hows it called ?

    If you mean this effect and then changing to a black screen then this is a glow with an add blend mode and a blur followed by a black layer multiplied with opacity keyframes.
    I would put the video on the bottom layer, then add an adjustment layer and set the in and out point of the adjustment layer to the length you want to have this effect. It's only a few frames in the sample video. Then I'd go to the middle of the adjustment layer and add Glow to see if you could get close to this effect. Then I'd animate the opacity of the adjustment layer from zero to 100 over a few frames. I'd then set a new black solid above that and set the blend mode to Multiply. Set the in point just past the second keyframe in the adjustment layer and set the opacity to 0. Then move in a few frames and set the opacity of the black solid to 100% and set the out point of the adjustment layer to the same spot. Then move down a frame or two and set another opacity keyframe for the black solid at 100% then move down a few frames and set the opacity to zero and set an out point for the black solid.
    Figuring these things out is just a matter of looking at the frames and trying to figure how to stack layers up to achieve the effect. Grab some stills from various parts of an effect you are trying to copy and then try and figure out what you could do to the footage to get the same result. Only a few of the effects you see are just a single plug-in applied to a single layer. This is the best way to learn After Effects.
    Here's what a comp would look like using a frame from the sample video. Note that the adjustment layer and the black solid are only a few frames long. I made a quick stab at the color grading of the frame by making some adjustments to the A and B colors of the glow, added some blur, and added a little color correction to the adjustment layer using curves. This should get you started.

  • How to make playlist of the video songs I have installed from computer

    How to make playlist of video songs I have installed from computer

    What on earth do you mean by "video songs"?

  • How to make AEC work with external webcam?

    Hi everyone.
    What I'm trying to do is to make AEC work with external webcams. My target: flash in browser and desktop AIR app.
    I have the following situations:
    1. Laptop Lenovo S400, really not the best laptop, with MIC placed right above the speakers. But... AEC works excellent!
    2. PC with Logitech 1080p webcam (which has stereo microphones) and external speakers. But... AEC doesn't work at all. It even doesn't try to reduce any speakers sound in microphone data.
    3. The same laptop with connected Logitech camera and again - AEC doesn't work.
    In each situation I use absolutaly the same environment(Win7, target player - 11.9, Flex 4.6.0 SDK), code, compiller, etc..
    And I was unable to find any info for such situation.
    Does anybody have experience with such problem? I will be really grateful for any help.
    Here are parts of code:
    //  somwhere early...
    _microphone = Microphone.getEnhancedMicrophone();
    //  called before we attach microphone to NetStream
    private function _setMicrophoneMode():void
                _microphone.setLoopBack(false);
                _microphone.framesPerPacket = 1;
                _microphone.setSilenceLevel(0, 2000);
                _microphone.codec = SoundCodec.SPEEX;
                _microphone.encodeQuality = 10;
                _microphone.gain = 50;
                _microphone.rate = 44;
                if (_useEchoSuppression)
                var options:MicrophoneEnhancedOptions = _microphone.enhancedOptions;
                options.mode = MicrophoneEnhancedMode.HALF_DUPLEX;// using this for external webcams
                options.echoPath = 128;
                options.nonLinearProcessing = true;
                _microphone.enhancedOptions = options;
                } else
                    _microphone.setUseEchoSuppression(true);
                    trace(_microphone);

    I think that with the current state of the Adobe AIR Adobe FLash platforms, there is too much work to do to get echo cancellation to work on all platforms, and to get video to work as expected too. I think Adobe could solve many of these issues by implementing native WebRTC into the AIR platform, see this post here:
    http://forums.adobe.com/message/6232094#6232094

  • How to make picture in picture video semi transparent?

    I do know how to make picture in picture semi transparent if I import a photo instead of a video. However, if I import an video and want that video to be semi transparent at the right top cornor, I can do so with imovie? I know I can make the second video semi transparent if I use cutaway instead of picture in picture. However, I do not want the second video fill the whole screen, just the right cornor of the whole video.
    Please reply if you know how to do it in imovie. Thank you

    renaixbf wrote:
    ...  video to be semi transparent at the right top cornor, …  I can make the second video semi transparent if I use cutaway ...  I do not want the second video fill the whole screen, just the right cornor of the whole video.
    your wording confuses me ... what exactly do you want to accomplish:
    a cut-away replaces video, but keeps audio - that has nothing to do with 'transparency' (??)
    for sure, you can place and resize a PiP anywhere on the screen (pic#1)
    or, do you mean by 'semi-transparent' keying a PiP? (pic#2) A color-key within a PiP is not optional in iMovie; although, I tested it: if your source video contains 'alpha transparency', iMovie support that either.
    https://sites.google.com/site/karstenschluter/im09-counter
    or, do you want to manually change the compositing mode (pic#3)? That, indeed is not optional in iMovie.
    or, did you mean by 'just a part' cropping a PiP/second layer (pic#4)? Again, not optional in iMovie, complex compositing effects are habitat of professional tools such as FCPX.

  • Used vertical flip now video unstable

    I mounted a helmet cam upside down under my bicycle seat for some mountain bike footage looking rearward.
    I though no problem because I can just use the vertical flip feature right? Well the feature flipped the image but now it's unstable, almost like the frames are out of sync. It did this in Premiere pro (an older version) as well and though a current version of  Elements might handle this better, but it does not. Any ideas??!! I hate to lose this footage...
    Thanks !

    Hi, imoutbound. This is the Photoshop Elements forum. Premiere Elements has its own forum, which is here:
    http://forums.adobe.com/community/premiere/premiere_elements
    and you'll probably find better, faster help there. Good luck!

  • How to make my own music videos?

    Ok,
    so this might be a rather stupid question.
    But I gotta ask.
    I would very much like to use the TV shows and music that I bought via Itunes to make
    my own music videos. I just got a new macbook pro...
    Is there a way to do that?
    Do I need a complicated/expensive software?
    Is itunes locked against such use?
    Does Mac come with it's own software for that?
    I would be very grateful if somebody could help me out.
    Even if just to say ..no way girl!
    Thanks ahead
    J

    Your assumption is incorrect. Whether the content is being used to make money or not doesn't matter, nor does it matter whether you paid for the content or not. You get rights only to play the content, not to repurpose it and use it for something else without a license to do so, though again "fair use" comes into play. In addition, the terms of sale for the iTunes Store prohibit use of anything obtained from them for other than your own personal use, which therefor prohibits posting or distributing in any fashion to anyone else.
    And yes, at least some videos in YouTube may well be illegal, which is why the content owners such as Viacom have filed lawsuits against YouTube over the years. Or the creators of the videos may have obtained permission to use the content, or the video may fall within the "fair use" guidelines. This isn't the place to disuss "fair use" since it is too complex and vague a subject to address without a lot of discussion.
    Finally, again, TV shows from the iTunes Store are copy protected and cannot be edited even if you believe they would fall under "fair use", as are a number of music videos, though not all.
    Regards.

  • How to make a good picture/video movie

    i have a camera that has taken 4000x3000 pictures and 1280x720 HD videosand want to make a HD DVD movie
    i wanted to use premiere pro for making this movie because ive become slightly used to it
    i am using this on a 1600x900 17-inch laptop
    but i cant see the full pictures in ppro, i can add them but only a ~quarter gets shown and even i export it, it doesnt show everything
    how can i make this work or is there another product that can do this?
    is there a setting i can change to make this work?
    thnx for ur help

    >camera that has taken 4000x3000 pictures
    Photo Scaling for Video http://forums.adobe.com/thread/450798?tstart=0
    -Too Large = Crash http://forums.adobe.com/thread/879967?tstart=0

  • How to Make a Still from Video and Burning a DVD

    Hello All,
    I am using FCP HD and I would like to know how do you make a still photo from video footage?
    Also I have to burn an editing project to dvd. I don't know how to use studio pro, but the person said that it needs to be a ntsc full resolution version. I am not sure what that means.
    The project is about 10 minutes long and this person had me using the H.264. I have been playing around and I think I not doing something write because when I send the project to compressor it tells me that I have like 200+ hours befoe it outputs.
    Could someone give me some simple instructions using the H.264 on how to do a good large size (over 320x240) QT movie to dvd?
    THANKS...

    To export a still park the playhead on the image you want, mark IN OUT, go to FILE>EXPORT>QUICKTIME CONVERSION. Click on QUICKTIME MOVIE and In the dropdown choose STILL IMAGE.
    You will have to De-Interlace it in Photoshop after you export.
    As for making the DVD:
    Shane's Stock Answer #3:
    To export your DV project so there is no loss in quality, simply go to the File Menu and select EXPORT>QUICKTIME MOVIE. Not Quicktime Conversion, fot this will compress the footage. Make sure the settings match your timeline settings, make it self contained and you are set.
    Import this into iDVD or DVDSP and burn your DVD. Don't go the h.264 route.
    Shane
    "There's no need to fear, UNDERDOG is here!"

  • How to make audio (within a video) background music?

    Hi: I have Adobe Premiere Elements 7.0. I have video of a guy singing that is three minutes long that I would like to use as the background music for a video montage. The video montage itself is about 3 minutes as well. I would like to start the video montage with the guy singing, then make the rest of the montage have just the background music of the guy singing (without the video of him). How can I do this? Thanks.

    That's how I'd do it, too.
    Another option might be to just plop the montage on Track 2 at the appropriate starting point and not do anything with Track 1 (the guy singing). The video from Track 2 would be used instead of the Track 1.
    Not sure what would happen with the sound though - don't remember if Track 2 audio overlays Track 1 or if they get mixed
    Also not sure what the OP wants... is the guy singing supposed to be "background" as in you can still hear the montage audio with the singing as light background, or whether the guy singing is the *only* audio.

  • How to make a time lapse video in iMovie using a point and shoot camera?

    I recorded an approx. 45-minute long video on my Canon point and shoot digital camera, then imported it on to my computer. (The file format is .MOV)
    Now I would like to turn this video into a time lapse, of about a minute or two long. I know that iMovie HD has a time lapse feature, but it seems to only be for camcorders?
    How can I import this .MOV file and turn it into a time lapse?

    Kirk, I think Nancy wants to just take a frame from her video every minute or so, so that the 45 minute video runs for, say, 45 seconds.
    I don't think she wants to "speed it up" and make it run at breakneck speed, but wants to put together frames taken at a particular interval ..e.g; one frame per minute.
    I'm sure you know how best to do that using QuickTime. Any suggestions?
    (..Otherwise, Nancy, choose a point in your video - using iMovie - about one minute into the video and then use 'Create Still Frame' (or ShiftApple'S') and make the new still frame just a few moments long ..repeat through your 45 minute movie. Drag all those 45 stills together and you have a time-lapse movie. You could make each of them one-and-a-half seconds long, and apply a half-second Cross Dissolve between each of them. You'd then have a less "stuttery" and smoother time-lapse video..)

  • How to make vertical-only scrollBar?

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JScrollPane.*;
    class showConsole2{
    public static void main(String argv[])throws Throwable{
    consoleFrame csf = new consoleFrame();
    csf.show();
    class consoleFrame extends JFrame{
    public consoleFrame()throws Throwable{
    super("Console"); setSize(150, 200);
    JPanel p1, p2, p3, p4, p5, p6, content ;
    p1 = new JPanel(); p2 = new JPanel();
    p3 = new JPanel(); p4 = new JPanel();
    p5 = new JPanel(); p6 = new JPanel();
    content = new JPanel();
    JLabel l1, l2, l3, l4, l5, l6;
    l1 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    l2 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    l3 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    l4 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    l5 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    l6 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
    p1.add(l1); p2.add(l2); p3.add(l3);
    p4.add(l4); p5.add(l5); p6.add(l6);
    content.add(p1); content.add(p2); content.add(p3);
    content.add(p4); content.add(p5); content.add(p6);
    setContentPane(content);
    //how to modify the codes in this program to make
    //the vertical-only scrollbar?

    Try this. I believe this is what you were asking. If not, let me know...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JScrollPane.*;
    class test
         public static void main(String argv[])
              consoleFrame csf = new consoleFrame();
              csf.setVisible(true);
    class consoleFrame extends JFrame
         public consoleFrame()
              super("Console");
              setSize(150, 200);
              JPanel p1 = new JPanel();
              JPanel p2 = new JPanel();
              JPanel p3 = new JPanel();
              JPanel p4 = new JPanel();
              JPanel p5 = new JPanel();
              JPanel p6 = new JPanel();
              JLabel l1 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              JLabel l2 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              JLabel l3 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              JLabel l4 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              JLabel l5 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              JLabel l6 = new JLabel("aaaaaaaaaaaaaaaaaaaaaaa");
              p1.add(l1);
              p2.add(l2);
              p3.add(l3);
              p4.add(l4);
              p5.add(l5);
              p6.add(l6);
              JPanel content = new JPanel();
              content.setLayout(new GridLayout(6,1));
              content.add(p1);
              content.add(p2);
              content.add(p3);
              content.add(p4);
              content.add(p5);
              content.add(p6);
              // how to modify the codes in this program to make
              // the vertical-only scrollbar?
              JScrollPane jsp = new JScrollPane();
              jsp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
              jsp.setSize(200, 100);
              JViewport view = new JViewport();
              view.setView(content);
              jsp.setViewport(view);
              this.getContentPane().add(jsp, BorderLayout.CENTER);
              this.setSize(200, 100);
    }

Maybe you are looking for

  • How do I get my iPod touch 4th gen to a ios 6.1.4

    My iPod touch 4th gen is at ios 6.1.3 and I want to know when I can update it to a ios 6.1.4

  • Cannot either install or uninstall iTunes

    I tried to update iTunes with v12.1.2 on my Win 8 64-bit computer by running the installation file over the current v12.0 and the installation failed. This is what occurred: 1. The initial error I received was that it did not have access to the "C:\P

  • Inserting table background image

    I just upgraded from DW8 to CS4 and can't figure out how to insert an image for a table background! The box and folder icon to browse to the file I want is greyed out. Can anyone help?

  • ORA-00313: open failed for members of log group

    Hi, on 11g R2, on standby I have this in alertlog : ORA-00313: open failed for members of log group 21 of thread 1 Deleted Oracle managed file +DGRECO_FSCM/xxx/onlinelog/group_21.1721.791875667 Tue Aug 21 14:37:34 2012 Clearing online redo logfile 21

  • Programmat​ically modify scan engine scaling

    I need to be able to programmatically adjust the scaling factors for my cRIO analog channel.  I manage all my I/O from an external spreadsheet that gets compiled and ftp'd to 9 cRIO targets.  Each cRIO will have different scaling factors.  I understa