
24,242
Downloads
4,182
Downloads of v 2018.10.02
10/3/2018
Last update
mpv is a fork of mplayer2 and MPlayer. It shares some features with the former projects while introducing many more.
Streamlined CLI options
MPlayer's options parser was improved to behave more like other CLI programs, and many option names and semantics were reworked to make them more intuitive and memorable.
On Screen Controller
While mpv has no official GUI, it has a small controller that is triggered by mouse movement.
High quality video output
mpv has a OpenGL based video output that is capable of many features loved by videophiles, such as video scaling with popular high quality algorithms, color management, frame timing, interpolation, and more.
GPU video decoding
mpv leverages the FFmpeg hwaccel APIs to support VDPAU, VAAPI, DXVA2, VDA and VideoToolbox video decode acceleration.
Embeddable
A straightforward C API was designed from the ground up to make mpv usable as a library and facilitate easy integration into other applications.
Active development
mpv is under active development, focusing on code refactoring and cleanups as well as adding features. Want a feature? Post a patch or request it!
To install mpv (Install), run the following command from the command line or from PowerShell:
C:\> choco install mpv.install
To upgrade mpv (Install), run the following command from the command line or from PowerShell:
C:\> choco upgrade mpv.install
Files
Hide- legal\VERIFICATION.txt
Show
VERIFICATION Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy. The embedded software have been downloaded from the listed download location on <https://mpv.srsfckn.biz/> and <https://github.com/rossy/mpv-install> and can be verified by doing the following: 1. Go to x32: https://mpv.srsfckn.biz/mpv-i686-20181002.7z x64: https://mpv.srsfckn.biz/mpv-x86_64-20181002.7z zip: https://github.com/rossy/mpv-install/archive/master.zip to download the installer. 2. Get the checksum using one of the following methods: - Using powershell function 'Get-FileHash' - Use chocolatey utility 'checksum.exe' 3. The checksums should match the following: checksumType: SHA256 checksum32: 5262144B0A619FC0A55033BDEA016431B619F9902912A509890ABFE8F3164EBA checksum64: 48EDD28162495224B9ED80986EBA1EA92E2E23DE695F119AFE369A4CE51B73C9 checksumzp: 105A2E84C1FD4527D201C60F881A37852BBBEE42C73398F92CA929BD089BF05B The files 'LICENSE.mpv-install.txt' 'LICENSE.txt' have been obtained from <https://raw.githubusercontent.com/rossy/mpv-install/master/COPYING> <https://raw.githubusercontent.com/mpv-player/mpv/master/Copyright>
- tools\chocolateyinstall.ps1
Show
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $packageArgs = @{ packageName = 'mpv.install' file = gi $toolsDir\*_x32.7z file64 = gi $toolsDir\*_x64.7z destination = "$toolsDir" } Get-ChocolateyUnzip @packageArgs Get-ChocolateyUnzip -file "$toolsDir\rossy.zip" -destination $toolsDir Move-Item "$toolsDir\mpv-install-master\*" $toolsDir -Force Remove-Item "$toolsDir\mpv-install-master" Start-ChocolateyProcessAsAdmin -Statements "/K $toolsDir\mpv-install.bat /u" -ExeToRun 'cmd.exe' -Elevated -validExitCodes '0' Remove-Item -force "$toolsDir\*.zip","$toolsDir\*.7z" -ea 0 # mpv can't be shimmed, the shim doesn't work with mpv.com # as of 2016.01.18, there is a dll dependency, so mpv can't be hardlinked to chocolatey\bin # adding to PATH until chocolatey implements a /usr/lib equivalent $pathType = 'User' If ( Test-ProcessAdminRights ) { $pathType = 'Machine' } Install-ChocolateyPath $toolsDir $pathType
- tools\chocolateyuninstall.ps1
Show
$packageName = 'mpv.install' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" # Remove from Machine PATH $machinePath = Get-EnvironmentVariable -Name 'PATH' -Scope Machine if ( $machinePath.Contains($toolsDir) ) { $cleanMachinePath = $([Environment]::GetEnvironmentVariable("PATH",[EnvironmentVariableTarget]::Machine)).Replace("$toolsDir;",'') [Environment]::SetEnvironmentVariable("PATH", "$cleanMachinePath", [EnvironmentVariableTarget]::Machine) } # Remove from User PATH $userPath = Get-EnvironmentVariable -Name 'PATH' -Scope User if ( $userPath.Contains($toolsDir) ) { $cleanUserPath = $([Environment]::GetEnvironmentVariable("PATH", [EnvironmentVariableTarget]::User)).Replace("$toolsDir;",'') [Environment]::SetEnvironmentVariable("PATH", "$cleanUserPath", [EnvironmentVariableTarget]::User) } Start-ChocolateyProcessAsAdmin "/K $toolsDir\mpv-uninstall.bat /u" 'cmd.exe' -validExitCodes '0'
- tools\mpv.exe.ignore
- tools\mpv_x32.7z
Show
md5: 08643798911706C4110557A572BB256C | sha1: 8559E425218535D005FD52CDB2F4E0512C589F54 | sha256: 5262144B0A619FC0A55033BDEA016431B619F9902912A509890ABFE8F3164EBA | sha512: E996EDA97D2F8472C998D424362A76FB130EBAF98EA7A371B7CE166C390E4A29F122750B29B1CD3D361D84581E2CFA3D722B81939B47D86AD82AB10D43D0709B
- tools\mpv_x64.7z
Show
md5: 6A266621C298650146921F288F96036A | sha1: 3AC76700B2935A81E546B0F8D1FBF471DDEAD23E | sha256: 48EDD28162495224B9ED80986EBA1EA92E2E23DE695F119AFE369A4CE51B73C9 | sha512: 05AF003178875E149682C6AFEB3863DA7C9451D82254A0F4BCAF949D54939BDF62DA1EC930DAC27AF8E953E00B46CE611BE4C50A0FE7A1A5D0A55BD283253456
- tools\rossy.zip
Show
md5: 9F25067777B98FB63364498A727380A3 | sha1: 85EE75EB621839D25FF84472DEE147AF762A379D | sha256: 105A2E84C1FD4527D201C60F881A37852BBBEE42C73398F92CA929BD089BF05B | sha512: 18B793E11683AB9BB3B6C2274606F583DB3730431F537330F2E0403AC5D980C57E102C2BE924493008E5249F1F803EFDE5D5FFF49329BF1F467D37B68C040824
- legal\LICENSE.txt
Show
mpv is a fork of mplayer2, which is a fork of MPlayer. mpv as a whole is licensed under the GNU General Public License GPL version 2 or later (called GPLv2+ in this document, see LICENSE.GPL for full license text) by default, or the GNU Lesser General Public License LGPL version 2 or later (LGPLv2.1+ in this document, see LICENSE.LGPL for full license text) if built with the --enable-lgpl configure switch. Most source files are LGPLv2.1+ or GPLv2+, but some files are available under more liberal licenses, such as BSD, MIT, ISC, and possibly others. Look at the copyright header of each source file, and grep the sources for "Copyright" if you need to know details. C source files without Copyright notice are usually licensed as LGPLv2.1+. Also see the list of files with specific licenses below (not all files can have a standard license header). All new contributions must be LGPLv2.1+ licensed. Using a more liberal license compatible to LGPLv2.1+ is also ok. Changes done to GPL code must come with the implicit/explicit agreement that the project can relicense the changes to LGPLv2.1+ at a later point without asking the contributor. This is a safeguard for making potential relicensing of remaining GPL code to LGPLv2.1+ easier. For information about authors and contributors, consult the git log, which contains the complete SVN and CVS history as well. "v2.1+" in this context means "version 2.1 or later". Some libraries are GPLv2+ or GPLv3+ only. Building mpv with Samba support makes it GPLv3+. mpv can be built as LGPLv2.1+ with the --enable-lgpl configure option. To add a LGPL mode to mpv, MPlayer code had to be relicensed from GPLv2+ to LGPLv2.1+ by asking the MPlayer authors for permission. Since permission could not be obtained from everyone, LGPL mode disables the following features, some of them quite central: - Linux X11 video output - BSD audio output via OSS - NVIDIA/Linux hardware decoding (vdpau, although nvdec usually works) - Linux TV input - minor features: jack, DVD, CDDA, SMB, CACA, legacy direct3d VO Some of these will be fixed in the future. The intended use for LGPL mode is with libmpv, and currently it's not recommended to build mpv CLI in LGPL mode at all. The following files are still GPL only (--enable-lgpl disables them): audio/out/ao_jack.c will stay GPL audio/out/ao_oss.c will stay GPL demux/demux_tv.c will stay GPL stream/ai_* will stay GPL (TV code) stream/audio_in.* will stay GPL (TV code) stream/dvb* must stay GPL stream/frequencies.* must stay GPL stream/stream_cdda.c unknown stream/stream_dvb.* must stay GPL stream/stream_dvd.c unknown stream/stream_dvd_common.* unknown stream/stream_dvdnav.c unknown stream/stream_smb.c will stay GPLv3 stream/stream_tv.c will stay GPL stream/tv* will stay GPL video/out/vo_caca.c unknown video/out/vo_direct3d.c unknown video/out/vo_vaapi.c probably impossible (some company's code) video/out/vo_vdpau.c probably impossible (nVidia's code) video/out/vo_x11.c probably impossible video/out/vo_xv.c probably impossible video/out/x11_common.* probably impossible video/vdpau.c hard (GPL-only parts must be ifdefed) video/vdpau.h unknown video/vdpau_mixer.* actual code must be rewritten DOCS/man/ GPLv2+ bootstrap.py unknown license, probably GPLv2+ or LGPLv2+ etc/mplayer-input.conf unknown license, probably GPLv2+ mpv.desktop unknown license, probably GPLv2+ etc/restore-old-bindings.conf unknown license, probably GPLv2+ The following files contain some optional GPL code (--enable-lgpl disables it): options/parse_commandline.c dvd:// expansion None of the exceptions listed above affect the final binary if it's built as LGPL. Linked libraries still can affect the final license (for example if FFmpeg was built as GPL).
- legal\LICENSE.mpv-install.txt
Show
Copyright © 2015, James Ross-Gowan <[email protected]> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Virus Scan Results
- rossy.zip (105a2e84c1fd) - ## / 58 - Log in or click on link to see number of positives
- mpv.install.2018.10.02.nupkg (0a20294d38a6) - ## / 61 - Log in or click on link to see number of positives
- mpv_x32.7z (5262144b0a61) - ## / 57 - Log in or click on link to see number of positives
- mpv_x64.7z (48edd2816249) - ## / 58 - Log in or click on link to see number of positives
- libaacs.dll (846f576958a5) - ## / 68 - Log in or click on link to see number of positives
- libbdplus.dll (97f6e4ade129) - ## / 68 - Log in or click on link to see number of positives
- mpv.exe (0a506e1d32ef) - ## / 68 - Log in or click on link to see number of positives
- libaacs.dll (cca7de51ba30) - ## / 68 - Log in or click on link to see number of positives
- libbdplus.dll (5cca386ce0f0) - ## / 68 - Log in or click on link to see number of positives
- mpv.exe (e867aeff1f34) - ## / 69 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Copyright
2012-2018 mpv.io
Tags
Release Notes
https://mpv.srsfckn.biz/changes/2017-12-25/
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
mpv (Install) 2018.10.02 | 4182 | Wednesday, October 3, 2018 | approved |
mpv (Install) 2018.07.31 | 2358 | Wednesday, August 1, 2018 | approved |
mpv (Install) 2018.07.22 | 1634 | Tuesday, July 24, 2018 | approved |
mpv (Install) 2017.12.25 | 4555 | Saturday, December 30, 2017 | approved |
mpv (Install) 2017.09.13 | 2829 | Wednesday, September 13, 2017 | approved |
mpv (Install) 2017.07.18 | 1752 | Thursday, July 20, 2017 | approved |
mpv (Install) 2017.04.23 | 1749 | Wednesday, April 26, 2017 | approved |
mpv (Install) 2017.02.12 | 1482 | Tuesday, February 14, 2017 | approved |
mpv (Install) 2016.12.25 | 401 | Monday, December 26, 2016 | approved |
mpv (Install) 2016.11.20 | 366 | Wednesday, November 23, 2016 | approved |
Discussion for the mpv (Install) Package
Ground rules:
- This discussion is only about mpv (Install) and the mpv (Install) package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or mpv (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.