VLC开发所需dll,版本 1.1.11 最新的 2.0.8在进行ActiveX控件开发时,会有一些问题,v1.1.11 比较稳定
2023-05-17 23:11:51 21.51MB VLC开发 libvlc.dll libvlccore
1
demo中使用了libvlc.dll和vlcdotnet两种方式对rtsp视频流进行播放,实现了对鼠标事件响应的思路,运行时请将vlc软件的plugins文件夹拷贝到debug目录下,很简单的demo
2023-03-15 09:47:26 1.11MB vlc libvlc.dll c# rtsp
1
VLC3.0.6已编译(64位),修改了libvlc_set_user_agent的源码,可设置浏览器的user-agent
2022-08-04 21:24:26 66.83MB 源码软件
1
VLC-Qt库 VLC-Qt是用于连接和库的免费库。 它包含用于主要媒体播放的核心类,以及一些用于加快媒体播放器开发的GUI类。 VLC-Qt在Linux,macOS和Windows的受支持版本上运行。 它是跨平台开发的,因此可以在其他系统上运行,但不受支持。 VLC-Qt 1.1 Qt / VLC版本弃用警告 从1.1版本开始,将删除或弃用对某些较旧的Qt和VLC版本的支持: Qt 4支持将在2.0中被弃用并删除 低于5.5的Qt 5将被弃用并在2.0中删除 需要libVLC 2.1 二进制和源代码 您可以从或下载VLC-Qt二进制文件和源代码。 也可以通过Git获得最新资源: git clone git://github.com/vlc-qt/vlc-qt.git git submodule init git submodule update Master分支被认
2022-06-30 16:01:20 2.04MB C++
1
libvlc-all-3.5.0-eap8.aar,VLC 流媒体播放
2022-05-24 19:07:34 76.83MB vlc 流媒体
1
这个是Android直接导入的vlc aar,可以截图,录制
2022-05-16 16:24:08 72.95MB vlc Android
1
//创建初始化播放器资源 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] extern public static IntPtr libvlc_new(int argc, IntPtr argv); //创建播放器实例 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_player_new(IntPtr libvlc_instance); // 释放libvlc实例 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_release(IntPtr libvlc_instance); //获取库版本信息 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern String libvlc_get_version(); // 从视频来源(例如Url)构建一个libvlc_meida RTSP [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_new_location(IntPtr libvlc_instance, IntPtr path); // 从本地文件路径构建一个libvlc_media rtsp串流不适合调用此接口 // [MarshalAs(UnmanagedType.LPStr)] string path [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_new_path(IntPtr libvlc_instance, IntPtr path); /// /// 影片长度 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr libvlc_media_player_get_length(IntPtr libvlc_media_player); //释放对象 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_release(IntPtr libvlc_media_inst); // 将视频(libvlc_media)绑定到播放器上 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_media(IntPtr libvlc_media_player, IntPtr libvlc_media); //创建(libvlc_media)播放窗口 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_new_from_media(IntPtr libvlc_media_player); // 设置图像输出的窗口 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_hwnd(IntPtr libvlc_mediaplayer, Int32 drawable); //播放 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_play(IntPtr libvlc_mediaplayer); //暂停 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_pause(IntPtr libvlc_mediaplayer); //停止 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_stop(IntPtr libvlc_mediaplayer); // 解析视频资源的媒体信息(如时长等) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_parse(IntPtr libvlc_media); // 返回视频的时长(必须先调用libvlc_media_parse之后,该函数才会生效) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern Int64 libvlc_media_get_duration(IntPtr libvlc_media); // 当前播放的时间 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern Int64 libvlc_media_player_get_time(IntPtr libvlc_mediaplayer); // 设置播放位置(拖动) [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_set_time(IntPtr libvlc_mediaplayer, Int64 time); /// /// 抓图 /// /// /// 经典0 /// 完整路径,文件名英文或下划线开头 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_video_take_snapshot(IntPtr libvlc_mediaplayer, uint num, IntPtr filePath, uint i_width, uint i_height); //media player release [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_media_player_release(IntPtr libvlc_mediaplayer); // 获取音量 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_audio_get_volume(IntPtr libvlc_media_player); //设置音量 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_audio_set_volume(IntPtr libvlc_media_player, int volume); // 设置全屏 [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern void libvlc_set_fullscreen(IntPtr libvlc_media_player, int isFullScreen); /// ///判断是否可以录像 /// /// /// //Can the media player record the current media? [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern bool libvlc_media_player_is_recordable(IntPtr libvlc_media_player); /// ///判断是否在录像 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern bool libvlc_media_player_is_recording(IntPtr libvlc_media_player); /// /// 录像开始 /// /// /// 保存路径+文件名(d:\\record (将在D盘根目录保存为record.mp4)) /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_media_player_record_start(IntPtr libvlc_media_player, IntPtr psz_PathFilename); /// /// 录像停止 /// /// /// [DllImport("libvlc", CallingConvention = CallingConvention.Cdecl)] public static extern int libvlc_media_player_record_stop(IntPtr libvlc_media_player);
2022-05-09 10:46:12 36.14MB libvlc dll 录像 onvif
1
基于libVLC的ActiveX RTSP实时流媒体播放器源码 支持录像 完整播放器源码。网页实时视频播放器源码(VS2005工程),支持rtsp,http,等多种流媒体协议,支持录像,截图,暂停
2022-05-08 16:03:52 12.62MB VLC 流媒体播放器
1
本课程将用C++ Qt libvlc ffmpeg开发一个视频播放剪辑软件,具有视频播放,拖动视频位置进行剪辑的功能,界面用Qt编写,开发语言C++,开发环境VS2017, Qt5.12.8, QtCreator。将会从零开始介绍VS项目开发环境的搭建,SDK dll配置,调试与bug解封分析方法,适合有一定C++ Qt编程基础,想进一步提高编程技术的程序员或学生学习。提供全部源码,及时答疑。
2022-04-30 12:57:57 130.01MB C/C++ C++ Qt 编程语言 视频剪辑 ffmpeg
1
这是基于libvlc设计视频播放器,这是可执行文件,不是源码。可以体验视频的CPU和GPU占用率情况。 支持3种解码渲染方式: 1. GPU硬件解码硬件渲染; 2. GPU解码,CPU渲染; 3. CPU解码,CPU渲染。
2022-01-14 12:01:00 68.02MB libvlc 视频播放器
1