Re: [slim] ickStream Shutdown

2019-06-01 Thread garym


badboygolf16v wrote: 
> 
> I purged LMS and reinstalled.

And now it works OK?



*Home:* VBA 4TB (2.4)>LMS 7.9.1>Transporter, Touch, Boom, Radio (all
ethernet)
*Cottage:* VBA 3TB (2.4)>LMS 7.9.1>Touch>Benchmark DAC I, Boom, Radio
w/Battery (ethernet, Radio WIFI)
*Office:* Win10(64)>LMS 7.9.2>Squeezelite
*The Wild (no internet): *PiCorePlayer 4.0 on rPi 3B+, hifiberry
Dac+Pro, 4TB USB (LMS & Squeezelite) 
*Controllers:* iPhone6 & iPadAir2 (iPeng), CONTROLLER, or SqueezePlay
7.8 on Win10(64) laptop
*Files:* ripping: dbpa > FLAC; post-rip: mp3tag, PerfectTunes;
Streaming: Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=110399

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] ickStream Shutdown

2019-06-01 Thread badboygolf16v


My issue happened when I upgraded to a newer version of LMS.

I purged LMS and reinstalled.



badboygolf16v's Profile: http://forums.slimdevices.com/member.php?userid=19486
View this thread: http://forums.slimdevices.com/showthread.php?t=110399

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] ickStream Shutdown

2019-06-01 Thread garym


I had the ickstream plugin installed on a linux install of LMS
(vortexbox, using fedora linux).  It's existence caused no issues with
LMS today.  I just went to the LMS webGUI like normal, went to "plugins"
tab on settings and unticked ickstream and removed the URL from
additional repositories section.



*Home:* VBA 4TB (2.4)>LMS 7.9.1>Transporter, Touch, Boom, Radio (all
ethernet)
*Cottage:* VBA 3TB (2.4)>LMS 7.9.1>Touch>Benchmark DAC I, Boom, Radio
w/Battery (ethernet, Radio WIFI)
*Office:* Win10(64)>LMS 7.9.2>Squeezelite
*The Wild (no internet): *PiCorePlayer 4.0 on rPi 3B+, hifiberry
Dac+Pro, 4TB USB (LMS & Squeezelite) 
*Controllers:* iPhone6 & iPadAir2 (iPeng), CONTROLLER, or SqueezePlay
7.8 on Win10(64) laptop
*Files:* ripping: dbpa > FLAC; post-rip: mp3tag, PerfectTunes;
Streaming: Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=110399

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] ickStream Shutdown

2019-06-01 Thread Paul Webster


If LMS not starting ... then you may well have to remove that plugin
from the file system ... which is trickier if not familiar with Linux
command line.

Your plugins will be somewhere like
/usr/local/slimserver/Cache/InstalledPlugins/Plugins

I don't want to suggest using commands to remove everything in a folder
just in case you run it from the wrong place and remove too much stuff.

so something like:
cd /usr/local/slimserver/Cache/InstalledPlugins/Plugins
ls 

and then you should see a listing of directories - with one of them
named something like "ickstream".
If there is then move into it ...
cd ickstream
(make sure that the upper/lower case matches what you see in the
listing)
Assuming no errors then ...
rm Plugin.pm

That might be enough to fool LMS ... so then start LMS and see if you
get access via web browser ... then you could remove the plugin via the
web interface.

Someone with an ickstream installation will be able to give you better
instructions.



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=110399

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] ickStream Shutdown

2019-06-01 Thread loz2103


I think this just killed my LMS! Does anyone know how to remove
ickstream from my plugins without using the web UI, as this won't load
currently.

Thanks in advance.



loz2103's Profile: http://forums.slimdevices.com/member.php?userid=55887
View this thread: http://forums.slimdevices.com/showthread.php?t=110399

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Virtual Libraries - help beginner please

2019-06-01 Thread afriend


mherger wrote: 
> if you set up $log correctly
It's logging now, mostly. I guess LMS got a bit crazy from all of my
endless and quick restarting after every plugin code change.

