Video processing deals mostly with filtering video frames. Most common filters are noise removal, contrast and color modifications.

learn more… | top users | synonyms

0
votes
0answers
5 views

How to sync two MediaElement controld with SAME video in Windows 8 Store Application? (not WPF)

I'm working in a Windows 8 Store Application. Application has a video URI to play it in a MediaElement. I'd like to crop a rectangle from video in MediaElement and show it in other control. Both ...
0
votes
4answers
16 views

OpenCV Video module tutorials

As you know there is no opencv official tutorial for video module. That tutorial section is empty. I googled but couldn't find anything good. Any of you know a good OpenCV video module tutorial in ...
0
votes
0answers
6 views

replace trailing banner in video

I have 500 videos (mp4) that all end in the same few seconds of company information. We recently had to rename the company and now need to replace that trailer. Is there a batch program that can ...
-2
votes
0answers
27 views

Detecting Repeating Clip/Patterns in videos [closed]

How to detect repeating clip/pattern in videos to identify ad or program title using c#?
-1
votes
0answers
31 views

Identifying clothes in opencv [closed]

I know OpenCV can detect humans. Now I need to know whether it can be used to identify set of uniforms they wear, which the uniform images are stored in database or something. What kind of technique ...
0
votes
1answer
19 views

libx264.dll exposes function x264_encoder_open_130, shouldnt this be x264_encoder_open?

I checked in my version of x264 dll file that the open function is named 'x264_encoder_open_130' and 130 happens to be the specific build number of x264 that i use. I build using minGW on windows and ...
0
votes
0answers
27 views

How to create a C# wrapper for custom DirectShow h264 encoder

I am trying to create some basic C# wrapper for a h264 encoder. I am using Directshow.NET and some custom H264 encoder. The encoder directshow filter is a part of video processing project ...
0
votes
1answer
15 views

Replace frame range with image in a video with python

I would like to create a script that will replace some part of a video with images (e.g. with slides of a presentation). My idea for now is to replace every frame in a range with a an appropriate ...
-1
votes
0answers
26 views

How to scan tv channel spectrum from antenna in C# :

