C# Windows form application 播放小视频
点击打开链接
2. DxPlay.cs (能够在下载的样例中找到):
public class DxPlay : IDisposable
{
enum GraphState
{
Stopped,
Paused,
Running,
Exiting
} #region Member variables // File name we are playing
private string m_sFileName; // graph builder interfaces
private IFilterGraph2 m_FilterGraph;
private IMediaControl m_mediaCtrl;
private IMediaEvent m_mediaEvent; // Used to grab current snapshots
ISampleGrabber m_sampGrabber = null; // Grab once. Used to create bitmap
private int m_videoWidth;
private int m_videoHeight;
private int m_stride;
private int m_ImageSize; // In bytes // Event used by Media Event thread
private ManualResetEvent m_mre; // Current state of the graph (can change async)
volatile private GraphState m_State = GraphState.Stopped; #if DEBUG
// Allow you to "Connect to remote graph" from GraphEdit
DsROTEntry m_DsRot;
#endif #endregion // Release everything.
public void Dispose()
{
CloseInterfaces();
}
~DxPlay()
{
CloseInterfaces();
} // Event that is called when a clip finishs playing
public event DxPlayEvent StopPlay;
public delegate void DxPlayEvent(Object sender); // Play an avi file into a window. Allow for snapshots.
// (Control to show video in, Avi file to play
public DxPlay(Control hWin, string FileName)
{
try
{
int hr;
IntPtr hEvent; // Save off the file name
m_sFileName = FileName; // Set up the graph
SetupGraph(hWin, FileName); // Get the event handle the graph will use to signal
// when events occur
hr = m_mediaEvent.GetEventHandle(out hEvent);
DsError.ThrowExceptionForHR(hr); // Wrap the graph event with a ManualResetEvent
m_mre = new ManualResetEvent(false);
#if USING_NET11
m_mre.Handle = hEvent;
#else
m_mre.SafeWaitHandle = new Microsoft.Win32.SafeHandles.SafeWaitHandle(hEvent, true);
#endif // Create a new thread to wait for events
Thread t = new Thread(new ThreadStart(this.EventWait));
t.Name = "Media Event Thread";
t.Start();
}
catch
{
Dispose();
throw;
}
} // Wait for events to happen. This approach uses waiting on an event handle.
// The nice thing about doing it this way is that you aren't in the windows message
// loop, and don't have to worry about re-entrency or taking too long. Plus, being
// in a class as we are, we don't have access to the message loop.
// Alternately, you can receive your events as windows messages. See
// IMediaEventEx.SetNotifyWindow.
private void EventWait()
{
// Returned when GetEvent is called but there are no events
const int E_ABORT = unchecked((int)0x80004004); int hr;
IntPtr p1, p2;
EventCode ec; do
{
// Wait for an event
m_mre.WaitOne(-1, true); // Avoid contention for m_State
lock (this)
{
// If we are not shutting down
if (m_State != GraphState.Exiting)
{
// Read the event
for (
hr = m_mediaEvent.GetEvent(out ec, out p1, out p2, 0);
hr >= 0;
hr = m_mediaEvent.GetEvent(out ec, out p1, out p2, 0)
)
{
// Write the event name to the debug window
Debug.WriteLine(ec.ToString()); // If the clip is finished playing
if (ec == EventCode.Complete)
{
// Call Stop() to set state
Stop(); // Throw event
if (StopPlay != null)
{
StopPlay(this);
}
} // Release any resources the message allocated
hr = m_mediaEvent.FreeEventParams(ec, p1, p2);
DsError.ThrowExceptionForHR(hr);
} // If the error that exited the loop wasn't due to running out of events
if (hr != E_ABORT)
{
DsError.ThrowExceptionForHR(hr);
}
}
else
{
// We are shutting down
break;
}
}
} while (true);
} // Return the currently playing file name
public string FileName
{
get
{
return m_sFileName;
}
} // start playing
public void Start()
{
// If we aren't already playing (or shutting down)
if (m_State == GraphState.Stopped || m_State == GraphState.Paused)
{
int hr = m_mediaCtrl.Run();
DsError.ThrowExceptionForHR(hr); m_State = GraphState.Running;
}
} // Pause the capture graph.
public void Pause()
{
// If we are playing
if (m_State == GraphState.Running)
{
int hr = m_mediaCtrl.Pause();
DsError.ThrowExceptionForHR(hr); m_State = GraphState.Paused;
}
}
// Pause the capture graph.
public void Stop()
{
// Can only Stop when playing or paused
if (m_State == GraphState.Running || m_State == GraphState.Paused)
{
int hr = m_mediaCtrl.Stop();
DsError.ThrowExceptionForHR(hr); m_State = GraphState.Stopped;
}
} // Reset the clip back to the beginning
public void Rewind()
{
int hr; IMediaPosition imp = m_FilterGraph as IMediaPosition;
hr = imp.put_CurrentPosition(0);
} // Grab a snapshot of the most recent image played.
// Returns A pointer to the raw pixel data. Caller must release this memory with
// Marshal.FreeCoTaskMem when it is no longer needed.
public IntPtr SnapShot()
{
int hr;
IntPtr ip = IntPtr.Zero;
int iBuffSize = 0; // Read the buffer size
hr = m_sampGrabber.GetCurrentBuffer(ref iBuffSize, ip);
DsError.ThrowExceptionForHR(hr); Debug.Assert(iBuffSize == m_ImageSize, "Unexpected buffer size"); // Allocate the buffer and read it
ip = Marshal.AllocCoTaskMem(iBuffSize); hr = m_sampGrabber.GetCurrentBuffer(ref iBuffSize, ip);
DsError.ThrowExceptionForHR(hr); return ip;
} // Convert a point to the raw pixel data to a .NET bitmap
public Bitmap IPToBmp(IntPtr ip)
{
// We know the Bits Per Pixel is 24 (3 bytes) because we forced it
// to be with sampGrabber.SetMediaType()
int iBufSize = m_videoWidth * m_videoHeight * 3; return new Bitmap(
m_videoWidth,
m_videoHeight,
-m_stride,
PixelFormat.Format24bppRgb,
(IntPtr)(ip.ToInt32() + iBufSize - m_stride)
);
} // Build the capture graph for grabber and renderer.</summary>
// (Control to show video in, Filename to play)
private void SetupGraph(Control hWin, string FileName)
{
int hr; // Get the graphbuilder object
m_FilterGraph = new FilterGraph() as IFilterGraph2; // Get a ICaptureGraphBuilder2 to help build the graph
ICaptureGraphBuilder2 icgb2 = new CaptureGraphBuilder2() as ICaptureGraphBuilder2; try
{
// Link the ICaptureGraphBuilder2 to the IFilterGraph2
hr = icgb2.SetFiltergraph(m_FilterGraph);
DsError.ThrowExceptionForHR(hr); #if DEBUG
// Allows you to view the graph with GraphEdit File/Connect
m_DsRot = new DsROTEntry(m_FilterGraph);
#endif
// Add the filters necessary to render the file. This function will
// work with a number of different file types.
IBaseFilter sourceFilter = null;
hr = m_FilterGraph.AddSourceFilter(FileName, FileName, out sourceFilter);
DsError.ThrowExceptionForHR(hr); // Get the SampleGrabber interface
m_sampGrabber = (ISampleGrabber)new SampleGrabber();
IBaseFilter baseGrabFlt = (IBaseFilter)m_sampGrabber; // Configure the Sample Grabber
ConfigureSampleGrabber(m_sampGrabber); // Add it to the filter
hr = m_FilterGraph.AddFilter(baseGrabFlt, "Ds.NET Grabber");
DsError.ThrowExceptionForHR(hr); // Connect the pieces together, use the default renderer
hr = icgb2.RenderStream(null, null, sourceFilter, baseGrabFlt, null);
DsError.ThrowExceptionForHR(hr); // Now that the graph is built, read the dimensions of the bitmaps we'll be getting
SaveSizeInfo(m_sampGrabber); // Configure the Video Window
IVideoWindow videoWindow = m_FilterGraph as IVideoWindow;
ConfigureVideoWindow(videoWindow, hWin); // Grab some other interfaces
m_mediaEvent = m_FilterGraph as IMediaEvent;
m_mediaCtrl = m_FilterGraph as IMediaControl;
}
finally
{
if (icgb2 != null)
{
Marshal.ReleaseComObject(icgb2);
icgb2 = null;
}
}
#if DEBUG
// Double check to make sure we aren't releasing something
// important.
GC.Collect();
GC.WaitForPendingFinalizers();
#endif
} // Configure the video window
private void ConfigureVideoWindow(IVideoWindow videoWindow, Control hWin)
{
int hr; // Set the output window
hr = videoWindow.put_Owner(hWin.Handle);
DsError.ThrowExceptionForHR(hr); // Set the window style
hr = videoWindow.put_WindowStyle((WindowStyle.Child | WindowStyle.ClipChildren | WindowStyle.ClipSiblings));
DsError.ThrowExceptionForHR(hr); // Make the window visible
hr = videoWindow.put_Visible(OABool.True);
DsError.ThrowExceptionForHR(hr); // Position the playing location
Rectangle rc = hWin.ClientRectangle;
hr = videoWindow.SetWindowPosition(0, 0, rc.Right, rc.Bottom);
DsError.ThrowExceptionForHR(hr);
} // Set the options on the sample grabber
private void ConfigureSampleGrabber(ISampleGrabber sampGrabber)
{
AMMediaType media;
int hr; // Set the media type to Video/RBG24
media = new AMMediaType();
media.majorType = MediaType.Video;
media.subType = MediaSubType.RGB24;
media.formatType = FormatType.VideoInfo;
hr = sampGrabber.SetMediaType(media);
DsError.ThrowExceptionForHR(hr); DsUtils.FreeAMMediaType(media);
media = null; // Configure the samplegrabber
hr = sampGrabber.SetBufferSamples(true);
DsError.ThrowExceptionForHR(hr);
} // Save the size parameters for use in SnapShot
private void SaveSizeInfo(ISampleGrabber sampGrabber)
{
int hr; // Get the media type from the SampleGrabber
AMMediaType media = new AMMediaType(); hr = sampGrabber.GetConnectedMediaType(media);
DsError.ThrowExceptionForHR(hr); try
{ if ((media.formatType != FormatType.VideoInfo) || (media.formatPtr == IntPtr.Zero))
{
throw new NotSupportedException("Unknown Grabber Media Format");
} // Get the struct
VideoInfoHeader videoInfoHeader = new VideoInfoHeader();
Marshal.PtrToStructure(media.formatPtr, videoInfoHeader); // Grab the size info
m_videoWidth = videoInfoHeader.BmiHeader.Width;
m_videoHeight = videoInfoHeader.BmiHeader.Height;
m_stride = videoInfoHeader.BmiHeader.ImageSize / m_videoHeight;
m_ImageSize = videoInfoHeader.BmiHeader.ImageSize;
}
finally
{
DsUtils.FreeAMMediaType(media);
media = null;
}
} // Shut down capture
private void CloseInterfaces()
{
int hr; lock (this)
{
if (m_State != GraphState.Exiting)
{
m_State = GraphState.Exiting; // Release the thread (if the thread was started)
if (m_mre != null)
{
m_mre.Set();
}
} if (m_mediaCtrl != null)
{
// Stop the graph
hr = m_mediaCtrl.Stop();
m_mediaCtrl = null;
} if (m_sampGrabber != null)
{
Marshal.ReleaseComObject(m_sampGrabber);
m_sampGrabber = null;
} #if DEBUG
if (m_DsRot != null)
{
m_DsRot.Dispose();
}
#endif if (m_FilterGraph != null)
{
Marshal.ReleaseComObject(m_FilterGraph);
m_FilterGraph = null;
}
}
GC.Collect();
}
}
3. 将Player载入到指定的panel中,本例须要循环播放。因此在stopplay中自己主动start()
private DxPlay m_play;
private void LoadVideoIntoPanel()
{
try
{
var pathBase = Path.GetDirectoryName(Application.ExecutablePath);
var path = Path.Combine(pathBase, bgVideo);
// Open the file, provide a handle to play it in
m_play = new DxPlay(_videoBackground, path);
m_play.Start(); // Let us know when the file is finished playing
m_play.StopPlay += sender =>
{
// Rewind clip to beginning to allow DxPlay.Start to work again.
m_play.Rewind();
m_play.Start();
}; }
catch (Exception ex)
{
_log.Error("Video Playing Error ==> " + ex.Message + "\r\n" + ex.StackTrace);
}
}
C# Windows form application 播放小视频的更多相关文章
- 微信电脑版微信1.1 for Windows更新 可@人/转发撤回消息/可播小视频
微信电脑版微信1.1 for Windows发布更新了,版本号为1.1.0.18,群聊可@人/可转发撤回消息/可播小视频,功能越来越接近微信手机版了. 本次更新的一些新特点: 群聊中可以@人. 消息可 ...
- 与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成
原文:与众不同 windows phone (14) - Media(媒体)之音频播放器, 视频播放器, 与 Windows Phone 的音乐和视频中心集成 [索引页][源码下载] 与众不同 win ...
- Windows Phone 7 播放视频
在Windows Phone 7中播放视频有两种方式,一种是使用MediaElement 控件来播放,一种是使用启动器MediaPlayerLanucher来实现视频的播放.用MediaElement ...
- Windows Phone 之播放视频
在Windows Phone 7中播放视频有两种方式, (1)使用MediaElement 控件来播放:用MediaElement 控件来播放视频比较灵活,你需要自己去实现播放暂停进度条等等的功能,播 ...
- Python爬取抖音高颜值小视频
前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者: 有趣的python PS:如有需要Python学习资料的小伙伴可以加 ...
- IIS中asp网站播放flv视频技术
播放flv视频文件需要使用flvplayer.swf程序(32K). HTML嵌入代码: <div id="FlashFile"> <object type=&q ...
- VLC播放RTSP视频延迟问题 (转)
原帖地址:http://blog.chinaunix.net/uid-26611383-id-3755283.html ======================================== ...
- 前端Web浏览器基于Flash如何实时播放监控视频画面(前言)之流程介绍
[关键字:前端浏览器如何播放RTSP流画面.前端浏览器如何播放RTMP流画面] 本片文章只是起到抛砖引玉的作用,能从头到尾走通就行,并不做深入研究.为了让文章通俗易懂,尽量使用白话描述. 考虑到视频延 ...
- Vue3.0短视频+直播|vue3+vite2+vant3仿抖音界面|vue3.x小视频实例
基于vue3.0构建移动端仿抖音/快手短视频+直播实战项目Vue3-DouYin. 5G时代已来,短视频也越来越成为新一代年轻人的娱乐方式,在这个特殊之年,又将再一次成为新年俗! 基于vue3.x+v ...
随机推荐
- Selenium2+python自动化59-数据驱动(ddt)【转载】
前言 在设计用例的时候,有些用例只是参数数据的输入不一样,比如登录这个功能,操作过程但是一样的.如果用例重复去写操作过程会增加代码量,对应这种多组数据的测试用例,可以用数据驱动设计模式,一组数据对应一 ...
- poj 2007(凸包)
Scrambled Polygon Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 8005 Accepted: 3798 ...
- 学习OpenResty编程
1.Windows版本的下载位置 https://github.com/LomoX-Offical/nginx-openresty-windows Linux下OpenResty的下载和安装 http ...
- IIS7.0添加IP地址和域名限制
IIS7.0默认安装是没有“IP地址和域名限制”功能的,需要我们自己选择安装 1.windows系统的添加方式 控制面板--程序与功能--启用或关闭windows功能--internat inform ...
- AC日记——[Noi2011]阿狸的打字机 bzoj 2434
2434 思路: 构建ac自动机: 抽离fail树: 根据字符串建立主席树: 在线处理询问: 询问x在y中出现多少次,等同于y有多少字母的fail能走到x: 1a,hahahahah: 代码: #in ...
- Codeforces 538 A. Cutting Banner-substr()函数字符串拼接
A. Cutting Banner time limit per test 2 seconds memory limit per test 256 megabytes input standa ...
- HDU 2549 壮志难酬(字符串,处理小数点)
/* 给你一个小数x,让你算出小数点后第n位是什么,(1 <= n <= 6) Input 首先输入一个t,表示有t组数据,跟着t行: 每行输入一个小数(输入数据保证一定是a.b的形式,为 ...
- 服务认证暴力破解工具Crowbar
服务认证暴力破解工具Crowbar Crowbar是Kali Linux新增的一款服务认证暴力破解工具.该工具支持OpenVPN.RDP.SSH和VNC服务.该工具具备常见的暴力破解功能,如主机字 ...
- [BZOJ 1789] Necklace
Link: BZOJ 1789 传送门 Solution: 感觉$n\le 50$可以随便乱搞啊…… 这里我是先找到3条链的失配位置,再找到这之后其中2条链最远的失配位置,统计即可 Code: #in ...
- 5.3类集(java学习笔记)集合的输出
一.集合的输出 迭代输出:Iteratror接口 在输出集合时,最标准的方法是使用迭代器迭代输出. 1,List中的迭代器. Iterator中包含三个方法: hasNex()t判断集合内是否有元素存 ...