Arrh - may be a problem with 6.2 with this new version!
Could you try editing the file Plugins/Alien/RTSP.pm
Does adding in the two lines starting "use" in the fragment below
help?
Code:
--------------------
if ($::VERSION ge '6.5') {
Slim::Player::ProtocolHandlers->registerHandler('rtsp', __PACKAGE__);
Slim::Formats::Playlists->registerParser('rtsppl',
'Plugins::Alien::Playlists::RTSPPL');
Slim::Formats::Playlists->registerParser('smilpl',
'Plugins::Alien::Playlists::SMIL');
} else {
use Plugins::Alien::Playlists::RTSPPL;
use Plugins::Alien::Playlists::SMIL;
Slim::Player::Source::registerProtocolHandler('rtsp', __PACKAGE__);
Slim::Formats::Parse::registerParser('rtsppl',
\&Plugins::Alien::Playlists::RTSPPL::read, undef, undef);
Slim::Formats::Parse::registerParser('smilpl',
\&Plugins::Alien::Playlists::SMIL::read, undef, undef);
}
--------------------
--
Triode
------------------------------------------------------------------------
Triode's Profile: http://forums.slimdevices.com/member.php?userid=17
View this thread: http://forums.slimdevices.com/showthread.php?t=23428
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins