video-processing

FFMPEG: PowerPoint Web Presentation to HQ Video

I am building a recording script for PowerPoint presentations on the web( during a web meeting). I am looking to build a demuxer which will be easier to work with for the rest of the ffmpeg code as we query the timeline and return the current slide image and let ffmpeg handle the encoding of the frame in the output video. I want output...

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...

video format with minimal decode time.

Hi Friends, I am working on embedded device with 266 Mhz processor and 32 Bit bus and 480x272 screen. we want to play fullscreen video with 1024 kbps Bitrate and 24 fps. Is there any video file format which is bigger in size but fast to decode than H263 and H264. Thanks, Sunny. ADDED I am using processor version ARM926EJS, Arch is...

Making Image Slideshows from Linux Graphic Tools

How do I make image slideshows as a video file via 4 small jpegs (128px x 128px) and Linux command-line graphic tools? I need to vary the slideshow transitions with: fade to/from black slide left/right while fading to next image If you're curious, we plan to make videos we can put into mobile phones for real estate listings. (We alr...

Most used Python module for video processing ?

I need to: Open a video file Iterate over the frames of the file as images Do some analysis in this image frame of the video Draw in this image of the video Create a new video with these changes OpenCV isn't working for my webcam, but python-gst is working. Is this possible using python-gst? Thank you! ...

Is there a way to determine the amount of free video RAM in Linux?

We believe that we are running out of video RAM in a Linux based system that we are working on. We are seeing video & graphic drivers segment faulting with allocation related errors. Are they any tools or techniques that we can use to determine how much video ram is free at any given point in time? Either an external application or so...

Video length missing in FLV converted by ffmpeg-php

Hi, I'm converting MP4 videos to FLV using ffmpeg-php on my CentOS server (without intervention from flvtool2 because it's not installed). The FLV videos are created, but no player is capable of retrieving the video duration, this creates serious issues when trying to seek the video. I'm using the player created by Moyea's Flash Video M...

access to frames from common video feed from different applications

Hi, I have UDP MPEG-2 TS streams coming from a satellite TV receiver connected to an Ubuntu box, I can access each frame from each stream (corresponding to different channels) using ffmpeg, no problem. I would like to perform various video processing operations on a stream, e.g. Task A, Task B, etc. These could be face tracking, comme...

How to convert to m4v

by script or programmatically ? I have a bunch of files that need to be converted wondering if there's a better way than go through the prompts one at a time OS windows Vista/XP ...

opnecv tracking dots

hi i want to put dots to cordinates to a video frame which i determine and track them like opencv sample "lk demo" i didnt understand the sample. which functions put the dots and track them thanks for suggestions /* Demo of modified Lucas-Kanade optical flow algorithm. See the printf below */ #ifdef _CH_ #pragma package <openc...

Can you splice a 1 min clip out of a larger file, without transcoding it?

I have a site that allows people to upload large video files in various formats (avi, mp4, mkv and flv). I need to generate a 1 minute "sample" from the larger file that has been uploaded, and the sample needs to be in the same format, have the same frame dimensions and bit-rate as the original file. Is there a way to simply cut out a se...

upload videos in android

hello.. i am trying upload a video from the application.i am able to upload videos of size lesser than 2 MB but when i am trying to upload videos more 2MB i am getting out of memory error. plz suggest how do i upload videos?? ...

How can I programmatically realistically modify a video clip while playing?

A while ago I came across an interesting array of video presentations on a German company's website. They deal with modifying a video stream while it's playing, and I remained pleasantly impressed by the accuracy and smoothness of this technique. Out of all these presentations, I considered one of them quite fascinating in terms of text ...

Construct IAMTimeline object directly from a video (DirectShow editing services)

Is there a way of constructing a IAMTimeline object by loading a video file directly? I know how to build a filter graph, insert and remove filters, reconnect pins etc., but I need to use some functionality exposed by the IAMTimeline interface. I've seen examples that demonstrate how to load a .xtl project, but that's not exactly what ...

stitching videos together using ffmpeg on the command line

Does anybody know how to stitch two (or more) videos together using ffmpeg (or another cli)? This is assuming that all the videos are in the same format and the video format being used allows for lossless stitching (no transcode, just end-to-end stitching). ...

How can I process a -dynamic- videostream and find the (relative) location of a "match" in that videostream?

As the question states: how is it possible to process some dynamic videostream? By saying dynamic, i actually mean I would like to just process stuff on my screen. So the imagearray should be some sort of "continuous screenshot". I'd like to process the video / images based on certain patterns. How would I go about this? It would be p...

What technology is behind OneTrueMedia.com?

I want to compile images and sound into a embeddable Flash video online, similarly to what onetruemedia.com already does. What technology do they use? How would I go about setting up a server to do the same? ...

tools / utilities used to make web based video-editor. ( like animoto or stupeflix )

Hi, I am a great fan of the video editing sites animoto (and stupiflex), i enjoy computer graphics and also have that as my major subject at university. My question is, I have trying to guess what would one need inorder to build such an application. Do any such open-source / free tools do exist that can give the kind of quality offer...

Video editing clip

Hi i want to know Is this possible that video is start from middle or time given by user and run for a given duration. ...

.NET Library for reading video frames

Is there a library written in .NET that allows me to read a video frame by frame? Sample usage could be as follows: Video vid = Video.Open("test.avi"); foreach (Bitmap bmp in vid.Frames) PictureBox1.Picture = bmp; ...