I need to scan all (a set of 100+) Tv channels and capture their video feeds and detect certain audio-video patterns for ad monitoring. Using a hardware to get a single channel (tuned from the set top ...
0
votes
0answers
22 views

Getting videoplayback file from javascript (downloading videos from server)?

I am trying to learn how to create video downloaders. This is a previous question: Getting a youtube download URL from existing url?. The problem is that many websites use .swf objects and adobe ...
0
votes
1answer
21 views

Is it possible to match an image with its appearance in a video?

I have a short video of 10 mins. This video is actually an online lecture. When you watch it, you will only see slide show (some slides are annotated). I have the original slides (pdf or image or ...
0
votes
0answers
27 views

noisy binary images in opencv

I am using python and opencv to track the "hinges" of the aortic valve along the cardiac cycle with a Kanade-Lucas-Tomasi algorithm (lkdemo.py as master file), and using this type of video as a ...
0
votes
1answer
29 views

How to achieve 2 pass encoding using x264?

is there a parameter in the x264_param_t structure or do I have to send frames to x264 dll twice.. ? Because I just use encoder_encode function and that returns nal units . Im guessing it should be ...
0
votes
1answer
36 views

Best server side video processing library or software [closed]

I need your suggestion on selecting the right command line tool that would allow me to process user uploaded videos. By processing I mean: Convert to flv, mp4, ogg etc formats Modify quality, ...
0
votes
0answers
29 views

Trace an object on a video?

This may sound like a weird question, but I have a white object on a video (ie ball) and it bounces around a confined area, I am wondering if there is a way to generate a line based on that data? ...
0
votes
0answers
8 views

How to get from Amazon Elastic Transcoder the video duration?

Im using this service but need to know the video length, but in the AWS docs there is no info or in the AWS response.
1
vote
2answers
35 views

How do I efficiently manage the various conversion tasks?

I am making a video converter as a holiday project. I was planning on using an XML file to represent the pending tasks so the user can save the tasks. here is what it will look like: <?xml ...
0
votes
0answers
11 views

Video output scrables using intervideo sink src pair

Though the documentation says, intervideo/audio elements can't be used effectively with gst-launch, it can be used in a least common factor, for testing eg: pipeline gst-launch-1.0 videotestsrc ! ...
-2
votes
0answers
18 views

Include an image in video frames [closed]

In my Windows 8 application, I have an mp4 video file created from the webcam with startRecordToStorageFileAsync(), with a video encoding quality set to VideoEncodingQuality.Vga. The video file is ok, ...
-2
votes
1answer
20 views

how to segment videos in Matlab? [closed]

i am making my project in MATLAB, input would b video stream , then video segmentation, apply dilation , erosion, histogram on that segmented parts, collect interest points using STIP, and train the ...
1
vote
1answer
19 views

how can I create a dynamic video file?

I want to create a video file with dynamic content. specifically,I want to: - read a number from an extrnal text file - show the number in the video - add voice announcing the number I want this ...
1
vote
1answer
28 views

Create a movie from RGB data stored in Array in MATLAB

I have a set of images stored in an array, created as follow: NewClip = cat(4, NewClip, SingleFrame); where SingleFrame is an RGB frame I am passing the array NewClip to a new function to create a ...
-1
votes
0answers
21 views

ffmpeg : Extracting the frames out of the video with corresponding time in ms [closed]

I am using the following command : ffmpeg -i <input-file> image%d.png which outputs the image(frame number).png. But I have a requirement where I have to append time at which frame is ...
0
votes
0answers
8 views

Why does av_write_trailer fails?

I am processing a video file. I use ffmpeg to read each packet. If it is an audio packet, I write the packet into the output video file using av_interleaved_write_frame. If it is a video packet, I ...
1
vote
1answer
16 views

MATLAB return image frames from video

I have a function that processes a video and return a couple of images from it. I am doing so by creating a new video inside the function containing the frames I want and returning the video and is ...
-4
votes
1answer
55 views

How would I do Video and Audio Processing in Common Lisp?

Basically I would like to process Video(mp4 avi) Files and Audio(mp3 wav) files with Common Lisp Code. My goal is to use lisp to identify and process pixel ranges,pixel colors, shapes from Video ...
0
votes
0answers
11 views

EmguCv writing a “header frame” to an avi file

I want to create an encrypted video by encrypting all frames taken from camera. But first i want to add a header to the video in a form of an image. So, before staring grabbing images from camera I am ...
0
votes
0answers
13 views

How to start with Kaltura

I need to Integrate Kaltura API in my Rails3 Application. Key features that i need are, Upload, Stitch and Split Videos. Can Any body suggest where should i start with and need suggestions about, ...
0
votes
2answers
24 views

What is the best python tool for basic video editing?

The two things I'd like to do in particular are: slice up an individual video into many smaller videos Draw basic shapes on top of the video I would prefer to use python because I already know it ...
-1
votes
0answers
41 views

FFMPEG result video freezes in the middle of playback [closed]

I'm trying stitch four source videos together into one grid. For testing purposes I'm working with a single source flv using this command: ffmpeg -i woohoo.flv -i woohoo.flv -i woohoo.flv -i ...
0
votes
0answers
29 views

algorithm for audio and video separation using matlab

sir i want to design an algorithm which can take a movie clip or a video signal having both audio and video and extract the audio and video part separate using the help of filters, matlab and signal ...
0
votes
1answer
31 views

EXCEPTION_ACCESS_VIOLATION Error for find contours function

I am using cvFindContours to find the contours of edge detected frames. First I use cvCanny to get the edges frame from actual frame. Then I am trying to find the contours.Here is my code structure ...
0
votes
0answers
31 views

Free Codec Pack for DirectShow Encoding

As part of a project I'm involved in, we're allowing the user to select a video codec (pre-installed by the user) in order to encode video from our system to an AVI. We're looking for a free, allowed ...
0
votes
1answer
45 views

Reading successive images of a video file in opencv

I'm currently working on a project and at the moment I need to pull successive frames from a video then find and match features on them. The problem Is that when I call VideoCapture::read(Mat ...
0
votes
1answer
40 views

What's the most memory-efficient way of processing a video on MATLAB?

This is the help tutorial for reading a video: xyloObj = VideoReader('xylophone.mpg'); nFrames = xyloObj.NumberOfFrames; vidHeight = xyloObj.Height; vidWidth = xyloObj.Width; ...
0
votes
1answer
35 views

Edge change Ratio

I am working on Edge change Ratio Algorithm for Video shot Detection. I have the basic idea of the algorithm and have implemented a part of it using OpenCV which includes identifying edges using ...
-3
votes
0answers
34 views

measure how far an object in a frame from left side in matlab

I want to ask about the way or instruction of measuring how far an object from the left side of specific frame image using mat lab ? note that we used key points in the detection of the object and ...
0
votes
0answers
13 views

Reading a Video and Converting it to binary

could someone Please Confirm that this code is correct? Its purpose is to read a .avi file and then extract the color components (Red, Green, Blue) and convert them into a stream of binary bits here ...
0
votes
0answers
29 views

Mathematically lossless encoding and decoding of RGB24 image sequence

I am trying to encode a RGB24 image sequence into a mathematically (not merely visually) lossless video. huffyuv was suggested on many online forums so I tried the following. ffmpeg -i ...
2
votes
2answers
100 views

Logitech quickcam pro 9000 Bayer capture with openCV

I'm trying to capture the raw data of the logitech pro 9000 (eg. the so called Bayer pattern). This can be achieved by using the so called bayer application, that can be found floating over the ...
-1
votes
0answers
10 views

Video uploading and editing based on LAMP [closed]

What is the best solution for uploading videos, watermarking them and editing (trim and effects) based on LAMP ? I'm thinking on a jQuery uploader, a PHP takes the video and avconv adds the ...
0
votes
0answers
91 views

PHP - Create a video from images without ffmpeg

I'd like to create videos from a list of still images using PHP, but I can't install ffmpeg on my server, is there a way to achieve this? I don't know anything about perl, but I can write perl code ...
0
votes
1answer
60 views

Keep alpha-transparency of a video through HDMI

The scenario I'm dealing with is actually as follow: I need to get the screen generated by OpenGL and send it through HDMI to a FPGA component while keeping the alpha channel. But right now the data ...
0
votes
0answers
33 views

[Generic Video Spec]: Is there any video specification which compatbile with all devices?

Is there any video specification which compatbile with all (Desktop and Mobile) devices? (Especially in browsers) The specification include bit rate, resolution,etc.
0
votes
0answers
23 views

EmguCV : How to Detect whether the file has reached end of file using QueryFrame()

I am using Emgucv to capture frames from a video file Here is my Code private void Frame(object sender, EventArgs arg) { try { timesbetweenframes++; ...
0
votes
1answer
108 views

Extracting bitmap frames from Video file in vb.net

I want to extract still picture frames from any type of video file (preferable .Avi) in VB.NET and save it in a Bitmap type variable, or by some other mean. The main thing is to extract the image from ...
1
vote
2answers
92 views

why DCT transform is preferred over other transforms in video/image compression

I went through how DCT (discrete cosine transform) is used in image and video compression standards. But why DCT only is preferred over other transforms like dft or dst?
9
votes
4answers
313 views

Concatenate mp4 files in Android using halfninja ffmpeg

I've manage to compile halfninja ffmpeg scripts for Android NDK using NDK version r5c. (Unfortunately any attempt to compile with earlier NDK generated some error), also I'm not very knowledgeable on ...
0
votes
1answer
31 views

Word that encompasses pixel and voxel

Is-there a word that generalizes the notion of pixel and voxel to any dimension ? Similarly, for superpixel / supervoxel. Referring to "superpixel or supervoxel" for a method that can operate on both ...
-1
votes
1answer
48 views

How do I cut an FLV video into several small pieces? [closed]

I am trying to cut an FLV video to several small FLV videos with FFmpeg through PHP. The small videos may have the same length.

1 2 3 4 5 14