Windows Phone 7 创建视频流
本文关键字:视频 创建 Phone Windows | 更新日期: 2023-09-27 18:32:55
嗨,我正在Windows Phone 7中创建一個项目,该项目将捕获视频并将其传输到其他设备。这是我到目前为止的代码。
// Initialize the camera if it exists on the device.
if (videoCaptureDevice != null)
{
captureSource = new CaptureSource();
fileSink = new FileSink();
// Create the VideoBrush for the viewfinder.
videoRecorderBrush = new VideoBrush();
CompositeTransform transform = new CompositeTransform();
transform.CenterX = 0.5;
transform.CenterY = 0.5;
transform.Rotation = 90;
videoRecorderBrush.RelativeTransform = transform;
videoRecorderBrush.SetSource(captureSource);
// Display the viewfinder image on the rectangle.
viewfinderRectangle.Fill = videoRecorderBrush;
// Start video capture and display it on the viewfinder.
captureSource.Start();
// Set the button state and the message.
}
我想要的是将捕获的视频保存到某种缓冲区,以便我可以发送它并且其他设备可以看到该视频(视频通话)。有什么想法吗?
bsas 上,你可以从 msdn 开始这个样子
VoIP 示例
有关如何进行应用程序的常规描述,请参阅Silverlight中的链接
你可以从这里至少理解一些代码和理解..
视频通话银光