2017-08-24 16 views
0

私のプロジェクトでは、UDP経由でビデオを受信する必要があります。ソースにはIP 224.0.0.21、シンクにはIP 169.254.170.141があります。私はポート3956経由でビデオを受信します(これはWiresharkの有効な情報です)。私はUDPトラフィックを受信するためにSharpPcapを使用しますが、マルチキャストへの参加方法はありません。私はMSDNからこのコードを試してみますが、動作しません。Cantはマルチキャストグループに参加するC#

 IPAddress multicastaddress = IPAddress.Parse("224.0.0.21"); 
     IPEndPoint remoteep = new IPEndPoint(IPAddress.Any, 3956); 
     m_ClientTarget.JoinMulticastGroup(multicastaddress, localAddr); 

私のPCにはいくつかのネットワークアダプタがありますが、ソースビデオに接続されたデバイスのIPアドレスを使用しています。ソースとシンクは直接接続されています。私がwiresharkでトラフィックを監視し始めると、私のプログラムもパケットを受信しますが、wireshackがなければそれはできません。 マイコード:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Threading.Tasks; 
using System.Windows.Forms; 
using SharpPcap; 
using SharpPcap.LibPcap; 
using SharpPcap.AirPcap; 
using SharpPcap.WinPcap; 
using System.IO; 
using System.Net.Sockets; 
using System.Net; 
using System.Drawing.Imaging; 
using System.Runtime.InteropServices; 
using System.Threading; 

namespace GVSPCapture 
{ 
    public partial class Form1 : Form 
    { 

     static int frameCounter = 0; 
     static byte[] pixels = new byte[1920 * 1080 * 3]; 
     static IPAddress fpgaAddr = IPAddress.Parse("224.0.0.21"); 
     static IPAddress localAddr = IPAddress.Parse("169.254.170.141"); 
     static MulticastOption mcastOption = new MulticastOption(fpgaAddr, localAddr); 
     private static UdpClient m_ClientTarget = new UdpClient(3956); 
     private static IPAddress m_GrpAddr; 
     const int GroupPort = 3956; 

     public Form1() 
     { 
      InitializeComponent(); 
     } 

     private void Form1_Load(object sender, EventArgs e) 
     { 
      findDevices(); 
     } 

     public void findDevices() 
     { 
      string ver = SharpPcap.Version.VersionString; 

      var devices = CaptureDeviceList.Instance; 

      foreach (var dev in devices) 
      { 
       lbxDevices.Items.Add(dev.Name + dev.Description); 
      } 

     } 

     private void JoinVideoMulticast() 
     { 

      IPAddress multicastaddress = IPAddress.Parse("224.0.0.21"); 
      IPEndPoint remoteep = new IPEndPoint(IPAddress.Any, 3956); 
      m_ClientTarget.JoinMulticastGroup(multicastaddress, IPAddress.Parse("169.254.170.141")); 

      while (true) 
      { } 

     } 

     private void startCapture(ICaptureDevice dev) 
     { 
      if (!dev.Started) 
      { 
       dev.OnPacketArrival += new PacketArrivalEventHandler(device_OnPacketArrival); 
       int readTimeoutMilliseconds = 1000; 
       if (dev is AirPcapDevice) 
       { 
        // NOTE: AirPcap devices cannot disable local capture 
        var airPcap = dev as AirPcapDevice; 
        airPcap.Open(SharpPcap.WinPcap.OpenFlags.DataTransferUdp, readTimeoutMilliseconds); 
       } 
       else if (dev is WinPcapDevice) 
       { 
        var winPcap = dev as WinPcapDevice; 

        winPcap.Open(SharpPcap.WinPcap.OpenFlags.DataTransferUdp | SharpPcap.WinPcap.OpenFlags.NoCaptureLocal, readTimeoutMilliseconds); 
       } 
       else if (dev is LibPcapLiveDevice) 
       { 
        var livePcapDevice = dev as LibPcapLiveDevice; 
        livePcapDevice.Open(DeviceMode.Promiscuous, readTimeoutMilliseconds); 
       } 
       else 
       { 
        throw new System.InvalidOperationException("unknown device type of " + dev.GetType().ToString()); 
       } 

       dev.StartCapture(); 

       Thread recvThread = new Thread(JoinVideoMulticast); 
       recvThread.Start(); 

      } 
     } 

     delegate void SetTextCallback(string text); 

