下载源码
vs新建工程
根据自己的情况调整,我是debug的x64。
对着项目右键属性
找到c/c++下的附加包含目录
找到链接器下的附加库目录
拷贝
最后,将vlc文件目录下的plugins文件夹以及libvlc.dll和libvlccore.dll这两个文件复制到你项目工程的/x64/debug目录下。如果没有这个目录,就先运行一次空程序,目录下就会有了。
准备工作完成
测试
#include "vlc/vlc.h"
#pragma comment(lib,"libvlc.lib")
#pragma comment(lib,"libvlccore.lib")
int main(int argc, char* argv[])
{
libvlc_instance_t * inst;
libvlc_media_player_t *mp;
libvlc_media_t *m;
libvlc_time_t length;
int width;
int height;
int wait_time = 5000;
//libvlc_time_t length;
/* Load the VLC engine */
inst = libvlc_new(0, NULL);
//Create a new item
//Method 1:
m = libvlc_media_new_location (inst, "rtsp://XXXXX你的RTSP流XXXXX");
//Screen Capture
//m = libvlc_media_new_location (inst, "screen://");
//Method 2:
//m = libvlc_media_new_path(inst, "cuc_ieschool.flv");
/* Create a media player playing environement */
mp = libvlc_media_player_new_from_media(m);
/* No need to keep the media now */
libvlc_media_release(m);
// play the media_player
libvlc_media_player_play(mp);
//wait until the tracks are created
_sleep(wait_time);
length = libvlc_media_player_get_length(mp);
width = libvlc_video_get_width(mp);
height = libvlc_video_get_height(mp);
printf("Stream Duration: %ds\n", length / 1000);
printf("Resolution: %d x %d\n", width, height);
//Let it play
_sleep(length - wait_time);
// Stop playing
libvlc_media_player_stop(mp);
// Free the media_player
libvlc_media_player_release(mp);
libvlc_release(inst);
return 0;
}
可以播放视频就是成功了~