

Please help improve this section by adding citations to reliable sources.

This feature serves as a direct replacement for the MEncoder component of MPlayer, which was a separate program rather than being built into the player. This allows mpv to work as a transcoder, supporting many video formats.
MPV MEDIA PLAYER MODIFIED CODE
This required making all mpv code thread safe.

MPV MEDIA PLAYER MODIFIED DRIVER
MPV MEDIA PLAYER MODIFIED LICENSE
Since June 2015, the project's source code is in the process of being relicensed from GNU General Public License version 2 (GPLv2) or later to GNU Lesser General Public License version 2.1 (LGPLv2.1) or later to allow using mpv as a library in more applications. As a result, the project had a large influx of contributions. The motive for the fork was to encourage developer activity by removing unmaintainable code and dropping support for very old systems. There were problems with opening multiple files/directories so, I have modified the script as: on run do shell script 'open -n /Applications/mpv.app' tell application 'mpv' to activate end run on open theFiles set files to ' repeat with theFile in theFiles set files to files & ' ' & quote & (POSIX path of theFile) & quote end repeat do shell script 'open -na /Applications/mpv.app ' & files tell application 'mpv' to activate end open I have also removed subtitle file associations from both this app and mpv.app (from ist files) and application icon also works now.Mpv was forked by Vincent Lang, also known as wm4, in 2012 from mplayer2, which was forked in 2010 from MPlayer. As expected, the file(s) open after a little bit of delay (time to load & run the script). I then copied the.icns files from mpv.app into it, changed the ist to include CFBundleDocumentTypes for extensions (brings up the new app in open-with menu) and changed the CFBundleTypeIconFile to document.icns. Would that actually be a problem in practice? EDIT: Additionally, how intrusive would it be in the meantime to add 's hack to the bundle? To allow making a playlist when multiple files/folders are selected, instead of spawning an application for each selected file, I have modified as: on run do shell script 'open -n /Applications/mpv.app' tell application 'mpv' to activate end run on open theFiles do shell script 'open -na /Applications/mpv.app ' & quote & (POSIX path of theFiles) & quote tell application 'mpv' to activate end open and saved it as an application in /Applications/.
