Difference between pages "Package:Mpv" and "User talk:Anak1n"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
(Created page with "great write up of ghost! ~~~~")
 
Line 1: Line 1:
{{Ebuild
great write up of ghost!  [[User:Threesixes|Threesixes]] ([[User talk:Threesixes|talk]]) 22:41, January 21, 2015 (UTC)
|Summary=Video player based on MPlayer/mplayer2.
|CatPkg=media-video/mpv
|Maintainer=Oleg
|Homepage=http://mpv.io/
}}
mpv is a fork of mplayer2, to learn more about the differences take a look at their [https://github.com/mpv-player/mpv/blob/master/DOCS/man/changes.rst docs].
Currently there is only mpv version 0.6.1 availabe in Funtoo
{{fancynote|Read the [https://github.com/mpv-player/mpv/wiki/FFmpeg-versus-Libav mpv wiki] to understand ffmpeg vs libav especially in regard to mpv.
If you are interested you  might even read the article [http://blog.pkh.me/p/13-the-ffmpeg-libav-situation.html The FFmpeg/Libav situation] }}
==Installation==
<console>
###i##  emerge media-video/mpv
</console>
==General configuration==
mpv does not come with a graphical user interface (beside the video display). All settings are placed in a config file, a short example is provided below:
{{File|name=~/.mpv/config|body=
# Save the video position on quit
save-position-on-quit
 
# Use the vdpau driver for hardware decoding (for nvidia cards)
hwdec=vdpau
 
# Video output driver. A list can be displayed via: mpv -vo=help
vo=opengl
}}
The config file is completely optional, but mpv is highly customizable. It is suggested that you  take a look at the man page:
<console>
###i##  man mpv
</console>
==Input configuration==
You may create a separate file called ''input.conf'' for customizing the shortcuts for mpv. The example below binds the key "n" to skip to the next video in the current playlist and the key "p" to skip to the previous video:
{{File|name=~/.mpv/input.conf|body=
n playlist_next
p playlist_prev
}}
The man page provides information about all possible bindings.
{{EbuildFooter}}

Latest revision as of 22:41, January 21, 2015

great write up of ghost! Threesixes (talk) 22:41, January 21, 2015 (UTC)