找传奇、传世资源到传世资源站!

winfrom 做的播放器超级好用 已经测试完毕

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard 
from clipboard

using System;using System.IO;using System.Windows;using System.Windows.Controls;namespace WPFVLC{ /// <summary> /// VLCCtl.xaml 的交互逻辑 /// </summary> public partial class VLCCtl : UserControl { public VLCCtl() { InitializeComponent(); } private void UserControl_Loaded(object sender, RoutedEventArgs e) { Load(); } private void Load() { if (IntPtr.Size == 4) { // Use 32 bits library this.VLCPlayer.MediaPlayer.VlcLibDirectory = new DirectoryInfo(System.IO.Path.Combine(Environment.CurrentDirectory, "libvlc_x86")); } else { // Use 64 bits library this.VLCPlayer.MediaPlayer.VlcLibDirectory = new DirectoryInfo(System.IO.Path.Combine(Environment.CurrentDirectory, "libvlc_x64")); } var options = new string[] { // VLC options can be given here. Please refer to the VLC command line documentation. }; this.VLCPlayer.MediaPlayer.VlcMediaplayerOptions = options; // Load libvlc libraries and initializes stuff. It is important that the options (if you want to pass any) and lib directory are given before calling this method. this.VLCPlayer.MediaPlayer.EndInit(); } public void Stop() { this.VLCPlayer.MediaPlayer.Stop(); } public void Play(string uri) { this.VLCPlayer.MediaPlayer.Play(uri); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复