Hi there, I just signed up to collaborate on this great plugin.
Running Centos 6.6, I couldn't get shairtunes-plugin to work. I kept
getting the port error:
Code:
--------------------
Expected port number from decoder; got at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/ShairTunes/Plugin.pm
line 342.
--------------------
Having no experience with Perl, tracking down the problem was not an
straight-forward task. But after a few days of part-time digging and
reading, I came to the conclusion that the open2() method call at line
336 of Plugin.pm was the root of the problem and indeed I was right. So
I split line 336
Code:
--------------------
my $decoder = open2(my $dec_out, my $dec_in, $dec);
--------------------
to
Code:
--------------------
my ($dec_out, $dec_in);
my $decoder = open2($dec_out, $dec_in, $dec);
--------------------
and now I have sound coming out of my various squeezeboxes. I haven't
done any long listening session yet so I don't know if the stream holds
on, but at least I'm getting sound now.
P.S. Those captchas are ridiculous, I have to refresh them at least 10
times to get one almost readable.
------------------------------------------------------------------------
Grodesh's Profile: http://forums.slimdevices.com/member.php?userid=63845
View this thread: http://forums.slimdevices.com/showthread.php?t=100379
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins