capture

java mouse capture

How do I capture the mouse in a Java application so that all mouse events (even ones that happen if the mouse is moved outside the app window) are seen by the Java app? This is like the Windows SetCapture function. ...

Is there a C# library that supports both video screen and webcam capture?

Hi guys, I'm working on a project written in C# that records both the user's screen and webcam. I've currently used Windows Media Encoder for recording the screen but am still working on webcam capture. I've been looking for information on webcam capture and WME, but it seems that it isn't usually used for such. I feel that it is bett...

Is there any library that gives access to PC (windows) microphone in a way Open CV gives access to camera?

So in Open CV we have such easy way of getting to some camera device and its data: #include "cv.h" #include "highgui.h" #include <stdio.h> // A Simple Camera Capture Framework int main() { CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY ); if( !capture ) { fprintf( stderr, "ERROR: capture is NULL \n" ); getchar(); re...

bash variable capture stderr and stdout separately or get exit value

Hi, I need to capture the output and error of a command in my bash script and know whether the command succeeded or not. At the moment, I am capturing both like this: output=$(mycommand 2>&1) I then need to check the exit value of mycommand. If it failed, I need to do some stuff with the output, if the command succeeded, I don't nee...

Capture devices - Mono c#

Hi, I'm looking for a way to list all capture devices (audio and video) with Mono under Linux: microphones, webcam, etc... but I couldn't find anything. Under windows, it's easy doing this with DirectShow, but couldn't find anything like this under Linux. Of course I could list those devices with a system command line, and parse the str...

Capturing received & sent emails from Microsoft Exchanged

I'm wondering if someone could point me out in the right direction. I need to capture e-mails as they are received and/or sent via Microsoft exchanged. I need to capture typical information such as from, to, subject, body, date send/received, conversation id, etc.... but I also need to capture attachments if any and also if possible con...

C#: Create an event that is fired whenever another event that has listeners is fired, dynamically via reflection maybe?

Here's what I am working with: Part of my project is a windows form app. I want to basically capture every event that fires and has listeners. So some button's click event, some checkbox's check event, everything on a basic "Control" event list. So that event still fires, but also fires my event. Is there a generic "some event fired" ...

which c++ free lib to use to capture microphone sound and save it to wav

i saw i have 2 major lib's ( mybe i wrong ) 1. port Audio 2. openAl + cAudio wrapper what is easer and faster to use for cross platform ? ...

How to capture audio AND video with FMJ

I can capture video and audio separately, but the createMergingDataSource method of the javax.media.Manager class in FMJ just throws an UnsupportedOperationException. Is there another way to capture audio and video and encode them in AVI (or any other format). ...

Take a screenshot of the active window in mono

Hi, is there a way to take a screenshot of the active window using mono under Linux ? Thanks in advance Mike ...

How can I capture screen with sound in iphone, then convert to video and email?

Similar to "Talking Tom Cat" app. How can I possibly achieve this? Are there any API out there I can use? Sorry for this noob question..... >_< ...

How to capture a Zend view output instead of actually outputting it

Problem: sometimes in our zend controller we don't want the script to be output directly, but rather want the content of that script. One example: when we need the result html output of a view script be included in another structure like JSON or XML for processing in the client side. I found the result here at stack overflow, but not so...

Capture HTTP request packets from my iPhone

I want to monitor the HTTP traffic sent/received from my iPhone. The iphone is connected to the Internet via my wifi router. I want to capture packets from my windows 7 station. Thanks for your help. ...

C# Microsoft LifeCam HD mjpeg capture

Hi, I have a Microsoft LifeCam HD-5000 webcams. According to AMCap, the camera outputs a MJPEG stream at 30fps at 720p. I want to capture each JPEG frame in a small application without doing any preview or decompression/transcoding to minimize CPU utilization to the minimum possible. I'm a C# developer, but I'm new to DirectShow. Is th...

Android camera unexplainable rotation on capture for some devices (not in EXIF)

What I'm doing seems like it should be simple, but I'm still lost after I've read every possible Stackoverflow answer I can find and Googled every article I can find. I'm using a preview SurfaceView and capturing an image from an activity that is set for screenOrientation="landscape" in my AndroidManifest.xml. I followed the sample Cam...

Screen Recording Software to capture Software Defects

Hi, do you know a good screen recording software, to assist the quality management process? I think, that the following features will be important: easy to use. auto capturing the last 5 or 10 Minutes small video size low price :-) Thank you for your help ...

how do python capture 302 redirect url

i try to fetch data from web,but the page use a 302 redirect how can i use python to fetch the real url? ...

What does LogMeIn use to capture the screen image so quickly...

I saw a lot of duplicate suggestions when I typed this in, but they didn't necessarily answer it fully... I mean, it can't be that complicated to do, but it seems that log me in does it pretty quickly and there's not a whole lot of lag. I mean its basically: Copy frame Process input/Compress/package frame for network Send frame recei...

DirectDraw better than Direct3d for streaming?

Let me specify little background. I currently use an open source program to run my TV Tuner (DScaler). The final version for the software has some support for Direct3D output, the problem with this is that it lags. I have been going through the code and reading through DirectX documentation trying to find a place to optimize the code so...

Make .NET snipping tool compatible with multiple monitors

An alternative snipping tool solution was provided in this posting: http://stackoverflow.com/questions/3123776/net-equivalent-of-snipping-tool Now it's necessary to make it work for selected screens (on multi-monitor systems). The code has been modified accordingly: Public Class SnippingTool Private Shared _Screen As Screen ...