StreamPlayerCore.WPF.Control
2.1.2
See the version list below for details.
dotnet add package StreamPlayerCore.WPF.Control --version 2.1.2
NuGet\Install-Package StreamPlayerCore.WPF.Control -Version 2.1.2
<PackageReference Include="StreamPlayerCore.WPF.Control" Version="2.1.2" />
<PackageVersion Include="StreamPlayerCore.WPF.Control" Version="2.1.2" />
<PackageReference Include="StreamPlayerCore.WPF.Control" />
paket add StreamPlayerCore.WPF.Control --version 2.1.2
#r "nuget: StreamPlayerCore.WPF.Control, 2.1.2"
#:package StreamPlayerCore.WPF.Control@2.1.2
#addin nuget:?package=StreamPlayerCore.WPF.Control&version=2.1.2
#tool nuget:?package=StreamPlayerCore.WPF.Control&version=2.1.2
StreamPlayerCore.WPF.Control
WPF control for video streaming using FFmpeg.
Built with .NET 10.
Installation
You can install the StreamPlayerCore WPF control via NuGet Package Manager:
Install-Package StreamPlayerCore.WPF.Control
Usage
For a complete example of using the StreamPlayerCore WPF control, please refer to the StreamPlayerCore.WPF.Demo project.
To use the StreamPlayerCore WPF control, it is recommended to add a DockPanel to your window and place the StreamPlayerCore control inside it programatically.
<Window x:Class="StreamPlayerCore.WPF.Demo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="MainWindow" Height="610" Width="1330">
<DockPanel x:Name="DpPlayer1"/>
</Window>
using StreamPlayerCore.WPF.Control;
using System.Windows;
namespace StreamPlayerCore.WPF.Demo
{
public partial class MainWindow : Window
{
private StreamPlayerControl _streamPlayer;
public MainWindow()
{
InitializeComponent();
_streamPlayer = new StreamPlayerControl();
DpPlayer1.Children.Add(_streamPlayerWPF);
_streamPlayer.StartStream("rtsp://your_stream_url");
}
}
}
License
This project is licensed under the LGPLv3 License. See the LICENSE file for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-windows7.0 is compatible. |
-
net10.0-windows7.0
- StreamPlayerCore (>= 2.1.2)
- StreamPlayerCore.Helper (>= 2.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.