MPV:
//from https://github.com/mpv-player/mpv/
//Downloads zip or git clone https://github.com/mpv-player/mpv.git
//解压之后进入
./bootstrap.py
./waf configure //不会编译出静态库和动态库
//or ./waf configure --enable-libmpv-shared 动态库
//or ./waf configure --enable-libmpv-static 静态库
./waf
./waf install
//if tips error, sudo ./waf install
-----FYSDM