Risposto
Agony with video formats on Windows Matlab installation
The error message you are receiving is a DirectShow error message which means that there is no codec available to read the file....

circa 10 anni fa | 0

| accettato

Risposto
record speech and process during recording
Hi Vic, For this workflow, you need to use the dsp.AudioPlayer/dsp.AudioRecorder system objects and not the audioplayer/audio...

circa 10 anni fa | 0

Risposto
how can i correlate two input signals?
Try the xcorr function in the Signal Processing Toolbox.

circa 10 anni fa | 0

Risolto


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

circa 10 anni fa

Risolto


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

circa 10 anni fa

Risolto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

circa 10 anni fa

Risolto


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

circa 10 anni fa

Risolto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

circa 10 anni fa

Risposto
Matlab bugs / codec issue??
The error indicates that the required codecs are not installed on your school's system. As VideoReader makes use of Windows APIs...

circa 10 anni fa | 1

Risposto
How to read a YUV video in MATLAB2015a
You can install codecs such as ffdshow or K-lite codec pack and try and read the videos. If the vision.VideoFileReader is unable...

circa 10 anni fa | 0

| accettato

Risposto
Where can I get AVI dataset for video processing?
If you have Computer Vision System Toolbox, look in: matlabroot/toolbox/vision/visiondata It has a bunch of AVI files ...

circa 10 anni fa | 1

Risposto
How to find the time interval between consecutive frames in video
The notion of key frames and non key-frames is applicable only in the encoded video stream. Once the video is decoded all frames...

circa 10 anni fa | 0

Risposto
How to Convert IMAGE into VIDEO[ .avi] Please Help me?
Since I do not know the specifics of what you are trying to do, I am unable to provide you with code. But you can use imread to ...

circa 10 anni fa | 0

Risposto
how to read h.264 video in the format .mkv into matlab?
MKV files are not native supported on Windows. You can download the following codec pack: < <http://www.windows7codecs.com/> ...

circa 10 anni fa | 1

Risposto
How to record audio from 4-ch MIC array device? (PSEye MIC)
Use the dsp.AudioRecorder systemm object to record more than 2 channels of data. Dinesh

circa 10 anni fa | 0

Risposto
Any demo videos in MATLAB??
MATLAB ships two files called xylophone.mp4 and xylophone.mpg. If you have the Computer Vision System Toolbox, there are a b...

circa 10 anni fa | 1

Risposto
Why does Matlab close when I try to load a video file?
Hi, It looks you are reading in all the frames in the video into MATLAB albeit one frame at a time. This is most likely the c...

circa 10 anni fa | 0

| accettato

Risposto
ASIO audio device access
The dsp.AudioPlayer/dsp.AudioRecorder system objects and the From/To Audio Device blocks that are part of the DSP System Toolbox...

circa 10 anni fa | 0

Risposto
MATLAB plotting loop causes error and hold does not continue when arrows are included in plot
The error appears to indicate that the you are attempting to write a frame having different dimensions than the ones that have b...

circa 10 anni fa | 0

Risposto
how to generate random noise and fixed pattern noise in video
Anupriya, You can use the imnoise function in the Image Processing Toolbox to add noise to an image. You can follow these ste...

circa 10 anni fa | 1

Risposto
Audioread in loop faster way
One thing you can try is use Parallel Computing Toolbox and read data from each file on a different MATLAB worker. That is the o...

circa 10 anni fa | 0

Risposto
Where can I find vippedtracking.avi video?
You can find it at <matlabroot>/toolbox/vision/visiondata I am able to find it on my MATLAB installation. Hope thi...

circa 10 anni fa | 0

| accettato

Risposto
wav_to_audio auxiliary function not working
If you are on R2012b and higher, I would recommend using audioread because it is an improvement to wavread and it supports a lot...

circa 10 anni fa | 0

| accettato

Risposto
How can other people view the movie I make in MATLAB using MOVIEAVI?
movie2avi provided support a bunch of really old codecs and so the recommended way to export videos out of MATLAB is to use Vide...

circa 10 anni fa | 0

Risposto
How can I obtain audio and video characteristics in multimedia info when I'm using a for loop?
The code below should fix the issue: files= dir('*.avi'); numfiles=length(files); mydata= cell(numfiles,1); info=c...

circa 10 anni fa | 0

| accettato

Risposto
How can I save a matrix of multichannel audio.
From your description, it is not clear what is the behaviour that you are getting. The dsp.AudioRecorder is the exact function t...

circa 10 anni fa | 0

Risposto
How to extract two images from a video avi (or similar) for hot gas leakage analysis from Thermo-camera
JP, If you already have AVI files, use VideoReader to read frames from the video file. If you are attempting to do a live rec...

circa 10 anni fa | 0

Risposto
How can one recognize a digital audio interface name /vendor (USB digital audio)?
audiodevinfo can output the name of the device if you give it a a device ID. However, the only way you get the device ID is if y...

circa 10 anni fa | 0

Risposto
How can one recognize a digital audio interface name /vendor (USB digital audio)?
Hi Ning, The function audiodevinfo does list the device names. Can you confirm that you are able to use these devices out...

oltre 10 anni fa | 0

| accettato

Carica altro