FFmpegView.Wpf
1.0.3
See the version list below for details.
dotnet add package FFmpegView.Wpf --version 1.0.3
NuGet\Install-Package FFmpegView.Wpf -Version 1.0.3
<PackageReference Include="FFmpegView.Wpf" Version="1.0.3" />
paket add FFmpegView.Wpf --version 1.0.3
#r "nuget: FFmpegView.Wpf, 1.0.3"
// Install FFmpegView.Wpf as a Cake Addin #addin nuget:?package=FFmpegView.Wpf&version=1.0.3 // Install FFmpegView.Wpf as a Cake Tool #tool nuget:?package=FFmpegView.Wpf&version=1.0.3
This is a ffmpeg.autogen binding library, for wpf and avalonia.
Avalonia
in Avalonia,To enable extension should be present in your Program.cs file:
AppBuilder.Configure<App>()
.UsePlatformDetect()
.UseFFmpeg()
.LogToTrace();
AND Initialize USING
Core.Initialize(libffmpegDirectoryPath)
OR
AppBuilder.Configure<App>()
.UsePlatformDetect()
.UseFFmpeg(libffmpegDirectoryPath)
.LogToTrace();
then use the FFmpegView
in axaml or charp code, and you need handle audio stream here.
WPF
in Wpf,To enable extension should be present in your App.xaml.cs file:
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
BassCore.Initialize();
Core.Instance.Initialize();
}
then use the FFmpegView
in xaml,and you should set audio handle after InitializeComponent
like:
public MainWindow()
{
InitializeComponent();
playerView.SetAudioHandler(new NAudioStreamDecoder());
}
Audio
for Audio Handle,you can use FFmpegView.Bass or FFmpegView.NAudio Bass:
var playerView = this.FindControl<FFmpegView>("playerView");
playerView.SetAudioHandler(new BassAudioStreamDecoder());
playerView.Play("http://vfx.mtime.cn/Video/2019/02/04/mp4/190204084208765161.mp4");
NAudio:
playerView.SetAudioHandler(new NAudioStreamDecoder());
MEDIA
you can use the MediaItem
class the define the resources info,coding like
var mediaItem = new MediaItem(url);
playerView.Play(mediaItem);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 3.1
- FFmpeg.AutoGen (>= 5.1.1)
- PCLUntils (>= 1.0.8)
- System.Drawing.Common (>= 5.0.3)
-
.NETFramework 4.6.1
- FFmpeg.AutoGen (>= 5.1.1)
- PCLUntils (>= 1.0.8)
-
net6.0
- FFmpeg.AutoGen (>= 5.1.1)
- PCLUntils (>= 1.0.8)
- System.Drawing.Common (>= 7.0.0)
-
net7.0
- FFmpeg.AutoGen (>= 5.1.1)
- PCLUntils (>= 1.0.8)
- System.Drawing.Common (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.