Skip to content

Commit b9c2af3

Browse files
committed
- Version 0.8.7.1
- Fixing mpv playlist option (for mpv 0.32.0)
1 parent a9b808f commit b9c2af3

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-01-31 s-n-g
2+
* Version 0.8.7.1
3+
* Fixing mpv playlist option (for mpv 0.32.0)
4+
15
2019-12-23 s-n-g
26
* Version 0.8.7
37
* Fixing volume issue with mpv

pyradio.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" Copyright (C) 2011 Ben Dowling <http://www.coderholic.com/pyradio>
22
.\" This manual is freely distributable under the terms of the GPL.
33
.\"
4-
.TH PYRADIO 1 "December 2019"
4+
.TH PYRADIO 1 "January 2020"
55

66
.SH NAME
77
.PP

pyradio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" pyradio -- Console radio player. "
22

3-
version_info = (0, 8, 7)
3+
version_info = (0, 8, 7, 1)
44

55
__version__ = version = '.'.join(map(str, version_info))
66
__project__ = __name__

pyradio/player.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,9 +650,9 @@ def _buildStartOpts(self, streamUrl, playList=False):
650650
http_url = streamUrl.replace('https://', 'http://')
651651
if playList:
652652
if newerMpv:
653-
opts = [self.PLAYER_CMD, "--quiet", "--playlist", http_url, "--input-ipc-server=" + self.mpvsocket]
653+
opts = [self.PLAYER_CMD, "--quiet", "--playlist=" + http_url, "--input-ipc-server=" + self.mpvsocket]
654654
else:
655-
opts = [self.PLAYER_CMD, "--quiet", "--playlist", http_url, "--input-unix-socket=" + self.mpvsocket]
655+
opts = [self.PLAYER_CMD, "--quiet", "--playlist=" + http_url, "--input-unix-socket=" + self.mpvsocket]
656656
else:
657657
if newerMpv:
658658
opts = [self.PLAYER_CMD, "--quiet", http_url, "--input-ipc-server=" + self.mpvsocket]

0 commit comments

Comments
 (0)