Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
5answers
3k views

How to screenshot website in JavaScript client-side / how Google did it? (no need to access HDD)

I'm working on web application that need to render page and make a screenshot on client (browser) side. I don't need screenshot to be saved on local HDD though, just kept in RAM and send to ...
15
votes
7answers
5k views

How to get a screen capture of a .Net control programmatically?

How do you programmatically obtain a picture of a .Net control?
13
votes
11answers
62k views

Capturing image from webcam in java?

How can I continuously capture images from a webcam? I want to experiment with object recognition (by maybe using java media framework). I was thinking of creating two threads one thread: Node ...
10
votes
2answers
4k views

Capture Image from Camera and Display in Activity

I want to write a module where on a click of a button the camera opens and I can click and capture an image. If I don't like the image I can delete it and click one more image and then select the ...
10
votes
6answers
14k views

How to capture the android device screen content?

How to capture the android device screen content and make an image file using the snapshot data?which api I should use or where to find related resource? thanks in advance! BTW: not camera ...
9
votes
3answers
141 views

Count the capture groups in a qr regex?

I am working on a project which at one point gets a list of files from an ftp server. At that point it either returns an arrayref of files OR if an optional regex reference (i.e. qr), is passed it ...
8
votes
10answers
7k views

How to take a screen shot of a web page?

I want to add a button to one of our web sites that will allow the user to file a bug with our bug tracking system. One of the feature requests is that a screen cap of the page in question be sent ...
7
votes
3answers
1k views

Capture a DVB-T Stream to a movie-file

I have a form with a liveview of the tv-signal (from dvb-t stick). I've the sampleproject "DTViewer" from http://directshownet.sourceforge.net/about.html. Now I try to capture the stream to a ...
7
votes
2answers
341 views

What is the Linux/X11 (and Mac OS X) equivalent to Win API SetCapture() function?

On Windows you can "capture" the mouse to continue receiving mouse events even when it goes outside the window's client area. Here the SetCapture() documentation: ...
7
votes
4answers
12k views

Record Video of Screen using .NET technologies

Is there a way to record the screen, either desktop or window, using .NET technologies. My goal is something free. I like the idea of small, low cpu usage, and simple, but would consider other ...
6
votes
3answers
2k views

Capture real-time screen video from iPhone and iPad including audio and post to YouTube, Facebook, etc

Does anyone have pointers to some working code or techniques for capturing the full-screen real-time OpenGL graphics on the iPhone and iPad, combine it with the audio coming out of the device, and ...
6
votes
1answer
2k views

How can I capture which direction is being panned using UIPanGestureRecognizer?

Ok so I have been looking around at just about every option under the sun for capturing multi-touch gestures, and I have finally come full circle and am back at the UIPanGestureRecognizer. The ...
6
votes
2answers
383 views

Capture mouse movement and export to image [code | app]

To get more in depth information about the usage of WinForm or Webapplications I want to capture mouse-movement and click information. It would be perfect if this could be rendered to an image. The ...
6
votes
3answers
4k views

launch app, capture stdout and stderr in c++

How do I launch an app and capture the output via stdout and maybe stderr? I am writing an automated build system and I need to capture the output to analyze. I'd like to update the svn repo and grab ...
6
votes
10answers
6k views

Capture Window (Alt-Print Screen) of Context Menu

As everyone knows, sometimes developers have to document stuff. Or capture some stuff for filing bug reports. My question is in MS Windows. I'm trying to capture the context menu (right-click on an ...
5
votes
3answers
101 views

Capture ALL (stdout, stderr AND CON) output of cmd executing plink with C# (std out+err ok, CON not working)

I want to open SSH connections from c# via opening a process and running plink. All output should be collected and depending on the results the program will fire actions to the ssh. My big problem is, ...
5
votes
2answers
3k views

Camera orientation problem in android

I am building an application that uses camera to take pictures. Here is my source code to do this: File file = new File(Environment.getExternalStorageDirectory(), imageFileName); ...
5
votes
2answers
257 views

Function signature differences in C++11

Considering C++11's lambdas with the following code, template <typename M> void call(void (*f)(M), M m) { f(m); } int main() { call<int>([](int n) { }, 42); // OK int r; ...
5
votes
1answer
270 views

how do I implement “Choose Existing Photo” in my app like in default iphone phonebook?

I want to develop an app which has functionality same as iphone phonebook capturing image and choosing iamge, what should I to use for doing such I have made an UIImageView and a button for ...
5
votes
1answer
190 views

Which regex flavors support captures (as opposed to capturing groups)?

As I just learned from this question, .NET regexes can access individual matches within a repeated capturing group. I. e., if I apply a regex like \b(\w+\s*)+ to a string of words, only the last ...
5
votes
2answers
2k views

How to Write a Screen Recorder in .NET?

Is there a way to make a screen recorder in C#? If so, does anybody know of any tutorials I could use or any information on the subject?
5
votes
3answers
829 views

C# - Capture all unhandled exceptions automaticly with WebService

I have a C# WebService application in which I want to capture all unhandled exceptions thrown from the application. How can I do this?
5
votes
2answers
1k views

The fastest possible way to catch the screen? Any Language

I need to take print-screens of a Windows application very very fast to make a video out of it... I have been using C# all the way, but I'm open to any language in which this process may be faster. I ...
4
votes
1answer
112 views

Why will local captured timer not go out of scope? [closed]

