Package:Mpv

From Funtoo
Revision as of 02:42, November 7, 2014 by Mf2 (talk | contribs)
Jump to navigation Jump to search

Mpv

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

mpv is a fork of mplayer2, to learn more about the differences take a look at their docs. Currently there is only mpv version 0.6.1 availabe in Funtoo

   Note

Read the mpv wiki to understand ffmpeg vs libav especially in regard to mpv. If you are interested you might even read the article The FFmpeg/Libav situation

Installation

root #  emerge media-video/mpv

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:

   ~/.mpv/config
# 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:

root #  man mpv

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:

   ~/.mpv/input.conf
n playlist_next
p playlist_prev

The man page provides information about all possible bindings.