Quantcast
Channel: MATLAB Central Newsreader - tag:"combine audio and video"
Viewing all articles
Browse latest Browse all 31

Re: create .avi files from different video and audio streams

$
0
0
> Hi, You should see that when you construct your video.MultimediaFileWriter System object (I recall you're using R2010a) that the VideoCompressor and AudioCompressor (available if the AudioInputPort property is true) properties are set to 'none'. This means the file you write is uncompressed.
>
> You have the ability to specify those properties and write a compressed file.
> % For example
> hmfw = video.MultimediaFileWriter('test.avi','AudioInputPort',true,'VideoInputPort',true)
>
> hmfw =
>
> Description: 'Multimedia File Writer'
> Filename: 'test.avi'
> FileFormat: 'AVI'
> AudioInputPort: true
> VideoInputPort: true
> AudioCompressor: 'None (uncompressed)'
> VideoCompressor: 'None (uncompressed)'
> SampleRate: 44100
> FrameRate: 30
> FileColorSpace: 'RGB'
>
> Now, if you type the following at the command line (don't hit enter!)
> hmfw.VideoCompressor = '
>
> and hit the tab key (keep your cursor just on the other side of the single quote when you hit TAB), you will see the very nice autocomplete feature of MATLAB. You will see the options you have available for video compression.
>
> Similarly with audio:
> % type the following and hit the TAB key--do not hit enter
> hmfw.AudioCompressor = '
>
> You can select the audio and video compression algorithm you want among the supported types. If you know which algorithm you want, you can specify that in your System object constructor:
>
> hmfw = video.MultimediaFileWriter('test.avi','AudioInputPort',true,...
> 'VideoInputPort',true,'AudioInputPort',true,'VideoInputPort',true,...
> 'AudioCompressor','PCM','VideoCompressor','MJPEG Compressor')
>
> Wayne

Thanks Wayne. I understood the concept. I am able to use compression but the results are not good. I want to use xvid codec in matlab. I downloaded and installed xvid codec but it is not getting listed. Please help me out in this matter.

Viewing all articles
Browse latest Browse all 31

Latest Images

Trending Articles





Latest Images