Format (Byte) of UDP packets from VLC

1 回表示 (過去 30 日間)
Sugar Daddy
Sugar Daddy 2021 年 2 月 12 日
回答済み: Walter Roberson 2021 年 2 月 12 日
I am trying to read udp packets by streaming an mp3 from vlc player and receiving packets in matlab. I successfully received the packets but the problem is that i want to decode the packets.
Address in VLC is 127.0.0.1 and port is 1234. Now how to write a decoder, I cant find any Byte Information on Internet or VLC forums. Can some please help me with this. The code i used is given below and received packets are also attached.
u = udp('', 'LocalHost', '', 'LocalPort', 1234,'ByteOrder','littleEndian');
fopen(u);
packetData = zeros(512,100,'uint8');
tic;
for i = 1:100
% Receive a single UDP packet
packetData(:,i) = uint8(fread(u));
end
toc;
fclose(u);
The packet is attached.

採用された回答

Walter Roberson
Walter Roberson 2021 年 2 月 12 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDigital Input and Output についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by