vlc 编译

一、有用的网址:

 https://forum.videolan.org/search.php

二、只编译Java apk部分:

source env.sh
make distclean
make -e

编译全部:

sh compile.sh

见https://forum.videolan.org/viewtopic.php?f=35&t=108965&p=369068&hilit=compile+java#p369068

三、启动vlc:

Intent in = new Intent(Intent.ACTION_VIEW, Uri.parse("udp://@10.11.11.11:1111"));
startActivity(in);

见https://forum.videolan.org/viewtopic.php?f=35&t=103071

原文地址:https://www.cnblogs.com/meizixiong/p/3275832.html