使用c#.NET实现视频播放

这个博客介绍了一种使用DirectX技术并引用quartz.dll来实现在C#.NET中播放视频的方法。代码包括了对不同播放状态的处理,如播放、暂停和停止,并且实现了状态栏的实时更新显示播放进度。
摘要由CSDN通过智能技术生成
使用DirectX技术实现播放,需要引用系统的 C:/WINNT/system32/quartz.dll 
是从CodeProject上看来的。前一阵看到有人需要这样的代码,所以贴出来共享一下。 

using  System;; 
using  System.Collections;; 
using  System.ComponentModel;; 
using  System.Drawing;; 
using  System.Data;; 
using  System.Windows.Forms;; 
using QuartzTypeLib;; 

namespace Greystar.FrameWork.ToolKits 

/// 〈summary〉 
/// FrmTV 的摘要说明。 
/// 〈/summary〉 
public class FrmTV :  System.Windows.Forms.UserControl 

private  System.Windows.Forms.ToolBar toolBar1;; 
private  System.Windows.Forms.ToolBarButton toolBarButton1;; 
private  System.Windows.Forms.ToolBarButton toolBarButton2;; 
private  System.Windows.Forms.ToolBarButton toolBarButton3;; 
private  System.Windows.Forms.Panel panel1;; 
private  System.Windows.Forms.ImageList imageList1;; 
private  System.Windows.Forms.Timer timer1;; 
private  System.Windows.Forms.ToolBarButton toolBarButton4;; 
private  System.ComponentModel.IContainer components;; 

private const int WM_APP = 0x8000;; 
private const int WM_GRAPHNOTIFY = WM_APP + 1;; 
private const int EC_COMPLETE = 0x01;; 
private const int WS_CHILD = 0x40000000;; 
private const int WS_CLIPCHILDREN = 0x2000000;; 

private FilgraphManager m_objFilterGraph = null;; 
private IBasicAudio m_objBasicAudio = null;; 
private IVideoWindow m_objVideoWindow = null;; 
private IMediaEvent m_objMediaEvent = null;; 
private IMediaEventEx m_objMediaEventEx = null;; 
private IMediaPosition m_objMediaPosition = null;; 
private IMediaControl m_objMediaControl = null;; 
private  System.Windows.Forms.StatusBar statusBar1;; 
private  System.Windows.Forms.StatusBarPanel statusBarPanel1;; 
private  System.Windows.Forms.StatusBarPanel statusBarPanel2;; 
private  System.Windows.Forms.StatusBarPanel statusBarPanel3;; 

enum MediaStatus { None, Stopped, Paused, Running };; 

private MediaStatus m_CurrentStatus = MediaStatus.None;; 

public FrmTV() 

// 该调用是 Windows.Forms 窗体设计器所必需的。 
InitializeComponent();; 

// TODO: 在 InitializeComponent 调用后添加任何初始化 


public FrmTV(EnvDTE._DTE dte,string workpath) 

InitializeComponent();; 
this.mDTE=dte;; 
this.mWorkPath=workpath;; 

private _DTE mDTE=null;; 
public _DTE DTE 

set 

mDTE=value;; 


get 

return mDTE;; 



//工作目录 
private string mWorkPath=null;; 
public string WorkPath 

set 

this.mWorkPath=value;; 


/// 〈summary〉 
/// 清
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值