Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

210,917

Downloads of v 2018.07.31:

2,592

Last Update:

01 Aug 2018

Package Maintainer(s):

Software Author(s):

  • mpv team

Tags:

mpv video media player multimedia admin

mpv (Install)

This is not the latest version of mpv (Install) available.

  • 1
  • 2
  • 3

2018.07.31 | Updated: 01 Aug 2018

Downloads:

210,917

Downloads of v 2018.07.31:

2,592

Maintainer(s):

Software Author(s):

  • mpv team

mpv (Install) 2018.07.31

This is not the latest version of mpv (Install) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install mpv (Install), run the following command from the command line or from PowerShell:

>

To upgrade mpv (Install), run the following command from the command line or from PowerShell:

>

To uninstall mpv (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade mpv.install -y --source="'INTERNAL REPO URL'" --version="'2018.07.31'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade mpv.install -y --source="'INTERNAL REPO URL'" --version="'2018.07.31'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install mpv.install
  win_chocolatey:
    name: mpv.install
    version: '2018.07.31'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'mpv.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2018.07.31'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller mpv.install
{
    Name     = "mpv.install"
    Version  = "2018.07.31"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'mpv.install':
  ensure   => '2018.07.31',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 01 Aug 2018.

Description

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!


legal\LICENSE.mpv-install.txt
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.
legal\LICENSE.txt
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\VERIFICATION.txt
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-20180731.7z
	x64: https://mpv.srsfckn.biz/mpv-x86_64-20180731.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: 780745F16FDF957DCF28FFE0AECF6F09FDB2CCC6D5C4BACAE5EF08537A97927A
  checksum64: 2928B4142AC1B38E0E8E190102305CC97FA4FB5A5AA194058F6D0A864C5373FA
  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
$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
$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
md5: 47322ADAC5F9C4821CF8B2C22C7654B3 | sha1: 5846A5D8C259C0A6BC25AA51401D19FCFF469F14 | sha256: 780745F16FDF957DCF28FFE0AECF6F09FDB2CCC6D5C4BACAE5EF08537A97927A | sha512: 4B41A09C633C2F6E3B2CA1E52C335862F1BFCDE224D4DC4C9E1AA8C3D8415A359E7C5838810B90E04F0D6C5C0AB003537CE65540FDADECE9048C8412F5CD3648
tools\mpv_x64.7z
md5: BA823484FA0CF0C5E11FF45A7711D6E7 | sha1: 6DBD6EA532FE7A452CD8C545B57674EF9341F0A1 | sha256: 2928B4142AC1B38E0E8E190102305CC97FA4FB5A5AA194058F6D0A864C5373FA | sha512: 8BD5B5D94D3E29F2E5F24C848096EFEFA7BEAB0BF8633ECE70EA4B975C66BC49652E04BE7D7FA319BF5B7ADF17E02FEF5E87E636D61C4942A37C04003A125BF3
tools\rossy.zip
md5: 9F25067777B98FB63364498A727380A3 | sha1: 85EE75EB621839D25FF84472DEE147AF762A379D | sha256: 105A2E84C1FD4527D201C60F881A37852BBBEE42C73398F92CA929BD089BF05B | sha512: 18B793E11683AB9BB3B6C2274606F583DB3730431F537330F2E0403AC5D980C57E102C2BE924493008E5249F1F803EFDE5D5FFF49329BF1F467D37B68C040824

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
mpv (Install) 2023.01.28 35818 Monday, March 27, 2023 Approved
mpv (Install) 2022.11.14 17521 Friday, November 18, 2022 Approved
mpv (Install) 2021.11.01 37611 Sunday, November 7, 2021 Approved
mpv (Install) 2020.12.06 32615 Friday, January 8, 2021 Approved
mpv (Install) 2020.1.27 22757 Tuesday, March 17, 2020 Approved
mpv (Install) 2019.12.29 5820 Thursday, January 23, 2020 Approved
mpv (Install) 2019.11.02 7732 Monday, November 11, 2019 Approved
mpv (Install) 2018.10.02 10733 Wednesday, October 3, 2018 Approved
mpv (Install) 2018.07.31 2592 Wednesday, August 1, 2018 Approved
mpv (Install) 2018.07.22 1862 Tuesday, July 24, 2018 Approved
mpv (Install) 2017.12.25 4749 Saturday, December 30, 2017 Approved
mpv (Install) 2017.09.13 3050 Wednesday, September 13, 2017 Approved
mpv (Install) 2017.07.18 1974 Thursday, July 20, 2017 Approved
mpv (Install) 2017.04.23 1946 Wednesday, April 26, 2017 Approved
mpv (Install) 2017.02.12 1661 Tuesday, February 14, 2017 Approved
mpv (Install) 2016.12.25 595 Monday, December 26, 2016 Approved
mpv (Install) 2016.11.20 565 Wednesday, November 23, 2016 Approved
mpv (Install) 2016.10.20 577 Friday, October 21, 2016 Approved
mpv (Install) 2016.08.26 545 Wednesday, September 7, 2016 Approved
mpv (Install) 2016.08.16 558 Thursday, August 18, 2016 Approved
mpv (Install) 2016.07.10 529 Monday, July 11, 2016 Approved
mpv (Install) 2016.06.25 437 Saturday, June 25, 2016 Approved
mpv (Install) 2016.04.11.1 353 Monday, May 9, 2016 Approved
mpv (Install) 2016.04.11 482 Friday, April 15, 2016 Approved
mpv (Install) 2016.02.29 518 Monday, February 29, 2016 Approved
mpv (Install) 2016.01.18 496 Wednesday, January 20, 2016 Approved
mpv (Install) 2015.12.11 478 Saturday, December 26, 2015 Approved

This package has no dependencies.

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.
comments powered by Disqus