资源简介
C#使用DriectX实现媒体播放并实现对视频的截图和显示保存。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.DirectX.AudioVideoPlayback ;
namespace 使用DriectX实现媒体播放
{
public partial class Form1 : Form
{
private Video MyVideo = null;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
openFileDialog1.InitialDirectory = Application.StartupPath;
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
// 记录panel组件的大小
int height = pictureBox1.Height;
int width = pictureBox1.Width;
// 如果存在打开的Video文件,释放它
if (MyVideo != null)
{
MyVideo.Dispose();
}
// 打开一个新的Video文件
MyVideo = new Video(openFileDialog1.FileName);
// 把Video文件分配给创建的Panel组件
MyVideo.Owner = pictureBox1;
// 以记录的panel组件的大小来重新定义
pictureBox1.Width = width;
pictureBox1.Height = height;
// 播放AVI文件的第一帧,主要是为了在panel中显示
MyVideo.Play();
MyVideo.Pause();
}
//确定窗体中的各按钮状态
if (MyVideo == null)
{
button2.Enabled = false;
button3.Enabled = false;
button4.Enabled = false;
}
else
{
button2.Enabled = true;
button3.Enabled = true;
button4.Enabled = true;
}
}
private void button2_Click(object sender EventArgs e)
{
if (MyVideo != null)
{
MyVideo.Play();
}
}
private void button3_Click(object sender EventArgs e)
{
if (MyVideo != null)
{
MyVideo.Pause();
}
}
private void button4_Click(object sender EventArgs e)
{
if (MyVideo != null)
{
MyVideo.Stop();
}
}
private void Form1_Load(object sender EventArgs e)
{
if (MyVideo == null)
{
button2.Enabled = false;
button3.Enabled = false;
button4.Enabled = false;
}
else
{
button2.Enabled = true;
button3.Enabled = true;
button4.Enabled = true;
}
}
private void button5_Click(object sender EventArgs e)
{
Bitmap bit = new Bitmap(pictureBox1.Width pictureBox1.Height);
Graphics g = Graphics.FromImage
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 165 2014-04-01 17:57 使用DriectX实现媒体播放\使用DriectX实现媒体播放\app.config
文件 11264 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.exe
文件 165 2014-04-01 17:57 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.exe.config
文件 28160 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.pdb
文件 11600 2014-04-02 15:27 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.vshost.exe
文件 165 2014-04-01 17:57 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.vshost.exe.config
文件 490 2010-03-17 22:39 使用DriectX实现媒体播放\使用DriectX实现媒体播放\bin\Debug\使用DriectX实现媒体播放.vshost.exe.manifest
文件 3704 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Form1.cs
文件 6579 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Form1.Designer.cs
文件 6020 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Form1.resx
文件 5420 2014-04-01 11:16 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6540 2014-04-02 15:27 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 4608 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 2034 2014-04-02 15:27 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.csproj.FileListAbsolute.txt
文件 975 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.csproj.GenerateResource.Cache
文件 39163 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.csprojResolveAssemblyReference.cache
文件 11264 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.exe
文件 180 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.Form1.resources
文件 28160 2014-04-02 15:24 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.pdb
文件 180 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\使用DriectX实现媒体播放.Properties.Resources.resources
文件 512 2014-04-01 09:44 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Program.cs
文件 1412 2014-04-01 09:44 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Properties\AssemblyInfo.cs
文件 2902 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Properties\Resources.Designer.cs
文件 5612 2014-04-01 09:44 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Properties\Resources.resx
文件 1131 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Properties\Settings.Designer.cs
文件 249 2014-04-01 09:44 使用DriectX实现媒体播放\使用DriectX实现媒体播放\Properties\Settings.settings
文件 4130 2014-04-01 17:53 使用DriectX实现媒体播放\使用DriectX实现媒体播放\使用DriectX实现媒体播放.csproj
文件 935 2014-04-01 09:44 使用DriectX实现媒体播放\使用DriectX实现媒体播放.sln
..A..H. 37888 2014-04-02 15:27 使用DriectX实现媒体播放\使用DriectX实现媒体播放.suo
目录 0 2014-04-02 15:27 使用DriectX实现媒体播放\使用DriectX实现媒体播放\obj\x86\Debug\TempPE
............此处省略11个文件信息
- 上一篇:C#+ENVI/IDL开发
- 下一篇:C# 保存和读取xm
l配置文件
相关资源
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
评论
共有 条评论