2024-01-28 21:12:25 +08:00
|
|
|
|
#if !NET40
|
|
|
|
|
using CPF;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
using CPF.Animation;
|
|
|
|
|
using CPF.Charts;
|
|
|
|
|
using CPF.Controls;
|
|
|
|
|
using CPF.Drawing;
|
2024-01-28 21:12:25 +08:00
|
|
|
|
using CPF.OpenGL;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
using CPF.Shapes;
|
|
|
|
|
using CPF.Styling;
|
|
|
|
|
using CPF.Svg;
|
2024-01-28 21:12:25 +08:00
|
|
|
|
using LibMpv.Client;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace ConsoleApp1
|
|
|
|
|
{
|
|
|
|
|
public class OpenGLWindow : Window
|
|
|
|
|
{
|
|
|
|
|
protected override void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
LoadStyleFile("res://ConsoleApp1/Stylesheet1.css");
|
|
|
|
|
//加载样式文件,文件需要设置为内嵌资源
|
|
|
|
|
|
|
|
|
|
Title = "标题";
|
|
|
|
|
Width = 500;
|
|
|
|
|
Height = 400;
|
|
|
|
|
Background = null;
|
2024-01-28 21:12:25 +08:00
|
|
|
|
CanResize = true;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
Children.Add(new WindowFrame(this, new Panel
|
|
|
|
|
{
|
|
|
|
|
Width = "100%",
|
|
|
|
|
Height = "100%",
|
|
|
|
|
Children = //内容元素放这里
|
|
|
|
|
{
|
|
|
|
|
new ScrollBar
|
|
|
|
|
{
|
|
|
|
|
MarginLeft = 387,
|
|
|
|
|
MarginTop = 14,
|
|
|
|
|
Width = 35,
|
|
|
|
|
Height = 236,
|
|
|
|
|
},
|
2024-01-28 21:12:25 +08:00
|
|
|
|
new VideoView
|
2023-11-21 23:05:03 +08:00
|
|
|
|
{
|
2024-01-28 21:12:25 +08:00
|
|
|
|
Height = "100%",
|
|
|
|
|
Width = "100%",
|
|
|
|
|
PresenterFor=this,
|
|
|
|
|
Name="view"
|
2023-11-21 23:05:03 +08:00
|
|
|
|
},
|
|
|
|
|
new TextBox
|
|
|
|
|
{
|
|
|
|
|
MarginLeft = 14,
|
|
|
|
|
MarginTop = 23,
|
|
|
|
|
Height = 94,
|
|
|
|
|
Width = 153,
|
|
|
|
|
},
|
|
|
|
|
}
|
2024-01-28 21:12:25 +08:00
|
|
|
|
})
|
|
|
|
|
{ MaximizeBox = true });
|
2023-11-21 23:05:03 +08:00
|
|
|
|
if (!DesignMode)//设计模式下不执行,也可以用#if !DesignMode
|
|
|
|
|
{
|
2024-01-28 21:12:25 +08:00
|
|
|
|
|
2023-11-21 23:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-28 21:12:25 +08:00
|
|
|
|
VideoView video;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
#if !DesignMode //用户代码写到这里,设计器下不执行,防止设计器出错
|
|
|
|
|
protected override void OnInitialized()
|
|
|
|
|
{
|
|
|
|
|
base.OnInitialized();
|
2024-01-28 21:12:25 +08:00
|
|
|
|
video = FindPresenterByName<VideoView>("view");
|
|
|
|
|
VideoView.InitMpv();
|
|
|
|
|
DynamicallyLoadedBindings.ThrowErrorIfFunctionNotFound = true;
|
|
|
|
|
video.MpvContext = new MpvContext() { };
|
|
|
|
|
//video.LoadFile(@"D:\xhm\Videos\202204201620.mp4");
|
|
|
|
|
//video.Play();
|
|
|
|
|
WindowState = WindowState.Maximized;
|
2023-11-21 23:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
//用户代码
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2024-01-28 21:12:25 +08:00
|
|
|
|
|
|
|
|
|
public class VideoView : CPF.Skia.GLView, IMpvVideoView
|
|
|
|
|
{
|
|
|
|
|
public static void InitMpv()
|
|
|
|
|
{
|
|
|
|
|
var platform = IntPtr.Size == 8 ? "" : "x86";
|
|
|
|
|
var platformId = FunctionResolverFactory.GetPlatformId();
|
|
|
|
|
if (platformId == LibMpvPlatformID.Win32NT)
|
|
|
|
|
{
|
|
|
|
|
var path = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, platform);
|
|
|
|
|
LibMpv.Client.LibMpv.UseLibMpv(2).UseLibraryPath(path);
|
|
|
|
|
}
|
|
|
|
|
else if (platformId == LibMpvPlatformID.Unix)
|
|
|
|
|
{
|
|
|
|
|
var path = $"/usr/lib/{platform}-linux-gnu";
|
|
|
|
|
LibMpv.Client.LibMpv.UseLibMpv(0).UseLibraryPath(path);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void LoadFile(string fileName, string mode = "replace")
|
|
|
|
|
{
|
|
|
|
|
//mpvContext.SetOptionString("opengl-glfinish", "yes");
|
|
|
|
|
//mpvContext.SetLogLevel(MpvLogLevel.MpvLogLevelDebug);
|
|
|
|
|
mpvContext.Command("loadfile", fileName, mode);
|
|
|
|
|
}
|
|
|
|
|
public void Play()
|
|
|
|
|
{
|
|
|
|
|
mpvContext.SetPropertyFlag("pause", false);
|
|
|
|
|
}
|
|
|
|
|
public MpvContext? MpvContext
|
|
|
|
|
{
|
|
|
|
|
get { return mpvContext; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (ReferenceEquals(value, mpvContext))
|
|
|
|
|
return;
|
|
|
|
|
if (mpvContext != null)
|
|
|
|
|
DetachMpvContext(mpvContext);
|
|
|
|
|
mpvContext = value;
|
|
|
|
|
if (mpvContext != null)
|
|
|
|
|
AttachMpvContext(mpvContext);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnGLRender(IGlContext gl)
|
|
|
|
|
{
|
|
|
|
|
base.OnGLRender(gl);
|
|
|
|
|
if (mpvContext != null && getProcAddres != null)
|
|
|
|
|
{
|
|
|
|
|
var scaling = Root.RenderScaling;
|
|
|
|
|
var Bounds = ActualSize;
|
|
|
|
|
var width = Math.Max(1, (int)(Bounds.Width * scaling));
|
|
|
|
|
var height = Math.Max(1, (int)(Bounds.Height * scaling));
|
|
|
|
|
var stop = new System.Diagnostics.Stopwatch();
|
|
|
|
|
stop.Start();
|
|
|
|
|
mpvContext.RenderOpenGl(width, height, FramebufferId, 1);
|
|
|
|
|
stop.Stop();
|
|
|
|
|
System.Diagnostics.Debug.WriteLine(stop.ElapsedMilliseconds);
|
|
|
|
|
}
|
|
|
|
|
update = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DetachMpvContext(MpvContext context)
|
|
|
|
|
{
|
|
|
|
|
context.StopRendering();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AttachMpvContext(MpvContext context)
|
|
|
|
|
{
|
|
|
|
|
if (getProcAddres != null)
|
|
|
|
|
{
|
|
|
|
|
mpvContext?.ConfigureRenderer(new OpenGlRendererConfiguration() { OpnGlGetProcAddress = getProcAddres, UpdateCallback = this.UpdateVideoView });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnGLLoaded(IGlContext gl)
|
|
|
|
|
{
|
|
|
|
|
base.OnGLLoaded(gl);
|
|
|
|
|
if (getProcAddres != null) return;
|
|
|
|
|
|
|
|
|
|
getProcAddres = gl.GetProcAddress;
|
|
|
|
|
if (mpvContext != null)
|
|
|
|
|
{
|
|
|
|
|
AttachMpvContext(mpvContext);//需要绑定之后才能加载视频
|
|
|
|
|
//LoadFile(@"F:\新建文件夹\....mp4");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
if (mpvContext != null)
|
|
|
|
|
DetachMpvContext(mpvContext);
|
|
|
|
|
}
|
|
|
|
|
bool update;
|
|
|
|
|
private void UpdateVideoView()
|
|
|
|
|
{
|
|
|
|
|
if (!update)
|
|
|
|
|
{
|
|
|
|
|
update = true;
|
|
|
|
|
CPF.Threading.Dispatcher.MainThread.BeginInvoke(() =>
|
|
|
|
|
{
|
|
|
|
|
Invalidate();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private MpvContext? mpvContext = null;
|
|
|
|
|
private OpenGlGetProcAddressDelegate getProcAddres;
|
|
|
|
|
}
|
2023-11-21 23:05:03 +08:00
|
|
|
|
}
|
2024-01-28 21:12:25 +08:00
|
|
|
|
#endif
|