     private void SetText(string text) 
     { 
      // InvokeRequired required compares the thread ID of the 
      // calling thread to the thread ID of the creating thread. 
      // If these threads are different, it returns true. 
      if (this.tbxCnt.InvokeRequired) 
      { 
       SetTextCallback d = new SetTextCallback(SetText); 
       this.Invoke(d, new object[] { text }); 
      } 
      else 
      { 
       this.tbxCnt.Text = text; 
      } 
     } 

     private void device_OnPacketArrival(object sender, CaptureEventArgs e) 
     { 
      var time = e.Packet.Timeval.Date; 
      var len = e.Packet.Data.Length; 
      if (len == 572) 
      { 
       var tmp = e.Packet.Data; 
       int packet_id = tmp[47] << 16 | tmp[48] << 8 | tmp[49]; 
       int startPos = (packet_id - 1) * 522; 
       for (int i = 50; i < tmp.Length; i+=3) 
       { 
        pixels[startPos + i + 0 - 50] = tmp[i]; 
        pixels[startPos + i + 1 - 50] = tmp[i]; 
        pixels[startPos + i + 2 - 50] = tmp[i]; 
       } 
      } 
      if (len == 60) 
      { 
       var im = CopyDataToBitmap(pixels); 
       pictbFrame.Image = im; 
       frameCounter += 1; 
       SetText(frameCounter.ToString()); 
      } 
     } 

     public Bitmap CopyDataToBitmap(byte[] data) 
     { 
      GCHandle pinned = GCHandle.Alloc(data, GCHandleType.Pinned); 
      IntPtr ptr = pinned.AddrOfPinnedObject(); 
      BitmapData dt = new BitmapData(); 
      dt.Scan0 = ptr; 
      dt.Stride = 5760; 
      dt.Width = 1920; 
      dt.Height = 1080; 
      dt.PixelFormat = PixelFormat.Format24bppRgb; 
      Bitmap btm = new Bitmap(1920, 1080, 5760, PixelFormat.Format24bppRgb, dt.Scan0); 
      return btm; 
     } 

     private void btnStart_Click(object sender, EventArgs e) 
     { 
      int devNum = lbxDevices.SelectedIndex; 
      if (devNum > 0) 
      { 
       var device = CaptureDeviceList.Instance[devNum]; 
       startCapture(device); 
      } 
     } 

     private void btnStop_Click(object sender, EventArgs e) 
     { 
      int devNum = lbxDevices.SelectedIndex; 
      if (devNum > 0) 
      { 
       var device = CaptureDeviceList.Instance[devNum]; 
       if (device.Started) 
       { 
        device.StopCapture(); 
        device.Close(); 
       } 
      } 
      m_ClientTarget.DropMulticastGroup(fpgaAddr); 
     } 
    } 
} 
+0

一つの問題は、それがルータ機能のために予約されたマルチキャストアドレスである、あなたは最初の場所でPC上でそれに参加しようとするべきではありません。 –

+0

@RonMaupinマルチキャストアドレスに参加すると何が悪いですか? –

+0

マルチキャストグループが別の目的のために予約されていると悪いです。そのマルチキャストグループをビデオに使用しないでください。このタイプのもののために予約されたマルチキャストアドレスのブロック( '239.0.0.0-239.255.255.255' Organization-Local Scope)があります。それは、あなた自身の目的のためにGoogleに属するIPアドレスを使用しようとするようなものです。 IANAは、ユニキャストアドレスの割り当てを維持するのと同じ方法で_ [IPv4マルチキャストアドレス空間レジストリ](https://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml)_を維持します。 –

答えて

0

私はffmpegのと、コードをテストし

ffmpeg.exe -i aa.mp4 -f MPEG UDP://224.0.0.21:3956

int PORT = 3956; 
string MULTICAST_IP = "224.0.0.21"; 


UdpClient udpClient = new UdpClient(PORT); 
udpClient.JoinMulticastGroup(IPAddress.Parse(MULTICAST_IP)); 

var from = new IPEndPoint(0, 0); 
var recvBuffer = udpClient.Receive(ref from); 
0

あなたのコードを見ることなく(あなたが見せてくれるスニペット以上のものを想定しています)、あなたを助けるのは難しいです。 マルチキャストデータグラムを受信するクライアントのための基本的な設定は、このテストしていないスニペットのようになります。その後

UdpClient mClient = new UdpClient(3956, AddressFamily.InterNetwork); 
IPAdress groupAddress = IPAddress.Parse("224.0.0.21); 
mClient.JoinMulticastGroup(groupAddress); 

あなたがmClient.Receive()を使用して受信...

多分これは役立ちますか?またはMSDN(https://msdn.microsoft.com/en-us/library/ekd1t784(v=vs.110).aspx)に関するドキュメント。

C.

関連する問題