video-capture

FRAPS alternative: Where to look and what for?

Howdy, later this year I'm going to have a lot of time on my hands, and I thought I'd start a "small" project for myself and release it as open source. I'd like to code my own Fraps alternative. (or continue with Taksi http://taksi.sourceforge.net ). Fraps is a video & sound recording programm, which captures the screen during gamepl...

Save bitmap to video (libavcodec ffmpeg)

Hello, I'd like to convert a HBitmap to a video stream using libavcodec. I get my HBitmap using: HBITMAP hCaptureBitmap =CreateCompatibleBitmap(hDesktopDC, nScreenWidth, nScreenHeight); SelectObject(hCaptureDC,hCaptureBitmap); BitBlt(hCaptureDC,0,0,nScreenWidth,nScreenHeight,hDesktopDC,0,0,SRCCOPY); And I'd like to convert it to YU...

Capture screen as movie with vb .net

I want to capture a video of my screen with vb .net, and i'd like to avoid using directx. I found a tutorial here http://www.codeproject.com/KB/audio-video/CaptureScreenAsVideo.aspx but it resulted in the program instantly crashing, i think it was designed for .net 1.1; Is there another way to do this? Thanks ...

take screen shots from a flv video

I am working on a videos sharing web site and I want to take screen shot from a flv video file from a another website like youtube. I am using PHP but i have no idea how to do it. any guidance is appreciated. ...

Capture video from WPF app

I want to write a C# application which can record a video capture of one of its WPF controls. Is there a solution in .Net to record video from a control, or is there some library I could use? My goal is to write a SketchCast application. The use case is the following: launch SketchCast app and press record button, write ink into a...

Creating video from WPF/Silverlight animation

I have a animation written in XAML. I need to create a video (AVI) from that animation. Is there a way to do that ? ...

saving files created by avisynth

hello all, I have written a short script using avisynth. It takes a number of vodeos, stacks them, and adds some text. I can open the script file in virtualDub and save it as an avi file from there, but what I would like is a way to do this without human action in the process. e.g. have a command line that opens the script in virtualdub...

cocoa capture frame from webcam

Hi to all I'm implementing a software to caputre video from webcam. I've seen MyRecorder sample in Apple Dev and it works fine. I've tried to add a button to take a snapshot from video with this code: - (IBAction)addFrame:(id)sender { CVImageBufferRef imageBuffer; @synchronized (self) { imageBuffer = CVBufferRetain(m...

1080p30 DVI to Flash Player

I have a high-definition video camera which outputs 1080p30 video over a DVI (yes, DVI) cable. Somehow, I need to use this video in a software prototype written with Flash using ActionScript 3. Any thoughts on how to do this? Right now, I am putting the DVI into a Folsom ImagePro HD and getting composite out to a Pinnacle Dazzle, which ...

Capturing Live HD Video on Windows

I would like to capture Live HD video onto a Windows PC. I need access to timecode info for live video analysis. This was easy on DV. ...

How to determine if an Android phone can capture video?

Android 1.6 supports video capture, however, not all phones will support video capture. Is there a way I can tell if the phone I am running on supports video capture or not? ...

how to record video and save to documents directory iphone sdk?

i want to detect if the phone is 3gs then record the video and save to documents directory.and then play movie by picking url from documents directory.note i do not want to save video to savedphotoalbum so that user not be able to delete video.also is there a way i can save video to database ...

Video conversation with asp.net

Hi, Am looking if there is a way of getting started with Video Conversation in an Asp.Net Website . I was looking into the questions here but i couldn't fin what am looking for. Thanks in advance. ...

how to get path of temp recorded video file in iphone sdk and play?

i know if we record video in iphone 3gs the video will be stored in temporary directory.so how do i get the path and play the video using mpmovieplayer? ...

how to get first frame of recorded video using iphone sdk?

i have read in this Stack Overflow Post that how to get thumbnail..... but i want to get full frame of the video so that i can show that in uiimage view.is there a way to do this? ...

How to record video without user interaction in iphone using ObjC

Hi! I'm working on an app. In which I need to provide the functionality to capture the video using iphone 3gs without touching any buttons. I want to use the timer to start and stop video recording. Any one have any idea. how to do this using new iphone sdk. Thanks in advance ...

What is The Easiest, fastest Way to capture video stream from camera with C#?

What is The Easiest, fastest Way to capture video stream from camera with C#? ...

SiteClip or something similar? Recording Video directly.

Hi I've been using SiteClip from seetheface.com to allow users to record video directly to my site but it no longer seems to be working. Does anyone know of something similar? Basically SiteClip handles all the recording via a flash plug in and uploads the resulting video to my site. Many thanks. ...

UIImagePickerController - Video recording - New overlayview

I'm trying to basic video recording. I'm facing few issues with them. When I start the app, its showing camera ready for recording. At the bottom of the view, there's record button and cancel button. When I click record button, it starts recording. When I click record button again, it will not save and ready for next recording. Its showi...

Direct screen pixel/framebuffer access

Hello, I'd like to try and create a program playing a game. I.e. "a bot". I want to be able to directly access the pixels on the screen. I.e. have my program "see" a game and then "make a move"(or at least draw a picture of what move it would make). Both Windows and Linux advice is appreciated, though my guess is that it should be easi...