您的位置 首页 > 数码极客

如何打开vlc视频采集功能

回顾

继上一篇如何在Ubuntu中编译VLC-Android开源项目, 已经成功的编译了vlc-android,并且也编译出了对应版本的libvlc-xx.aar

所需环境

项目使用的rtsp视频流,采用的是海康的摄像头

android studio最新版本

java jdk 1.8

其他…

搭建工程

首先打开android studio,新建一个项目,输入项目的名称和包名,就ok了。

然后复制编译好的libvlc-xx.aar到libs目录下

我的工程目录结构如下

目录结构

还需要在build.gradle文件做修改,如下

apply plugin: 'com.android.application' android { compileSdkVersion 27 buildToolsVersion '27.0.3' defaultConfig { applicationId "com.cayden.face" minSdkVersion 19 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.; } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile(';), '; } } } android { compileOptions { sourceCompatibility JavaVer targetCompatibility JavaVer } } repositories { flatDir { dirs 'libs' } maven { url "; } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.; testImplementation 'junit:juni; androidTestImplementation 'com.android.; androidTestImplementation 'com.android.; compile(name: 'libvlc-3.0.0', ext: 'aar') implementation files('lib;) }

最后运行如图所示

运行效果

项目源码

本项目主要基于vlc来播放流媒体视频

主要包含以下内容

1、使用已经编译的libvlc来播放流媒体视频

2、使用MTCNN进行人脸识别并标记人脸

3、保存标记的人脸图片

4、使用FACENET进行人脸比对

未完待续…

v1.0.0

1, added libvlc

2, support for playing rtsp video stream

感谢大家的阅读,也希望能转发并关注我的公众号

责任编辑: 鲁达

1.内容基于多重复合算法人工智能语言模型创作,旨在以深度学习研究为目的传播信息知识,内容观点与本网站无关,反馈举报请
2.仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证;
3.本站属于非营利性站点无毒无广告,请读者放心使用!

“如何打开vlc视频采集功能”边界阅读