资源简介
github上面下载不易,挂在这里,供大家参阅,这是雷神的原创。
代码片段和文件信息
/**
* 最简单的基于libVLC的播放器-图形界面版
* Simplest libVLC Player GUI
*
* 雷霄骅 Lei Xiaohua
* leixiaohua1020@126.com
* 中国传媒大学/数字电视技术
* Communication University of China / Digital TV Technology
* http://blog.csdn.net/leixiaohua1020
*
* 本程序是一个最简单的基于libVLC的图形界面播放器。
* 适合初学者学习libVLC。
*
* This example is the simplest Player based on libVLC.
* Suitable for the beginner of libVLC.
*/
#include “stdafx.h“
#include “playerGUI.h“
#include “playerGUIDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CplayerGUIApp
BEGIN_MESSAGE_MAP(CplayerGUIApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CplayerGUIApp 构造
CplayerGUIApp::CplayerGUIApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CplayerGUIApp 对象
CplayerGUIApp theApp;
// CplayerGUIApp 初始化
BOOL CplayerGUIApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
CplayerGUIDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
// 删除上面创建的 shell 管理器。
if (pShellManager != NULL)
{
delete pShellManager;
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-01-09 11:54 simplest_libvlc_example-master\
文件 40 2015-01-09 11:54 simplest_libvlc_example-master\.gitignore
文件 670 2015-01-09 11:54 simplest_libvlc_example-master\Readme.txt
目录 0 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\
文件 1358127 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\cuc_ieschool.flv
文件 113171 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\libvlc.dll
文件 2396179 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\libvlccore.dll
目录 0 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\
目录 0 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\
文件 13843 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_attachment_plugin.dll
文件 100371 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_bd_plugin.dll
文件 74259 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_ftp_plugin.dll
文件 116755 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_http_plugin.dll
文件 46611 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_imem_plugin.dll
文件 72211 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_mms_plugin.dll
文件 40979 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_rar_plugin.dll
文件 94739 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_realrtsp_plugin.dll
文件 39955 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_smb_plugin.dll
文件 14355 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_tcp_plugin.dll
文件 14355 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_udp_plugin.dll
文件 76307 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libaccess_vdr_plugin.dll
文件 159763 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libcdda_plugin.dll
文件 268307 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libdshow_plugin.dll
文件 246803 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libdtv_plugin.dll
文件 240659 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libdvdnav_plugin.dll
文件 164883 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libdvdread_plugin.dll
文件 45587 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libfilesystem_plugin.dll
文件 14355 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\libidummy_plugin.dll
文件 2021395 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\liblibbluray_plugin.dll
文件 675347 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\liblive555_plugin.dll
文件 477203 2015-01-09 11:54 simplest_libvlc_example-master\libvlc_bin\plugins\access\librtp_plugin.dll
............此处省略450个文件信息
评论
共有 条评论