使用WPFMediaKit显示实时相机的问题

时间:2014-02-26 10:38:12

标签: c# wpf video wpf-mediakit

我有一个列表视图,显示系统使用WPFMediaKit识别的所有摄像机的预览。

这是我的代码:

Window4.xaml

<Window x:Class="SampleApplication.Window4"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:WPFMediaKit="clr-namespace:WPFMediaKit.DirectShow.Controls;assembly=WPFMediaKit"
    Title="Window4" Height="300" Width="300">
<Window.Resources>
    <Style x:Key="CamerasLVStyle" TargetType="{x:Type ListView}" BasedOn="{StaticResource {x:Type ListBox}}">
        <Setter Property="BorderBrush" Value="Black"/>
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate>
                    <Border 
                        x:Name="bd" >
                        <ScrollViewer>
                            <WrapPanel
                                ItemWidth="75"
                                ItemHeight="65"
                                IsItemsHost="True"
                                Width="{Binding ActualWidth, RelativeSource={RelativeSource AncestorType={x:Type ScrollContentPresenter}}}"/>
                        </ScrollViewer>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    <Style x:Key="CamerasLVItem" TargetType='{x:Type ListViewItem}' BasedOn='{StaticResource {x:Type ListBoxItem}}'>
        <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
        <Setter Property="VerticalContentAlignment" Value="Stretch"/>
        <Setter Property="Margin" Value="0,0,0,0"/>
        <Setter Property="ContentTemplate">
            <Setter.Value>
                <DataTemplate>
                    <Border 
                        Background="#FF1E2225">
                        <WPFMediaKit:VideoCaptureElement x:Name="videoCapElement"
                                                         LoadedBehavior="Play"
                                                         VideoCaptureDevice="{Binding}"/>
                    </Border>
                </DataTemplate>
            </Setter.Value>
        </Setter>
        <Setter Property="ToolTip">
            <Setter.Value>
                <StackPanel>
                    <TextBlock Text="{Binding Name}"/>
                </StackPanel>
            </Setter.Value>
        </Setter>
    </Style>
</Window.Resources>
<Grid>
    <ListView x:Name="CamerasList"
            Grid.Column="1"
            Background="{x:Null}"
            SelectionMode="Single"
            ItemsSource="{Binding Cameras}"
            Style="{StaticResource CamerasLVStyle}"
            ItemContainerStyle="{StaticResource CamerasLVItem}"/>
</Grid>

Window4.xam.cs

public partial class Window4 : Window
{
    private List<DsDevice> _cameras;
    public List<DsDevice> Cameras
    {
        get { return _cameras; }
        set { _cameras = value; }
    }

    public Window4()
    {
        InitializeComponent();

        Cameras = MultimediaUtil.VideoInputDevices.ToList();
        this.DataContext = this;
    }
}

在一些电脑工作正常并显示所有相机,但在其他一些没有。

例如,我有一台带有集成网络摄像头和Microsoft LifeCam Cinema的Windows 8.1笔记本电脑。

有时它会显示第一个,有时会显示第二个,但从不同时显示两个(两个黑色方块都出现但只显示一个流)。

有什么建议吗? 感谢。

2 个答案:

答案 0 :(得分:0)

好吧,我发现了问题。

经过多次尝试,与代码斗争,问题是硬件。

如果我将Microsoft LifeCam Cinema连接到笔记本电脑的USB端口,而不是将其连接到通过USB连接到笔记本电脑的辅助监视器的USB端口,则两个摄像头同时显示在应用程序中。

我不知道为什么,但是......

答案 1 :(得分:0)

  

有时它显示第一个,有时显示第二个,但从不同时显示

2+ USB摄像头不能同时工作的典型原因(它们可能分别正常工作)是USB带宽不足以同时运行。带宽限制相当低:同步管道(通常用于视频)的最大吞吐量为24MB / s。

如果两台摄像机连接到两个不同的根集线器,则可以正常工作。

有关此问题的更多信息: