Skip to content

Commit

Permalink
- Version 0.8.7.1
Browse files Browse the repository at this point in the history
- Fixing mpv playlist option (for mpv 0.32.0)
  • Loading branch information
s-n-g committed Jan 31, 2020
1 parent a9b808f commit b9c2af3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-01-31 s-n-g
* Version 0.8.7.1
* Fixing mpv playlist option (for mpv 0.32.0)

2019-12-23 s-n-g
* Version 0.8.7
* Fixing volume issue with mpv
Expand Down
2 changes: 1 addition & 1 deletion pyradio.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\" Copyright (C) 2011 Ben Dowling <http://www.coderholic.com/pyradio>
.\" This manual is freely distributable under the terms of the GPL.
.\"
.TH PYRADIO 1 "December 2019"
.TH PYRADIO 1 "January 2020"

.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" pyradio -- Console radio player. "

version_info = (0, 8, 7)
version_info = (0, 8, 7, 1)

__version__ = version = '.'.join(map(str, version_info))
__project__ = __name__
Expand Down
4 changes: 2 additions & 2 deletions pyradio/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,9 +650,9 @@ def _buildStartOpts(self, streamUrl, playList=False):
http_url = streamUrl.replace('https://', 'http://')
if playList:
if newerMpv:
opts = [self.PLAYER_CMD, "--quiet", "--playlist", http_url, "--input-ipc-server=" + self.mpvsocket]
opts = [self.PLAYER_CMD, "--quiet", "--playlist=" + http_url, "--input-ipc-server=" + self.mpvsocket]
else:
opts = [self.PLAYER_CMD, "--quiet", "--playlist", http_url, "--input-unix-socket=" + self.mpvsocket]
opts = [self.PLAYER_CMD, "--quiet", "--playlist=" + http_url, "--input-unix-socket=" + self.mpvsocket]
else:
if newerMpv:
opts = [self.PLAYER_CMD, "--quiet", http_url, "--input-ipc-server=" + self.mpvsocket]
Expand Down

0 comments on commit b9c2af3

Please sign in to comment.