Possible Duplicate: Timer, event and garbage collection : am I missing something? private void TrayForm_Load(object sender, EventArgs e) { System.Timers.Timer HideMeTimer = new ...
4
votes
1answer
59 views

How do I capture the type of Generic object in an ObservableCollection?

I have a method that returns an ObservableCollection on any type say ObservableCollection<Type1> ObservableCollection<Type2> ObservableCollection<Type3> i want to be able to ...
4
votes
1answer
567 views

How to capture sound from microphone with java sound API?

The tutorial http://download.oracle.com/javase/tutorial/sound/capturing.html does not cover how to select microphone. I am enumerating mixers with the following code System.out.println("Searching ...
4
votes
1answer
91 views

Regex Captures in Java like in C#

Hej folks, I have a to rewrite a part of an existing C#/.NET program using Java. I'm not that fluent in Java and am missing something handling regular expressions and just wanted to know if I'm ...
4
votes
1answer
157 views

Can anyone give me an example, where the eclipse JDT creates an AST with a CAPTURE binding?

can anyone give me an example where the eclipse JDT creates a CAPTURE binding? I've read several capture conversion tutorials, but when I copy-paste exemplifying code snippets, I can never find a ...
4
votes
2answers
400 views

What is a capture conversion in Java and can anyone give me examples?

I've noticed JLS talks of 5.1.10 Capture Conversion, but I fail to understand what they are. Can anyone explain them to me/give examples?
4
votes
3answers
2k views

C# Microsoft LifeCam HD mjpeg capture

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 ...
4
votes
4answers
2k views

Android - capture screen of phone as a movie

for the documentation of a project I would like to record the screen of my Nexus One as a movie or at least in form of a lot of images, which I can convert into a movie. Is that possible? Is there an ...
4
votes
2answers
672 views

.NET Equivalent of Snipping Tool

I'm looking for .NET code which performs the same as Snipping Tool - capturing a screen area. I believe it uses hooks. Would be interesting to know how does it highlight the selected fragment. ...
4
votes
3answers
2k views

Can output from OutputDebugString be viewed in VisualStudio's output window

I am using C# and VS2010. When I use OutputDebugString to write debug information, should it show up in the output window? I can see the output from OutputDebugString in DebugView, but I thought I ...
4
votes
1answer
122 views

Capturing delegates in anonymous methods

Consider Action _captureAction; private void TestSimpleCapturedAction() { Action action = new Action(delegate { }); Action printAction = () => ...
4
votes
2answers
2k views

Monotouch Camera Image Capture and Upload

I would like to be able to capture an image (or choose an image from the photo library) and upload it to a remote server using Monotouch. I am not sure how to obtain and encode the image or how to ...
4
votes
3answers
3k views

Track a click on a flash movie (object / embed) with jQuery

I am making a dynamic banner system which can handle img banners, as well as flash banners done with object/embed. The entire site makes heavy use of jQuery, including handling the 'click' events. ...
4
votes
6answers
599 views

How to capture screenshot of specified website?

I want to know technique to capture screenshot if I have a url list of those sites like google fastflip. What technology or techniques require for this kind of task. If this technique available in ...
4
votes
4answers
17k views

C# trying to capture the KeyDown event on a form

I am creating a small game, the game is printed onto a panel on a windows form. Now i want to capture the keydown event to see if its the arrow keys that has been pressed, the problem however is that ...
3
votes
1answer
150 views

how to capture a block in a helper's child class?

I'm trying to do the following: module ApplicationHelper class PModuleHelper include ActionView::Helpers::TagHelper def heading(head = "", &block) content = block_given? ? ...
3
votes
1answer
207 views

C++ DirectShow W32 Drawing directly on frame (RESOLVED)

how can i draw directly on video frame (webcam) - i need to place a watermark in the corner, so when i capture the video to the file, this watermark should be on each frame? My setup is as follows: ...
3
votes
3answers
487 views

Capture any kind of keystrokes (aka keylogger), preferably c# .net but any kind will do

I need to capture everything that i type on my keyboard and then store it in numerous ways. I'd prefer it to be written on C# for .Net, but anything will do really. I have googled for that kind of ...
3
votes
1answer
495 views

Directshow,capture two USB webcams, can't start at same time

I have two graph in my program each one can control a USB camera to capture video data. I can start them separately without problem like: cam_a.start(); sleep(100); cam_b.start(); However,without ...
3
votes
2answers
152 views

Regex: remove scheme unless it's http(s). (capture negative lookbehind pattern)

I'm having a regex blackout here. How do I capture a negative lookbehind pattern again? I'm trying to remove the scheme (including ://) of a uri unless it is http/https. I'm half way there (or I ...
3
votes
1answer
393 views

Capture Console in Delphi 2009 and above

The code below works for Delphi XE, but the 2400 buffersize is pretty ugly. Anyone have some suggestions on cleaning this routine up ?? And making the 2400 limit disappear (without defining a 64000 ...
3
votes
2answers
845 views

Linux: Capture output of an already running process ( in pure C! )

My situation is the following: I've got a lot of small gizmos ( pretty close to routers, not exactly but anyway that's irrelevant) ; they are running a bare-bones MIPS-based Linux distro. To control ...
3
votes
2answers
307 views

Take a screenshot of the active window in mono

is there a way to take a screenshot of the active window using mono under Linux ? Thanks in advance Mike
3
votes
2answers
1k views

bash variable capture stderr and stdout separately or get exit value

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 ...
3
votes
3answers
125 views

Can I use an OR in regex without capturing what's enclosed?

I have used RegExp before but am far from an expert... I'm reading up right now for a project, but am running into an issue. I'm using rubular.com to build my regex, and their documentation ...
3
votes
2answers
769 views

Capture debug output in c#

do you know if it's possible to capture debug output (create debug listener) in C#? I'd like to have functionality like DebugView has, but I'd like to log debug output to SQL server. Or maybe a better ...
3
votes
2answers
189 views

Is it possible to tie nested generics?

Is it possible to tie nested generics/captures together? I often have the problem of having a Map lookup of class to genericized item of said class. In concrete terms I want something like this (no, ...

1 2 3 4 5 8