Package Details: pyradio-git 0.9.3.1-1

Git Clone URL: https://aur.archlinux.org/pyradio-git.git (read-only, click to copy)
Package Base: pyradio-git
Description: Internet radio player for the command line
Upstream URL: http://www.coderholic.com/pyradio/
Licenses: MIT
Conflicts: pyradio
Provides: pyradio
Submitter: aksr
Maintainer: willemw (sng)
Last Packager: sng
Votes: 28
Popularity: 0.000062
First Submitted: 2012-08-23 11:53 (UTC)
Last Updated: 2024-04-18 16:44 (UTC)

Dependencies (16)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

willemw commented on 2018-05-29 16:18 (UTC)

@sng: Thanks. Optdepends has been updated.

sng commented on 2018-05-29 15:54 (UTC)

Hi again willemw I have taken some time with this and contributed a couple of features

BTW, I believe you should change the optional packages from

optdepends=('mplayer: as backend' 'vlc: as backend')

to something like

optdepends=('mplayer: as backend' 'vlc: as backend' 'mpv: as backend' 'socat: if mpv is used')

Regards, Spiros

willemw commented on 2018-05-16 05:58 (UTC)

@sng: Also make sure to update pyradio-git to the latest commit by reinstalling it.

sng commented on 2018-05-15 14:05 (UTC) (edited on 2018-05-15 14:41 (UTC) by sng)

Hi willemw, thanks for the answer

Well, there seems to be something strange going on...

I got the program installed using "sudo pip install pyradio" and i noticed that the station list is different than the one i get when installing through "yaort pyradio-git". Strange?

Also i noticed that using the "pip version" i don't get the error i mentioned in my previous message. Playback starts ok, no sound though - but that's another issue i'm looking into in git issues

Can you have a look?

EDIT:

Ok, it seems two different urls...

aur: https://github.com/coderholic/pyradio

pip: https://pypi.org/simple/pyradio/ [pyradio-0.5.2.tar.gz]

I think it's the same version, but clearly it's a different package...

EDIT2:

Filed an issue: https://github.com/coderholic/pyradio/issues/51

willemw commented on 2018-05-15 06:07 (UTC)

@sng:

Seems like an upstream issue. You may want to check the upstream issues and maybe report your issue there.

Issue https://github.com/coderholic/pyradio/issues/48 is MPV related and was recently closed. If you reinstall pyradio-git, you could check if your issue has already been fixed.

sng commented on 2018-05-14 22:24 (UTC) (edited on 2018-05-14 22:29 (UTC) by sng)

Hi all, i get an error when i play a station:

pyradio --play

rm: cannot remove '/tmp/mpvsocket': No such file or dorectory Traceback (most recent call last):

...

...

File "/usr/lib/python3.6/site-packages/pyradio/player.py", line 110, in _buildStartOpts

if "not found" not in out[0]:

TypeError: a bytes-like object is required, not 'str'

python --version

Python 3.6.5

After some googling, i made the following change:

File: /usr/lib/python3.6/site-packages/pyradio/player.py

Line: 110

Changed from:

if "not found" not in out[0]:

to:

if "not found" not in str(out[0]):

An now it works!!!

p1tt1 commented on 2015-11-09 08:00 (UTC)

new commit on github

willemw commented on 2015-10-02 06:06 (UTC)

@martynjy: it's an upstream issue: https://github.com/coderholic/pyradio/issues/31.