前言:
- 为什么在mac os下安装的MPV 我就不解释了[自己看看(http://www.zhihu.com/question/19552878)。
- mac系统下,常用的播放器有哪些?如果你看过这篇测评,就知道了mac 下有什么好用的视屏播放器了。[mac常用视屏播放器测评地址](http://www.ifanr.com/app/680902)
- 官网地址:[权威地址](http://www.mpv.io)
安装系统:macOS Sierra
安装方式:使用命令行(Terminal)
安装前提:
- 已经安装HomeBrew
- 如果已安装Xcode 版本需要8.0及以上
安装步骤及指令:
- 第一步 打开命令窗口 输入
brew tap mpv-player/mpv
2.第二步 输入安装mpv命令 除此安装这个比较慢
brew install --HEAD --with-bluray-support --with-libdvdread --with-little-cms2 --with-lua --with-bundle mpv
如果出现Error: You must `brew link yasm` before mpv can be installed
在命令行输入
brew link yasm
然后重新输入安装MPV命令
3.第三步 将编译好的.app文件链接到你的默认应用程序文件夹中
brew linkapps mpv
OK 你可试一试了 体验一下 自己的成就
配置文件:( 自己使用的配置~/.config/mpv/mpv.conf 其中涉及到硬解码,字幕选择,字幕转码等设置项,依赖enca,需要homebrew安装enca)
#for intel HD4000 above(硬解码)
vo=opengl-hq:icc-profile-auto
#osd message, you can press o to display the osd message
osd-status-msg="${time-pos/full} / ${length/full} (${percent-pos}%)"
#makes the player window stay on top of other windows
ontop=yes
#always save the current playback position on quit
save-position-on-quit=yes
#adjust the initial window size to 50%
geometry=50%
#for network play
cache=8192
#choose the default subtitle to chinese(选择默认显示的字幕为中文)
slang=zh,chi
#for GB2312 GBK BIG5 charset, use enca convert them to utf8(将非utf8编码的字幕转换成utf8,一招解决所有乱码问题,依赖enca)
sub-codepage=enca:zh:utf8
常用快捷键:
- up 快进60s
- down 后退60s
- right 快进10s
- left 后退10s
- space 暂停
最后说明:
1.整个安装的过程我一直是在翻墙的状态下(习惯一直开着vpn)
2.如果出现
Error: No such keg: /usr/local/Cellar/mpv
那你就可以是否安装好Brew 在命令行输入brew 查看,如果名没有安装参考http://www.brew.sh/
3.我在安装homebrew时,一直提示升级xcode最低8.0版本或是删除xcode,我的做法升级xcode,然后安装成功了
4.安装homebrew时要注意,一定要看提示哦