I have some code for letting the MusicInfoScreen display a character
when the song is in my virtual library 'Favs'.


Code:

sub checkIfInVirtualLibrary
  { my $thistrackID =   ### how do I get the track_id of the 
currently playing song (on the client)???

my $LibID = { library_id => 
Slim::Music::VirtualLibraries->getRealId('FAVS') };### this only gets me a 
HASH(0x5bc123456789) value
  
my $sql = "SELECT COUNT(1) FROM library_track WHERE 
library_track.library = '2a111f4b' AND library_track.track = '1234657'"; 
### the sql query with these specific values works and returns 1 if  song is 
part of VL
my $sth = Slim::Schema->dbh->prepare( $sql );
my $result = undef;
$sth->execute();
my $IsPartOfVirtualLibrary;
$sth->bind_columns( undef, \$IsPartOfVirtualLibrary );
if($sth->fetch()) {
$log->warn("IsPartOfVirtualLibrary = 
".$IsPartOfVirtualLibrary);
}else {
$log->warn("IsPartOfVirtualLibrary = 
".$IsPartOfVirtualLibrary);
#$IsPartOfVirtualLibrary = 0;
}
  
my $string = '';
if ($IsPartOfVirtualLibrary == 1) {
$string='*';
}else {
$string='';
}
$sth->finish();
return $string;
  }



A -test- with a specific track_id and library_id in the sql part already
works.
But I need to solve 2 problems to finish it:

1) I need to -get the trackID- of the currently playing song for the sql
query. I couldn't get this to work.

2) The getRealID returns a HASH value for the virtual library ID and I
-didn't know how to use the hash value with a sql query-. It seems that
the sql query only accepts the id in the form of "2a111f4b" instead of
"HASH(0x5bc123456789)".

I'd be glad if you could point me in the right direction. Thank you.



afriend's Profile: http://forums.slimdevices.com/member.php?userid=39306
View this thread: http://forums.slimdevices.com/showthread.php?t=109334

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] WMA files not playing back

2019-06-01 Thread kidstypike


ralphy wrote: 
> The base picoreplayer install does not include the ffmpeg libraries to
> save space in the image.
> In this state, squeeelite can't play wma or alac files and relies on LMS
> to transcode those formats.
> LMS on Windows includes transcoding support (wmadec) for wma files all
> other platforms include linux (picoreplayer) require either bpa's
> PlayWMA plug or a custom-convert.conf with transcoding rules for wma
> wmal and wmap.
> 
> There's an install ffmpeg library button on the main page of the
> picoreplayer webgui which adds native wma and alac support to
> squezelite.  After installing pcp-libffmpeg.tcz, wmalossless files
> currently won't play correctly.

Thank you.



*Server - LMS 7.9.2 *Pi3B+/pCP 4.1.0 25K library playlists & LMS cache
on SSD (ntfs)
*Study -* Pi3B+/pCP 4.1.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 4.1.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 4.1.0 > Edifier R980T
*Spares* - 2xTouch, 1xSB3, 1xRadio, 6xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=109884

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] WMA files not playing back

2019-06-01 Thread ralphy


The base picoreplayer install does not include the ffmpeg libraries to
save space in the image.
In this state, squeeelite can't play wma or alac files and relies on LMS
to transcode those formats.
LMS on Windows includes transcoding support (wmadec) for wma files all
other platforms include linux (picoreplayer) require either bpa's
PlayWMA plug or a custom-convert.conf with transcoding rules for wma
wmal and wmap.

There's an install ffmpeg library button on the main page of the
picoreplayer webgui which adds native wma and alac support to
squezelite.  After installing pcp-libffmpeg.tcz, wmalossless files
currentl won't play correctly.



Ralphy

*1*-Touch, *5*-Classics, *3*-Booms, *1*-UE Radio
'Squeezebox client builds'
(https://sourceforge.net/projects/lmsclients/files/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=LL5P6365KQEXN=CA_name=Squeezebox%20client%20builds_code=USD=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.

ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=109884

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] WMA files not playing back

