aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/example.conf
Commit message (Collapse)AuthorAge
* player: redo how stream caching and pausing on low cache worksGravatar wm42014-08-27
| | | | | | | | | | | | | | | | | | | Add the --cache-secs option, which literally overrides the value of --demuxer-readahead-secs if the stream cache is active. The default value is very high (10 seconds), which means it can act as network cache. Remove the old behavior of trying to pause once the byte cache runs low. Instead, do something similar wit the demuxer cache. The nice thing is that we can guess how many seconds of video it has cached, and we can make better decisions. But for now, apply a relatively naive heuristic: if the cache is below 0.5 secs, pause, and wait until at least 2 secs are available. Note that due to timestamp reordering, the estimated cached duration of video might be inaccurate, depending on the file format. If the file format has DTS, it's easy, otherwise the duration will seemingly jump back and forth.
* example.conf: demuxer-thread is now enabled by defaultGravatar wm42014-08-19
| | | | Provide a more useful example instead.
* etc/example.conf: update cache optionsGravatar wm42014-08-09
| | | | | | | Some of them changed semantics or got renamed. Note that the replacements in the example.conf are not necessarily the equivalents of the replaced options.
* manpage: update config file locationsGravatar wm42014-06-28
| | | | Also add some explanations how the config paths are determined.
* etc/example.conf: add example options for multichannel audioGravatar wm42014-05-16
|
* etc/example.conf: minor adjustmentsGravatar wm42014-05-16
|
* etc/example.conf: remove spaces between key and valueGravatar wm42014-05-16
| | | | | Currently, they are allowed, but only because MPlayer happened to do that. This might or might not be changed in the future.
* options: rename subtitle-related optionsGravatar Martin Herkt2014-05-04
| | | | | | | | | --ass → --sub-ass --autosub → --sub-auto --autosub-match → --sub-auto-match --sub → --sub-file --subcp → --sub-codepage --subfps → --sub-fps
* example.conf: change subtitle codepage example to use UTF-8 fallbackGravatar wm42014-02-23
| | | | This should be pretty safe compared to forcing the codepage.
* example.conf: subtitle encodingGravatar Yaser Alraddadi2014-02-23
| | | | | | Signed-off-by: wm4 <wm4@nowhere> Closes #580.
* example.conf: add example for disabling the OSCGravatar wm42013-10-14
|
* example.conf: some modificationsGravatar wm42013-09-07
| | | | | | Remove options which are too obscure and most likely not very useful in general, or update them to something more modern. Add some comments about how configuration files work in general.
* video: redo hw decoding initialization, add --hwdec=autoGravatar wm42013-08-11
| | | | | | | | | | | | | | | | Change how the HW decoding stuff is organized, the way it's initialized in particular. Instead of duplicating the list of supported codecs for hwaccel decoders, add a probe function which allows each decoder to report whether it supports a given codec. Add an "auto" choice to the --hwdec option, which automatically enables hardware decoding if libavcodec and/or the VO supports it. What mpv prints on the terminal changes a bit. Now it will just print a single line whether hw decoding is used or not (and nothing at all if no hw decoding at all was requested). The pretty violent fallback from hw decoding to software decoding is still quite verbose and evil-looking though.
* video: add --autofit and --autofit-larger optionsGravatar wm42013-01-23
| | | | | | | | | --autofit=WxH sets the window size to a maximum width and/or height, without changing the window's aspect ratio. --autofit-larger=WxH does the same, but only if the video size is actually larger than the window size that would result when using the --autofit=WxH option with the same arguments.
* video: different way to enable hardware decoding, add software fallbackGravatar wm42013-01-13
| | | | | | | | | | | | | | Deprecate the hardware specific video codec entries (like ffh264vdpau). Replace them with the --hwdec switch, which requests that a specific hardware decoding API should be used. The codecs.conf entries will be removed at a later time, but for now they are useful for testing and compatibility. Instead of --vc=ffh264vdpau, --hwdec=vdpau should be used. Add a fallback if hardware decoding fails. Most hardware decoders (including vdpau) support only a subset of h264, and having such a fallback is supposed to enable a better user experience.
* example.conf: all options should be commentedGravatar wm42012-11-14
| | | | | The file is written with the assumption that it doesn't change any settings by default. Add a forgotten comment to fix this.
* example.conf: remove some useless options, add some useful onesGravatar wm42012-11-11
|
* Rename to "mpv"Gravatar wm42012-10-12
| | | | | | | | | | | | | | | | | | This changes the name of this project to mpv. Most user-visible mentions of "MPlayer" and "mplayer" are changed to "mpv". The binary name and the default config file location are changed as well. The new default config file location is: ~/.mpv/ Remove etc/mplayer.desktop. Apparently this was for the MPlayer GUI, which has been removed from mplayer2 ages ago. We don't have a logo, and the MS Windows resource files sort-of require one, so leave etc/mplayer.ico/.xpm as-is. Remove the debian and rpm packaging scripts. These contained outdated dependencies and likely were more harmful than useful. (Patches which add working and well-tested packaging are welcome.)
* Remove VESA/FBDEV remains, clean up example.confGravatar wm42012-09-18
| | | | | | Remove VESA and FBDEV specific code that was forgotten when the respective VOs were removed. Remove references to old or broken stuff from example.conf.
* example.conf: add bandwidth exampleGravatar mplayer-svn2012-08-03
| | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34782 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: compn
* example.conf: Disambiguate remarks about profilesGravatar diego2011-01-31
| | | | | | | Also move the profiles to the bottom of the example configuration file as the original remarks in the file suggested. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32754 b3059339-0415-0410-9bf9-f77b7e298cf2
* example.conf: add some profile information and user-agent examplesGravatar compn2010-12-16
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32709 b3059339-0415-0410-9bf9-f77b7e298cf2 add realplayer user-agent git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32712 b3059339-0415-0410-9bf9-f77b7e298cf2 add winamp useragent example git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32713 b3059339-0415-0410-9bf9-f77b7e298cf2
* add spdif example from beandogGravatar compn2009-12-15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30041 b3059339-0415-0410-9bf9-f77b7e298cf2
* vdpau codecs config entry by beandogGravatar compn2009-12-09
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29987 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix apple.com trailer example, via carlGravatar compn2009-12-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29975 b3059339-0415-0410-9bf9-f77b7e298cf2
* add user-agent example to fix apple.com/trailersGravatar compn2009-11-26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29967 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a profile example and (commented-out) useful defaults for dvdnavGravatar reimar2009-11-05
| | | | | | | to example.conf git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29825 b3059339-0415-0410-9bf9-f77b7e298cf2
* example for setting WMP user-agent string, helps when playlistsGravatar reimar2008-02-08
| | | | | | | | and media (streamed via mms) use the same URL (what an ugly case of user-agent misuse!) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25961 b3059339-0415-0410-9bf9-f77b7e298cf2
* set -vc=ffmpeg12 as dvdnav prefered decoderGravatar ben2008-01-25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25851 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rename the default GUI skins directory from 'Skin' to 'skins', keepingGravatar diego2006-03-27
| | | | | | | backwards compatibility. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17975 b3059339-0415-0410-9bf9-f77b7e298cf2
* Put settings into a more meaningful order, some cosmetics.Gravatar diego2006-01-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17417 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve option descriptions.Gravatar diego2006-01-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17416 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove multi-language setting specification, it has little use.Gravatar diego2006-01-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17415 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve option descriptions.Gravatar diego2006-01-17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17414 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic whitespace / layout changesGravatar diego2006-01-16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17413 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment out default settings. MPlayer should behave the same w/ or w/oGravatar diego2006-01-16
| | | | | | | the default configuration file. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17411 b3059339-0415-0410-9bf9-f77b7e298cf2
* Smarter defaults, removing obsolete options.Gravatar diego2005-11-29
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17061 b3059339-0415-0410-9bf9-f77b7e298cf2
* -aop is long obsolete.Gravatar diego2005-11-28
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17060 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1. -cache-prefil has not been renamed, it's been removed (-cache-seek-minGravatar rathann2005-08-23
| | | | | | | | | | is a new option) 2. the default value is 50 not 5 noticed by iive git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16297 b3059339-0415-0410-9bf9-f77b7e298cf2
* cache-prefill has been renamed to cache-seek-min, example config shouldGravatar rathann2005-08-20
| | | | | | | reflect this git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16279 b3059339-0415-0410-9bf9-f77b7e298cf2
* options in config file have been using '-' instead of '_' for agesGravatar rathann2005-03-03
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14894 b3059339-0415-0410-9bf9-f77b7e298cf2
* reorganized, reformatted, explanation improved, typos, wordingGravatar diego2004-07-20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12876 b3059339-0415-0410-9bf9-f77b7e298cf2
* cache min fill adjustment, based on patch by Jeremy HuddlestonGravatar iive2004-07-16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12836 b3059339-0415-0410-9bf9-f77b7e298cf2
* swedish yes/no options supportGravatar wight2004-01-13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11786 b3059339-0415-0410-9bf9-f77b7e298cf2
* polish yes/no options supportGravatar wight2004-01-12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11782 b3059339-0415-0410-9bf9-f77b7e298cf2
* runtime 'stay-on-top' functionalityGravatar joey2003-11-30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11543 b3059339-0415-0410-9bf9-f77b7e298cf2
* _ ---> - in -monitor* optionsGravatar diego2003-10-27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11292 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, this is very badGravatar rfelker2003-05-14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10105 b3059339-0415-0410-9bf9-f77b7e298cf2
* path fixGravatar gabucino2002-12-07
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8399 b3059339-0415-0410-9bf9-f77b7e298cf2
* documenting vesa 3 / GTF configGravatar arpi2002-10-07
| | | | | | | patch by Rudolf Marek <MAREKR2@cs.felk.cvut.cz> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7652 b3059339-0415-0410-9bf9-f77b7e298cf2