Hello everyone,
I have real video in the PictureBox via DirectX.Capture, Now I like to stream this video on RTMP (Flash Media Server).
Please advise to stream webcam on the RTMP Protocole.
Directx Code to preview Webcam on the PictureBox:
Dim_ capture as Capture = New Capture(_filters.VideoInputDevices.Item(frm.Name), _filters.AudioInputDevices.Item(0), False)
capture.VideoCompressor = _filters.VideoCompressors(frm.Name)
_capture.FrameRate = 15
_capture.FrameSize = New Size(640, 480)
_capture.PreviewWindow = PictureBox1
_capture.Start()
Thank you
Go to the complete details ...