2019-06-01 Thread kidstypike


ralphy wrote: 
> This issue is with ffmpeg wmalossless decoder in 3.1, 3.2 and 3.3. 
> Which are the versions I currently use to build SL.
> Upgrading to 3.4 and all the wma lossless files I tried play fine.  Back
> porting the changes to 3.2 fixes wma lossless playback as well.
> Unfortunately, squeezelite is using a depreciated ffmpeg api call so I
> can't upgrade to the latest ffmpeg until I change that and upgrading to
> 3.4 has caused stability issues with wma and alac playback.

I ripped an album to WMA lossless, added album art, replaygain tags,
etc.. This album plays beautifully using Pi3B+/HiFiBerry
DAC+/piCoreplayer, when it is connected to LMS running on Windows 10,
but *not* when connected to LMS running on another Pi/piCorePlayer.

See also my post #24 in this thread.

Could you please explain in very, very simple language what the
difference is between the two, bearing in mind it's the *same
squeezelite player*?

Thank you.

27472


+---+
|Filename: JTPHNWMA.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=27472|
+---+


*Server - LMS 7.9.2 *Pi3B+/pCP 4.1.0 25K library playlists & LMS cache
on SSD (ntfs)
*Study -* Pi3B+/pCP 4.1.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 4.1.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 4.1.0 > Edifier R980T
*Spares* - 2xTouch, 1xSB3, 1xRadio, 6xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=109884

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] WMA files not playing back

2019-06-01 Thread ralphy


This issue is with ffmpeg wmalossless decoder in 3.1, 3.2 and 3.3. 
Which are the versions I currently use to build SL.
Upgrading to 3.4 and all the wma lossless files I tried play fine.  Back
porting the changes to 3.2 fixes wma lossless playback as well.
Unfortunately, squeezelite is using a depreciated ffmpeg api call so I
can't upgrade to the latest ffmpeg until I change that and upgrading to
3.4 has caused stability issues with wma and alac playback.



Ralphy

*1*-Touch, *5*-Classics, *3*-Booms, *1*-UE Radio
'Squeezebox client builds'
(https://sourceforge.net/projects/lmsclients/files/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=LL5P6365KQEXN=CA_name=Squeezebox%20client%20builds_code=USD=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.

ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=109884

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] WMA files not playing back

2019-06-01 Thread bpa


Hal Bregg wrote: 
> Or, can anyone confirm their own experience of WMA successfully playing
> on PCP?

I don't have pcp and as this thread is probably not read by many pcp
users, if you need an answer to the generic pcp question - ask it on the
pcp support thread
https://forums.slimdevices.com/showthread.php?109404-ANNOUNCE-piCorePlayer-4-0-0

The problem is Squeezelite specific not pcp specific. I have reproduced
this problem with Squeezelite on Win10 and Ubuntu.  

AFAICT The problem only affects WMA lossless files - the problem happens
with some other WMA lossless files I have. WMA lossy files are not
affected and play OK.  

I think the issue maybe a "recent" one due to a change in the ffmpeg API
as I believe my WMA lossless test files used to play OK but I am not
certain as earlier builds often didn't include wma support - so LMS may
have been doing the transcoding.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=109884

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Black Transporter for sale

2019-06-01 Thread richads


Fizbin wrote: 
> Must be a nice DAC to 'blow you away' from the Transporter. I compared
> the much cheaper Topping D50 (which measures very nicely and has the
> same Sabre chip) to the Transporter and the Topping didn't even come
> close.

You are right, and the fact that I have had the transporter for 10 years
is testament to its excellence,  during which time I have tried all
manner of alternatives. New DAC is a CAD 1543 mark 2 which is
breathtakingly good.



richads's Profile: http://forums.slimdevices.com/member.php?userid=64694
View this thread: http://forums.slimdevices.com/showthread.php?t=110615

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss