Questions tagged [video-capture]

Questions related to computer oriented video capture and the programming tools and solutions for dealing with captured frames from a video.

2280 questions
463
votes
24 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
  • 7,787
  • 6
  • 21
  • 31
195
votes
17 answers

Capture Video of Android's Screen

Forget screenshots, is it posible to capture a video of the running application in android? Rooted or non-rooted, I don't care, I want atleast 15fps. Update: I don't want any external hardware. The intent is to make it perfectly portable and every…
Taranfx
  • 10,103
  • 13
  • 74
  • 95
65
votes
3 answers

How to record video from background of application : Android

I am developing an application which will be able to record video from background of application by using Service. Problem description : In my application recording will be scheduled. If user want to record video from 1 PM to 3 PM, he will schedule…
Android Learner
  • 2,499
  • 5
  • 32
  • 43
48
votes
7 answers

Creating thumbnail from local video in swift

How to create thumbnail in swift from a local video file ? For example if the video file path is located here…
Ralph
  • 1,745
  • 3
  • 12
  • 21
37
votes
3 answers

Choosing a video codec for screen recording

I'm doing a series of tutorials by recording the screen and my voice. Just as PNG works best for screenshots, while JPEG is better suited for photographs (although lossy), which video encoding & container formats are better for screen…
Dheeraj Vepakomma
  • 18,747
  • 12
  • 67
  • 98
33
votes
4 answers

Recording video feed from an IP camera over a network

I am building a camera security system for my office however we do not want to keep the DVR on site. We looked at NVR (network video recorders) and they are too expensive. I thought of an alternative to this. I do not know how much feasible it is…
YD8877
  • 9,236
  • 18
  • 56
  • 89
32
votes
2 answers

Can use AVCaptureVideoDataOutput and AVCaptureMovieFileOutput at the same time?

I want to record video and grab frames at the same time with my code. I am using AVCaptureVideoDataOutput for grab frames and AVCaptureMovieFileOutput for video recording. But can't work and get the error code -12780 while working at the same time…
Yu-hua Chang
  • 321
  • 1
  • 4
  • 3
31
votes
3 answers

How can I export an Adobe Connect recording as a video?

I have links to recorded conferences, how can I export video from them?
michael nesterenko
  • 13,240
  • 23
  • 104
  • 175
30
votes
2 answers

How to get Bytes from CMSampleBufferRef , To Send Over Network

Am Captuing video using AVFoundation frame work .With the help of Apple Documentation http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/03_MediaCapture.html%23//apple_ref/doc/uid/TP40010188-CH5-SW2…
Asta ni enohpi
  • 1,393
  • 3
  • 16
  • 37
29
votes
6 answers

MediaRecorder.stop() stop failed: -1007

I am recording video with MediaRecorder. My code works fine on 2.3.3 but fails on 4.0.3. The issue is following: the code mediaRecorder.stop() throws the RuntimeExeption java.lang.RuntimeException: stop failed. at…
Alex
  • 1,279
  • 3
  • 15
  • 33
27
votes
10 answers

Reading every nth frame from VideoCapture in OpenCV

Is it possible to read frames from a video in steps (eg I want to read every fifth frame of a video stream). Currently I'm doing this as a workaround but it's not very effecient. bool bSuccess int FramesSkipped = 5; for (int a = 0; <…
user3079474
  • 1,221
  • 2
  • 22
  • 34
25
votes
6 answers

What is the best method to capture images from a live video device for use by a Java-based application?

I am looking into an image processing problem for semi-real time detection of certain scenarios. My goal is to have the live video arrive as Motion JPEG frames in my Java code somehow. I am familiar with the Java Media Framework and, sadly, I…
Bob Cross
  • 21,763
  • 12
  • 52
  • 94
24
votes
3 answers

How to get the latest frame from capture device (camera) in opencv

I want to connect to a camera, and only capture a frame when an event happens (e.g. keypress). A simplified version of what I'd like to do is this: cap = cv2.VideoCapture(device_id) while True: if event: img = cap.read() …
memo
  • 3,025
  • 4
  • 25
  • 33
24
votes
2 answers

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

Do you have some library to capture a screen to be a compressed video file or some solution that can do it?
Noppol Pilukruangdet
  • 1,685
  • 3
  • 22
  • 26
24
votes
3 answers

Simultaneous AVCaptureVideoDataOutput and AVCaptureMovieFileOutput

I need to be able to have AVCaptureVideoDataOutput and AVCaptureMovieFileOutput working at the same time. The below code works, however, the video recording does not. The didFinishRecordingToOutputFileAtURL delegate is called directly after…
user346443
  • 4,338
  • 13
  • 53
  • 75
1
2 3
99 100