• 大小: 76.53MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-18
  • 语言: 其他
  • 标签: libVLC  关键帧  

资源简介

基于libVLC的图形界面版视频播放器 (设置相应的可选参数版本) 设置相应的参数可以根据需要播放相应的视频文件,根据需求设置I ,B,P帧的取舍需求

资源截图

代码片段和文件信息

/**
 * 最简单的基于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  2018-04-07 23:44  libvlc_bin\
     文件     1358127  2014-06-25 23:55  libvlc_bin\cuc_ieschool.flv
     文件      113171  2014-02-05 09:31  libvlc_bin\libvlc.dll
     文件     2396179  2014-02-05 09:32  libvlc_bin\libvlccore.dll
     目录           0  2018-04-07 22:15  libvlc_bin\plugins\
     目录           0  2018-03-25 20:58  libvlc_bin\plugins\access\
     文件       13843  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_attachment_plugin.dll
     文件      100371  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_bd_plugin.dll
     文件       74259  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_ftp_plugin.dll
     文件      116755  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_http_plugin.dll
     文件       46611  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_imem_plugin.dll
     文件       72211  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_mms_plugin.dll
     文件       40979  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_rar_plugin.dll
     文件       94739  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_realrtsp_plugin.dll
     文件       39955  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_smb_plugin.dll
     文件       14355  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_tcp_plugin.dll
     文件       14355  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_udp_plugin.dll
     文件       76307  2014-02-05 09:31  libvlc_bin\plugins\access\libaccess_vdr_plugin.dll
     文件      159763  2014-02-05 09:31  libvlc_bin\plugins\access\libcdda_plugin.dll
     文件      268307  2014-02-05 09:31  libvlc_bin\plugins\access\libdshow_plugin.dll
     文件      246803  2014-02-05 09:31  libvlc_bin\plugins\access\libdtv_plugin.dll
     文件      240659  2014-02-05 09:31  libvlc_bin\plugins\access\libdvdnav_plugin.dll
     文件      164883  2014-02-05 09:31  libvlc_bin\plugins\access\libdvdread_plugin.dll
     文件       45587  2014-02-05 09:31  libvlc_bin\plugins\access\libfilesystem_plugin.dll
     文件       14355  2014-02-05 09:31  libvlc_bin\plugins\access\libidummy_plugin.dll
     文件     2021395  2014-02-05 09:31  libvlc_bin\plugins\access\liblibbluray_plugin.dll
     文件      675347  2014-02-05 09:31  libvlc_bin\plugins\access\liblive555_plugin.dll
     文件      477203  2014-02-05 09:31  libvlc_bin\plugins\access\librtp_plugin.dll
     文件       21011  2014-02-05 09:31  libvlc_bin\plugins\access\libscreen_plugin.dll
     文件       13843  2014-02-05 09:31  libvlc_bin\plugins\access\libsdp_plugin.dll
     文件       16915  2014-02-05 09:31  libvlc_bin\plugins\access\libshm_plugin.dll
............此处省略467个文件信息

评论

共有 条评论