Questions tagged [screen-capture]

Screen capturing is the act of copying the content of the screen to an image or other data structure, either to a file or memory.

Screen capturing is the act of copying the content of the screen to an image or other data structure, either to a file or memory.

802 questions
499
votes
25 answers

Capture iOS Simulator video for App Preview

Okay, so we can now submit video previews of our apps on the App Store. According to Apple we should do so with an iOS8 device and OSX 10.10. The problem is you have to have all the different devices (4", 4.7", 5.5" and iPad). Is there an…
AXE
  • 8,335
  • 6
  • 25
  • 32
191
votes
16 answers

How to prevent Screen Capture in Android

Is it possible to prevent the screen recording in Android Application? I would like to develop an Android Secure Application. In that I need to detect screen recording software which are running background and kill them. I have used SECURE FLAG for…
Anand
  • 3,346
  • 9
  • 35
  • 54
66
votes
8 answers

Capture Windows screen with ffmpeg

The ffmpeg is cross-platform and very powerful software to handle video/audio or to stream it. On Linux ffmpeg can capture X11 screen with a command below: ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpeg But is it possible to grab Windows Desktop…
kamae
  • 1,825
  • 1
  • 16
  • 21
51
votes
8 answers

How to capture the android device screen content?

Possible Duplicate: How to programatically take a screenshot on Android? How to capture the android device screen content and make an image file using the snapshot data? Which API should I use or where could I find related resources? BTW: not…
Jagie
  • 2,190
  • 3
  • 27
  • 25
38
votes
4 answers

Capture screen of GLSurfaceView to bitmap

I need to be able to capture an image of a GLSurfaceView at certain moment in time. I have the following code: relative.setDrawingCacheEnabled(true); screenshot =…
SamRowley
  • 3,435
  • 7
  • 48
  • 77
37
votes
25 answers

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 (the popup menu that appears after right-clicking an item) of several…
moogs
  • 8,122
  • 8
  • 44
  • 60
34
votes
1 answer

Linux: Screen desktop video capture over network, and VNC framerate

Sorry for the wall of text - TL;DR: What is the framerate of VNC connection (in frames/sec) - or rather, who determines it: client or server? Any other suggestions for desktop screen capture - but "correctly timecoded"/ with unjittered framerate…
sdaau
  • 36,975
  • 46
  • 198
  • 278
33
votes
4 answers

Quicktime X - How to hide mouse during screen capture?

I am attempting to record an app demo on the simulator, and want to use the Quicktime screen capture feature. However, I would like to hide the mouse during the capture. Is this possible? Doesn't seem to be a built in feature, so I am assuming I…
JimmyJammed
  • 9,598
  • 19
  • 79
  • 146
28
votes
6 answers

Convert HTML5 Canvas Sequence to a Video File

I'd like to convert an animation in HTML5 canvas to a video file that could be uploaded to YouTube. Is there any sort of screen capture API or something that could allow me to do this programatically?
eipark
  • 7,442
  • 3
  • 24
  • 33
27
votes
10 answers

How to record a specific window using ffmpeg?

I use ffmpeg to record a window using this code: ffmpeg.exe -f dshow -y -i video="screen-capture-recorder":audio="virtual-audio-capturer":audio="Microphone (USB Audio Device)" -framerate 15 -vcodec libx264 -crf 0 -preset ultrafast -acodec…
Matin Lotfaliee
  • 1,745
  • 2
  • 21
  • 43
26
votes
2 answers

How to capture window contents of a Windows Store App in C#

I have a bit of code to capture windows desktop app contents and save to a Bitmap object in .NET. It uses User32.dll and Gdi32.dll (BitBlt) and works just fine. However, the code produces all-black bitmaps when I give the code a handle to a window…
Richthofen
  • 2,076
  • 19
  • 39
25
votes
4 answers

Render MATLAB figure in memory

Are there any alternatives to using getframe and saveas for saving the contents of a figure to a raster image for further processing? Approach 1: getframe h = figure('visible', 'off'); a = axes('parent', h); % render using `scatter3()` or other…
André Caron
  • 44,541
  • 12
  • 67
  • 125
19
votes
1 answer

How to stream Android Phone Screen to the PC

How to stream the currently displayed screen from my Android device to the PC in real-time? Are there paid/free tools available to do this?
m0j1
  • 4,067
  • 8
  • 31
  • 54
17
votes
2 answers

How to capture screen to be video using C# .Net?

I know there are lots of question like this. But I don't want to use the Windows media encoder 9 because it's a problem to get one, and then it is no longer supported. I know that, one possibility is to capture lots of screenshots and create a…
masterchris_99
  • 2,683
  • 7
  • 34
  • 55
17
votes
1 answer

How to Record Android Screen Video programmatically in KitKat 4.4

I know this question has been asked so many times and there are so many questions, answers and discussions available. But I don't know what to do and what not to do. I already referred to the links below to get solution with no…
user3660803
  • 315
  • 1
  • 3
  • 15
1
2 3
53 54