video-capture

Capture a video for screen activity in Windows phone 8 [closed]

ⅰ亾dé卋堺 提交于 2019-12-02 19:49:21
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I am working on drawing app for windows phone 8.I want to capture video while I am drawing in screen is it possible? please give me any idea if u have, Actually it's possible in iOS I had worked on that but I was searching a lot in internet there is no help please let me give any

Capture android screen and create video programmatically

99封情书 提交于 2019-12-02 19:32:47
In Android/Java, Is there any code example to capture the screenshot of a computer with good frames per second programatically and create video? I'd like a tutorial or full source code to do this. I'd like the program to work with and without the device having been "rooted". There is app in the play store called Screencast Video Recorder that does this. But you need to ROOT the device for it to work, so I know it can be done. What's the best way to capture android screenshot and create a video programmatically on a non-rooted device? Check the following link https://code.google.com/p/java

How to record a video with avfoundation in Swift?

落爺英雄遲暮 提交于 2019-12-02 14:55:58
I am trying to figure out how to record a video using AVFoundation in Swift. I have got as far as creating a custom camera but I only figured out how to take still pictures with it and I can't figure out how to record video. From what I understand you have to use AVCaptureVideoDataOutput to get the data from the recording but I can't figure out how to start the recording and implement the delegate methods. The whole AVFoundation Programing Guide/Still and Video Media Capture is in Objective-C and I can't seem to decipher it out. Here's my attempt to accomplish this task: First I set up the

ios endless video recording

自作多情 提交于 2019-12-02 14:15:35
I'm trying to develop an iPhone app that will use the camera to record only the last few minutes/seconds. For example, you record some movie for 5 minutes click "save", and only the last 30s will be saved. I don't want to actually record five minutes and then chop last 30s (this wont work for me). This idea is called "Loop recording" . This results in an endless video recording, but you remember only last part. Precorder app do what I want to do. (I want use this feature in other context) I think this should be easily simulated with a Circular buffer . I started a project with AVFoundation. It

How to get Bytes from CMSampleBufferRef , To Send Over Network

家住魔仙堡 提交于 2019-12-02 14:10:44
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 Now i did Following things 1.Created videoCaptureDevice 2.Created AVCaptureDeviceInput and set videoCaptureDevice 3.Created AVCaptureVideoDataOutput and implemented Delegate 4.Created AVCaptureSession - set input as AVCaptureDeviceInput and set output as AVCaptureVideoDataOutput 5.In AVCaptureVideoDataOutput Delegate method -(void)captureOutput:

How do I create a live video recording program on Visual Studio using c#?

久未见 提交于 2019-12-02 13:21:32
I am currently doing a project for school and desperately in need of help. The main gist of the project: I am using 3 Bosch Dinion IP Cameras to film students during a lecture. I have to create a program on Visual Studio that enables the lecturer to view all 3 cameras on one screen, able to record all 3 footages and then save them in a database afterwards. The thing about Bosch is that there is very limited material for me to refer to online. I have already referred to SDKs from Bosch and Ozeki but I can't seem to figure out the codes. I sought help from a few people and they told me to use

Capture a video for screen activity in Windows phone 8 [closed]

大憨熊 提交于 2019-12-02 11:28:48
I am working on drawing app for windows phone 8.I want to capture video while I am drawing in screen is it possible? please give me any idea if u have, Actually it's possible in iOS I had worked on that but I was searching a lot in internet there is no help please let me give any idea how it will be possible. Thanks You could also use Expression Encoder 4 ( http://www.microsoft.com/en-us/download/confirmation.aspx?id=27870 ) to screen capture the WP8 emulator and get a nice video out of it. You can define the screen area, clipping the emulator shell if you want. Here is a couple of posts on

AVCaptureStillImageOutput never calls completition handler

最后都变了- 提交于 2019-12-02 07:21:26
问题 Following code doesn't work. Whats wrong? AVCaptureDevice * videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; AVCaptureDeviceInput * videoInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:nil]; AVCaptureSession * captureSession = [[AVCaptureSession alloc] init]; captureSession.sessionPreset = AVCaptureSessionPresetMedium; if (![captureSession canAddInput:videoInput]) NSLog(@"Can't add input"); [captureSession addInput:videoInput]; self

X264 Error message when capturing video

旧时模样 提交于 2019-12-02 06:33:52
I'm writing a program to save some webcam video to a file. I'm using the x264 codec found here x264 When I try writing frames to a file I get this error message poping up. x264vfw [warning]: Few frames probably would be lost. Ways to fix this: x264vfw [warning]: -if you use VirtualDub or its fork than you can enable 'VirtualDub Hack' option x264vfw [warning]: -you can enable 'File' output mode x264vfw [warning]: -you can enable 'Zero Latency' option I found this VirtualDub Hack but then I'm not using virtual dub. I'm not sure what the File output mode and zero latency mean. I think the problem

AVCaptureStillImageOutput never calls completition handler

最后都变了- 提交于 2019-12-02 04:47:26
Following code doesn't work. Whats wrong? AVCaptureDevice * videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; AVCaptureDeviceInput * videoInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:nil]; AVCaptureSession * captureSession = [[AVCaptureSession alloc] init]; captureSession.sessionPreset = AVCaptureSessionPresetMedium; if (![captureSession canAddInput:videoInput]) NSLog(@"Can't add input"); [captureSession addInput:videoInput]; self.stillImageOutput = [[AVCaptureStillImageOutput alloc] init]; [self.stillImageOutput setOutputSettings:@