how to store a bits stream as video format?

조회 수: 2 (최근 30일)
tiburce sotohou
tiburce sotohou 2015년 11월 18일
답변: tiburce sotohou 2015년 11월 19일
hello! I need help for matlab function to store a bits stream that I get from another function. thanks

답변 (3개)

Dinesh Iyer
Dinesh Iyer 2015년 11월 18일
Try fwrite(). Just write the bytes stream to a file. fwrite does not care what the bytes represent.

Walter Roberson
Walter Roberson 2015년 11월 18일
I knew this Question was coming as soon as I read your Question about how to convert a video to a bit stream. My answer at that time was
vidcontent = fileread('YourVideoFile.avi');
bitstream = reshape(dec2bin(vidcontent,8).', [], 1) - '0';
The reverse of that is
bytestream = uint8(bin2dec(reshape(char(bitstream + '0'), 8, [])));
and now you can use fopen / fwrite / fclose to write the stream to a file.
Note that this is the general process to transfer any file as a stream of bits. And usually when people ask specifically about transferring video what they really want is a video streaming mechanism, especially one for wireless or radio that is robust to data corruption and can survive dropped data, to play the video on a device rather than to store the data. What we have shown here is not a video streaming mechanism, it is a "convert bytes to bits" mechanism.

tiburce sotohou
tiburce sotohou 2015년 11월 19일
Thanks. I'll try that and give you feedback

카테고리

Help CenterFile Exchange에서 Signal Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by