Skip to content

Commit

Permalink
Set mpv external as the default player backend for OSX. (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
iwalton3 committed Feb 17, 2020
1 parent 942887f commit a9f6979
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion jellyfin_mpv_shim/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import socket
import json
import os.path
import sys

log = logging.getLogger('conf')

Expand Down Expand Up @@ -35,7 +36,7 @@ class Settings(object):
"fullscreen": True,
"enable_gui": True,
"media_key_seek": False,
"mpv_ext": False,
"mpv_ext": sys.platform.startswith("darwin"),
"mpv_ext_path": None,
"mpv_ext_ipc": None,
"mpv_ext_start": True,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='jellyfin-mpv-shim',
version='1.3.7',
version='1.3.8',
author="Ian Walton",
author_email="[email protected]",
description="Cast media from Jellyfin Mobile and Web apps to MPV. (Unofficial)",
Expand Down

0 comments on commit a9f6979

Please sign in to comment.