Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
paul- wrote: > It has nothing to do with 6.0.0, On account of this, I have updated the thread title so that it can easily be found by others: * Issue with .cue. (LMS 8.0 FLAC Transcoding Issue) * amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
@bpa - would the following fix the issue? Code: diff --git a/Slim/Plugin/WiMP/ProtocolHandler.pm b/Slim/Plugin/WiMP/ProtocolHandler.pm index 509de4516..d952e3c88 100644 --- a/Slim/Plugin/WiMP/ProtocolHandler.pm +++ b/Slim/Plugin/WiMP/ProtocolHandler.pm @@ -40,6 +40,15 @@ sub getFormatForURL { return $format; } +sub formatOverride { + my ($class, $song) = @_; + my $format = Slim::Music::Info::contentType($song->currentTrack); + + return 'tdlflc' if $format eq 'flc'; + return $format; +} + # default buffer 3 seconds of 256kbps MP3/768kbps FLAC audio my %bufferSecs = ( flac => 80, diff --git a/Slim/Plugin/WiMP/custom-convert.conf b/Slim/Plugin/WiMP/custom-convert.conf new file mode 100644 index 0..97d7ff763 --- /dev/null +++ b/Slim/Plugin/WiMP/custom-convert.conf @@ -0,0 +1,19 @@ + +tdlflc mp3 * * + # IFB:{BITRATE=--abr %B}T:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=--resample %D} + [flac] -dcs $START$ $END$ -- $FILE$ | [lame] --silent -q $QUALITY$ $RESAMPLE$ $BITRATE$ - - + +tdlflc pcm * * + # IFT:{START=--skip=%t}U:{END=--until=%v} + [flac] -dcs --force-raw-format --endian=little --sign=signed $START$ $END$ -- $FILE$ + +tdlflc aif * * + # IFT:{START=--skip=%t}U:{END=--until=%v} + [flac] -dcs --force-raw-format --endian=big --sign=signed $START$ $END$ -- $FILE$ + +tdlflc flc * * + - + +tdlflc flc transcode * + # IFT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} + [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - diff --git a/convert.conf b/convert.conf index 90748daa2..1c0739875 100644 --- a/convert.conf +++ b/convert.conf @@ -357,7 +357,7 @@ mp3 mp3 transcode * [lame] --silent -q $QUALITY$ $BITRATE$ $RESAMPLE$ --mp3input $FILE$ - flc flc transcode * - # IFT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} + # FT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - # This example transcodes MP3s to MP3s, if the target machine has the What this does is it defines a custom format called "tdlflc". Only this should transcode on stdin (IFT), but not regular flac. Michael "It doesn't work - what shall I do?" - "Please check your server.log and/or scanner.log file!" (LMS: Settings/Information) mherger's Profile: http://forums.slimdevices.com/member.php?userid=50 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
paul- wrote: >If you started with a fresh 6.0.0 image, and installed LMS,it would > have the same problem. > > Funnily, that was the next thing I was going to try - burning a new 6.0.0 image and re-trying that. I ran out of time last night. amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
It has nothing to do with 6.0.0, but an old install that used an older LMS. If you started with a fresh 6.0.0 image, and installed LMS,it would have the same problem. And if you modified convert.conf, it likely will not survive a reboot. Put that lined of code in a text file, and upload it via the pCP web page.custom-convert option. piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > No. There were examples of the effect of the changed convert.conf which > broke flac/cue with resampling. > > > Change the current convert.conf > > Code: > > > flc flc transcode * > # IFT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} > [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - > > > > > Edit just remove the "I" - IFT becomes FT . Be careful editing the > file - do the editing on the LMS system. Make sure ownership and > permissions do not change. > > Code: > > > flc flc transcode * > # FT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} > [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - > > > > > The "IFT" was added to fix a problem with playing Tidal Flac file. If > you remove the "I" then playing Tidal Flac on older SB player will > cause stuttering for some tracks which have a high compression. > > These are both niche cases - at the moment it looks like no > comprehensive solution. Trying now > FIXED!! (Really unsure why it continued to work on 6.0.0 - but this ^^ means no longer any issue.) amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
amey01 wrote: > So I exchange this line in convert.conf: > . > . > . > > Is that right? No. There were examples of the effect of the changed convert.conf which broke flac/cue with resampling. Change the current convert.conf Code: flc flc transcode * # IFT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - Edit just remove the "I" - IFT becomes FT . Be careful editing the file - do the editing on the LMS system. Make sure ownership and permissions do not change. Code: flc flc transcode * # FT:{START=--skip=%t}U:{END=--until=%v}D:{RESAMPLE=-r %d} [flac] -dcs $START$ $END$ -- $FILE$ | [sox] -q -t wav - -t flac -C 0 $RESAMPLE$ - The "IFT" was added to fix a problem with playing Tidal Flac file. If you remove the "I" then playing Tidal Flac on older SB player will cause stuttering for some tracks which have a high compression. These are both niche cases - at the moment it looks like no comprehensive solution. bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
paul- wrote: > You could override the rule by using a custom-convert file. So I exchange this line in convert.conf: Code: "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=13:32.22 --until=18:06.76 -- - | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - for this line: Code: "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=6:07.16 --until=10:08.86 -- "/home/albums/Rock/Silver_and_Gold-Hi-Flac/Silver_and_Gold-hiflc.flc" | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - & | Is that right? amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Overlay for DAC audiophonics i-sabre ES9023 in PcP 6.0.0?
You can certainly use pip to install stuff. So you have everything working? piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=111835 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
You could override the rule by using a custom-convert file. piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > A 1-Nov-2020 LMS 8.0 change to convert.conf to support streaming Tidal > Flac seems to have broken Flac/Cue file transcoding with resampling. > AFAICT nothing to do with PCP 6.0 vs 6.1. > > The change is > https://github.com/Logitech/slimserver/commit/0b0104bf817b6d2e7f1817eea507949b9be5c527 > > The change make flac input to come from stdin rather than the file. > > Broken > > Code: > > > "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=13:32.22 --until=18:06.76 -- - | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - > > > > > Working > > Code: > > > "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=6:07.16 --until=10:08.86 -- "/home/albums/Rock/Silver_and_Gold-Hi-Flac/Silver_and_Gold-hiflc.flc" | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - & | > > > to Can I try manually changing this line on my server? amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > I think I have reproduced the problem. > You are amazingly intelligent! > > . I updated to latest and it is now broken. So issues looks like not > 6.0 - 6.1 but LMS 8.0 update Not so sure on this - I have only one LMS8.0 server. It plays fine to the 6.0.0 player, but not to the 6.0.1 player amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > If possible stay with current setup just until at least tests with flac > and sox are complete. Then we'll have a benchmark to compare against. I used another card to try 7.0.0 - so no harm done. I'm back with 6.0.1. amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Overlay for DAC audiophonics i-sabre ES9023 in PcP 6.0.0?
Hi Paul, Here is what was added previously to get the Audiophonics scripts running according to this thread: https://forums.slimdevices.com/showthread.php?112288-AUDIOPHONICS-RASPDAC-MINI-Kit/page2&highlight=audiophonic pillow luma.oled luma.core pyftdi smbus2 spidev RPI.GPIO pyusb pyserial pylms Thanks, Patrick pmendiuk's Profile: http://forums.slimdevices.com/member.php?userid=62342 View this thread: http://forums.slimdevices.com/showthread.php?t=111835 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] could this be a Squeezebox player if pCP will install and work?
d6jg wrote: > The big question must be how good is the DAC? Absolutely. *Server - LMS 8.0.1 *Pi4B 4GB/Flirc case/pCP v7.0.0b6 - 74K library, playlists & LMS cache on SSD (ntfs) *Study -* Pi3B/pCP 7.0.0b6/pi screen/Allo Boss DAC Ruark MR1 Mk2 *Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5 *Garage* - Squeezebox Boom + Fostex sub *Dining Room* - Pi3B/Bluetooth/Echo Show 8 *Spares* - 2xTouch, 1xSB Radio. 1xSB3, 6xRPi kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436 View this thread: http://forums.slimdevices.com/showthread.php?t=113320 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] could this be a Squeezebox player if pCP will install and work?
kidstypike wrote: > Well I've ordered one of them, I have a spare Pi4/PSU/SD card. (or 3) > > I'll install pCP, if I can't get any sound out of it I'll install > Volumio just to see what it sounds like. I think I can use it as a > Squeezebox client. > > Keep you all posted cos I know you're all keen to know how it turns out. > :D The big question must be how good is the DAC? VB2.4[/B] STORAGE *QNAP TS419P (NFS) [B]Living Room* - Joggler & SB3 -> Onkyo TXNR686 -> Celestion F20s *Office* - Joggler & Pi3 -> Denon RCD N8 -> Celestion F10s *Dining Room* -> SB Boom *Kitchen* -> UE Radio (upgraded to SB Radio) *Bedroom (Bedside)* - Pi Zero+DAC ->ToppingTP21 ->AKG Headphones *Bedroom (TV) & Bathroom* - SB Touch ->Denon AVR ->Mordaunt Short M10s + Pioneer ceiling speakers *Guest Room* - Joggler > Topping Amp -> Wharfedale Modus Cubes Everything controlled by iPeng & Material on iOS d6jg's Profile: http://forums.slimdevices.com/member.php?userid=44051 View this thread: http://forums.slimdevices.com/showthread.php?t=113320 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Overlay for DAC audiophonics i-sabre ES9023 in PcP 6.0.0?
python3.8-smbus.tcz. And python3.8-rpi-gpio.tcz are posted now. piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=111835 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Dual Wifi adapters
paul- wrote: > There is no automatic way to handle this in piCorePlayer. > > Hostapd is available, and what you need to run a AP on the second > adapter. You would have do manual configuring. Thanks Paul. Anyone else successful getting this to work? I installed the extension but can't find the .conf file to configure. Sorry, I only know enough Linux to be dangerous. Current: Windows 10 - LMS Server 7.9.3 8TB RAID 10 Media Drive Office - Windows 10 - Squeezelite-X Living Room - 2x RPiZeroW w/ Allo MiniBoss each running a Logitech Z623 System Family Room (TV) - 1X RPi3B+ HDMI to Denon Surround Receiver 7.2 System Bedroom 1x RPiZeroW with HiFiBerry MiniAmp to 2X POLK OWM3's All running piCorePlayer 6.1.0 and synchronized. Building Pi Boombox - RPi4B w/ HiFiBerry DAC+ micmed's Profile: http://forums.slimdevices.com/member.php?userid=67919 View this thread: http://forums.slimdevices.com/showthread.php?t=113327 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
A 1-Nov-2020 LMS 8.0 change to convert.conf to support streaming Tidal Flac seems to have broken Flac/Cue file transcoding with resampling. AFAICT nothing to do with PCP 6.0 vs 6.1. The change is https://github.com/Logitech/slimserver/commit/0b0104bf817b6d2e7f1817eea507949b9be5c527 The change make flac input to come from stdin rather than the file. Broken Code: "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=13:32.22 --until=18:06.76 -- - | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - Working Code: "/home/lms/Bin/x86_64-linux/flac" -dcs --skip=6:07.16 --until=10:08.86 -- "/home/albums/Rock/Silver_and_Gold-Hi-Flac/Silver_and_Gold-hiflc.flc" | "/home/lms/Bin/x86_64-linux/sox" -q -t wav - -t flac -C 0 -r 48000 - & | to bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
garym wrote: > Fantastic news. Glad it worked/. Love the Netherlands (and their beer!). > During this Covid time, I miss travel more than anything, domestic or > international. Luckily, I was able to do a week long trip to Lisbon in > February and a 10 day trip to Italy last October. Since then > .nothing I can't drive to. Here's to a better 2021. 2 trips in this lousy year, that's not bad at all. I'm in quarantaine right now, 5 days to go, I can only wander around my garden (and drink beer). Cheers to you! *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl wrote: > I followed your steps Gary and now my music library is being scanned. My > Material skin is already visible and also my favourites seem to appear > in the way I used to see. Fantastic! :):) Thank you both Gary and Ronnie > for your help. When you're in the Netherlands, I'll be happy to serve > you as many beer as you want. It's great that these forums are kept so > alive by helpful people like you (and also Michael Herger not to > forget)! Fantastic news. Glad it worked/. Love the Netherlands (and their beer!). During this Covid time, I miss travel more than anything, domestic or international. Luckily, I was able to do a week long trip to Lisbon in February and a 10 day trip to Italy last October. Since then .nothing I can't drive to. Here's to a better 2021. *Home:* VBA2.5 4TB -or- rPi4B/pCP6.1/4TB>LMS 8.0.x>Transporter, Touch, Boom, Radio (all ethernet) *Cottage:* rPi4B/pCP6.1/4TB>LMS 8.0.x>Touch>Benchmark DAC I, Boom, Radio w/Battery (ethernet except Radio WIFI) *Office:* Win10(64)>foobar2000 *The Wild: *rPi3B+/pCP4.0, hifiberry Dac+Pro, 4TB USB (LMS & Squeezelite) *Controllers:* iPhone11 & iPadAir3 (iPeng), CONTROLLER, Material Skin, or SqueezePlay 7.8 on Win10(64) *Files:* -Ripping-: dbpoweramp > 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=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
I followed your steps Gary and now my music library is being scanned. My Material skin is already visible and also my favourites seem to appear in the way I used to see. Fantastic! :):) Thank you both Gary and Ronnie for your help. When you're in the Netherlands, I'll be happy to serve you as many beer as you want. It's great that these forums are kept so alive by helpful people like you (and also Michael Herger not to forget)! *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
Currently, my FLAC library is on the other server, but I'll copy a few albums and test. Right now, I only have a Touch which used to be able to play Tidal natively. There have been no problems with that, as far as I know. "Seeking" within a track didn't work any more, last time I checked, but was fixed when connected to the Pi. I can install a software player on a PC and test. When the problem first occurred on the Receiver, I gave up on Tidal and played web radio, instead. There were no problems with that. Back then, I still suspected network problems like you do, so I started rummaging through my router's logs instead of testing the LMS, which is why I don't know much about other music sources. scaleo home server 2105 & picoreplayer 6.1.0 | logitech media server 8.0.0 | server power control 20120716.103808 | transporter & duet & touch & boom & radio | rotel rc-995 & rmb-100 | nubert nuvero 140 mvordeme's Profile: http://forums.slimdevices.com/member.php?userid=22892 View this thread: http://forums.slimdevices.com/showthread.php?t=113321 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Overlay for DAC audiophonics i-sabre ES9023 in PcP 6.0.0?
I wonder whats different in pCP7 with the driver. Anywaymove on. The extensions are not present for gpio and smbus. Give me a bit, and I'll get them made and posted. Anything else that you know of? piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=111835 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Dual Wifi adapters
There is no automatic way to handle this in piCorePlayer. Hostapd is available, and what you need to run a AP on the second adapter. You would have do manual configuring. piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113327 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Man in a van wrote: > That works a treat Gary, many thanks, Cheers! But thanks go to the way smarter people that figure all this stuff out and post on the forums. I'm just good at locating it on the forum and summarizing it in a (hopefully) useful way. And maybe that's because when it comes to computers I'm mostly just a "follow instructions and cut and paste" type of guy, so I try to summarize with that in mind. ;) *Home:* VBA2.5 4TB -or- rPi4B/pCP6.1/4TB>LMS 8.0.x>Transporter, Touch, Boom, Radio (all ethernet) *Cottage:* rPi4B/pCP6.1/4TB>LMS 8.0.x>Touch>Benchmark DAC I, Boom, Radio w/Battery (ethernet except Radio WIFI) *Office:* Win10(64)>foobar2000 *The Wild: *rPi3B+/pCP4.0, hifiberry Dac+Pro, 4TB USB (LMS & Squeezelite) *Controllers:* iPhone11 & iPadAir3 (iPeng), CONTROLLER, Material Skin, or SqueezePlay 7.8 on Win10(64) *Files:* -Ripping-: dbpoweramp > 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=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
Unless you see Free memory go to zero(or close to it), its not out of memory. You still have well over 1GB of free memory. As for virtual memory, there is compressed swap in ram, which could easily account for that. Anyway, let me ask to verify. Playing local FLAC music to the Boom, will play without issues? The issue only occurs when playing Tidal AAC streams to the Boom? Do you see problems playing Tidal to devices other than the Boom? i.e. do you have any squeezelite players that should handle AAC natively? piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113321 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
That works a treat Gary, many thanks, no Plugins to add in after and both repos completely installed Both my files are in > /usr/local/slimserver/ I "downloaded" them to a folder on my PC (left hand pane) On the new rpi LMS image I navigated to the same folder (right hand pane) On the left hand pane I selected "upload" and confirmed "overwrite" 32353 Thanks a lot :) ronnie +---+ |Filename: folder home.png | |Download: http://forums.slimdevices.com/attachment.php?attachmentid=32353| +---+ Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
What I don't understand about the memory: The file system looks like there are 2.6 G of virtual file system in memory, which is not possible, and which would not leave 1.9 G of memory for the processes, so in some way, the numbers need interpretation. I wrote "out of memory" because that is my interpretation. I should have added a "?". So far, there are no music files on the server, so the library consists of my Tidal favourites only. I don't do much with it, just go to -Tidal > My Favourites > Artist- on the Controller, pick an artist and album and play. I would expect the process size to increase at these points in time when it caches the album art, but it actually grows all the time while playing. The server starts new faad and flac processes for every track. For a few seconds, they have an increased CPU usage, and they die a few seconds before the track ends, so there is a buffer somewhere. I actually did not check whether the server still spawns new processes once the players get stuck. So far, I have not synchronized any players. It actually took me some time to notice that the problem is on the server because I am mainly listening with my Receiver which has its own set of problems. The server is connected to the router over 100 MBit/s Ethernet, but all players use WiFi. In case of the Receiver, there is even a WiFi repeater involved. In order to minimize my problems with the Receiver, I have moved the WiFi Repeater very close to the Receiver. It shows a signal strength of more than 90 % most of the time. The WiFi router displays connection speeds of > 200 MBit/s between router and repeater and > 50 MBit/s between repeater and Receiver. I can play an entire 24 bit 96 kHz FLAC album over that connection without any problem when the Receiver is in a good mood. When the problem occurred for the first time, I then moved to the Boom in the kitchen, and it showed the same behaviour. There is no repeater in the Boom's network path, and it has never shown any problems during playback, so far. When the problem persisted, I updated the LMS, and the problem was gone, but the next night it was back. This time, I just restarted the LMS and everything was fine again. That's when I started to monitor the processes on the server. I don't think that it is a network problem because restarting the LMS consistently helps every time. If you have an idea how I could debug the network, I can of course try. I already gave the piCore real-time priority on the router to make the inbound stream more reliable. While I am writing, I had to restart the LMS again. This time, it had only reached a size of 154 M, and the processes for transcoding were still looking good memory-wise. The CPU load does drop when the player re-buffers, but the problem appears to be on the server. re-buffering: Code: Mem: 491628K used, 1462724K free, 19816K shrd, 31664K buff, 208536K cached CPU: 0.8% usr 0.2% sys 0.0% nic 98.8% idle 0.0% io 0.0% irq 0.0% sirq Load average: 0.07 0.07 0.02 2/143 31491 PID PPID USER STAT VSZ %VSZ CPU %CPU COMMAND 15428 1 tc S 154m 8.1 0 0.7 {slimserver.pl} /usr/bin/perl /usr/local/slimserver/slimserver.pl --daemon --user tc --group staff 31420 31418 tc S 5404 0.2 0 0.0 /usr/local/slimserver/Bin/armhf-linux/flac -cs --totally-silent --compression-level-0 --ignore-chunk-sizes - 31418 15428 tc S 3200 0.1 1 0.0 sh -c "/usr/local/slimserver/Bin/armhf-linux/faad" -q -w -f 1 - | "/usr/local/slimserver/Bin/armhf-linux/flac" -cs --totally-silent --compression-lev 31419 31418 tc S 2780 0.1 0 0.1 /usr/local/slimserver/Bin/armhf-linux/faad -q -w -f 1 - fixed: Code: Mem: 394588K used, 1559764K free, 14484K shrd, 31664K buff, 163784K cached CPU: 1.2% usr 0.1% sys 0.0% nic 98.5% idle 0.0% io 0.0% irq 0.0% sirq Load average: 0.17 0.10 0.03 3/144 31726 PID PPID USER STAT VSZ %VSZ CPU %CPU COMMAND 31625 1 tc R 100m 5.2 0 0.4 {slimserver.pl} /usr/bin/perl /usr/local/slimserver/slimserver.pl --daemon --user tc --group staff 31716 31714 tc S 5404 0.2 0 0.2 /usr/local/slimserver/Bin/armhf-linux/flac -cs --totally-silent --compression-level-0 --ignore-chunk-sizes - 31714 31625 tc S 3200 0.1 1 0.0 sh -c "/usr/local/slimserver/Bin/armhf-linux/faad" -q -w -f 1 - | "/usr/local/slimserver/Bin/armhf-linux/flac" -cs --totally-silent --compression-lev 31715 31714 tc S 2780 0.1 0 0.6 /usr/local/slimserver/Bin/armhf-linux/faad -q -w -f 1 - You can see that the shared and cached memory sizes drop when the LMS is restarted. Both of these sizes do also grow constantly while the LMS is playing. I'd think that it is okay as long as there is enough free memory to go around, but the fact that they drop instantly when the LMS is restarted could hint at some kind of resource
[SlimDevices: Unix] Dual Wifi adapters
I have searched the threads and have not found an answer to this. System - RPi4b with DAC Hat embedded into a Sony Boombox. Headless Simply I want to use the on board Wifi (wlan0) to connect to an internet connected AP but want to use a second USB wifi adapter (wlan1) as a RPi WAP (or the reverse) so I can access the web interface when on the road to change the SSID without having to SSH or remove the SD card. I have read through the wpa_supplicant.conf docs but did not see a solution. I know I can set up several SSID configurations however I want to be able configure when the SSID is not known. I apologize in advance if this has been answered. If it has I would appreciate a link to the thread. Current: Windows 10 - LMS Server 7.9.3 8TB RAID 10 Media Drive Office - Windows 10 - Squeezelite-X Living Room - 2x RPiZeroW w/ Allo MiniBoss each running a Logitech Z623 System Family Room (TV) - 1X RPi3B+ HDMI to Denon Surround Receiver 7.2 System Bedroom 1x RPiZeroW with HiFiBerry MiniAmp to 2X POLK OWM3's All running piCorePlayer 6.1.0 and synchronized. Building Pi Boombox - RPi4B w/ HiFiBerry DAC+ micmed's Profile: http://forums.slimdevices.com/member.php?userid=67919 View this thread: http://forums.slimdevices.com/showthread.php?t=113327 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
I think I have reproduced the problem. I think it is not due to 6.0 vs 6.12. 6.0 player h/w does not require resampling but 6.1 does require resampling. My 8.0.0 was a little old but transcoding/resampling worked OK. I updated to latest and it is now broken. So issues looks like not 6.0 - 6.1 but LMS 8.0 update bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl wrote: > Thanks for your detailed instructions although I don't know how to > download the prefs and cachefolder. I found them with winscp but then do > not know how to copy them to my pc... Are you cool with this now Ton ? or would you still like a detailed "how to" . I just right clicked the folder,selected copy, and pasted it on the Desktop gary's way is "reet proper" :o ronnie Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
paul- wrote: > I would agree with getting to the bottom of this. You could try the > PCP7 beta. That would for sure have the latest of everything. If possible stay with current setup just until at least tests with flac and sox are complete. Then we'll have a benchmark to compare against. bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
What are the connected clients? Are you trying to play them synchronized? What is the network connectivity of the server and the clients? piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113321 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
I would agree with getting to the bottom of this. You could try the PCP7 beta. That would for sure have the latest of everything. piCorePlayer a small player for the Raspberry Pi in RAM. Homepage: https://www.picoreplayer.org Please 'donate' (https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=U7JHY5WYHCNRU&lc=GB¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) if you like the piCorePlayer paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl wrote: > Thanks for your detailed instructions although I don't know how to > download the prefs and cachefolder. I found them with winscp but then do > not know how to copy them to my pc... On the left side of WinSCP, navigate to something like the DESKTOP of your PC. On the right side of WinSCP, highlight/select the folder "cache", right click, and select DOWNLOAD. Then highlight/select the folder "prefs", right click and select DOWNLOAD. This will copy both folders to your PC. *Home:* VBA2.5 4TB -or- rPi4B/pCP6.1/4TB>LMS 8.0.x>Transporter, Touch, Boom, Radio (all ethernet) *Cottage:* rPi4B/pCP6.1/4TB>LMS 8.0.x>Touch>Benchmark DAC I, Boom, Radio w/Battery (ethernet except Radio WIFI) *Office:* Win10(64)>foobar2000 *The Wild: *rPi3B+/pCP4.0, hifiberry Dac+Pro, 4TB USB (LMS & Squeezelite) *Controllers:* iPhone11 & iPadAir3 (iPeng), CONTROLLER, Material Skin, or SqueezePlay 7.8 on Win10(64) *Files:* -Ripping-: dbpoweramp > 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=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Man in a van wrote: > Well that is mostly what I have done but I didn't know about changing > the "UUID"s and I only copied the "prefs" folder and not the "cache" > > When I first did it I just deleted the files in the right hand side pane > and copyied over the folder and open it. > > That did not work. > > I tried with a new image and rename the files in the left hand side, > copied over all the files from left to right. and that worked > > I also had to re-load a few Plugins > > I'll redo my procedure this afternoon and send that to > @dej...@kraanendejong.nl > > Thanks gary, top bloke:) (fancy a Turkey sandwich ? :):p) > > ronnie Thanks ronnie! I've got plenty of turkey here. I'll have a beer instead (well later, it's morning here). It's been a while, but I think when I copied over the new cache and prefs folders to the rPi, WinSCP may have just asked me if I wanted to replace. Not sure. If not, I would have simply DELETED those folders on the rPi first. Of course renaming would work too (cacheOLD and prefsOLD). Deleting the two "uuid" lines is something that I learned from @mherger. I think that it doesn't matter if one is never using the old LMS setup, or not using it in the same network. But, say, you're setting up two different rPis with LMS that will sometimes both run in the same network. Something about the uuid names being identical will cause some confusion. *Home:* VBA2.5 4TB -or- rPi4B/pCP6.1/4TB>LMS 8.0.x>Transporter, Touch, Boom, Radio (all ethernet) *Cottage:* rPi4B/pCP6.1/4TB>LMS 8.0.x>Touch>Benchmark DAC I, Boom, Radio w/Battery (ethernet except Radio WIFI) *Office:* Win10(64)>foobar2000 *The Wild: *rPi3B+/pCP4.0, hifiberry Dac+Pro, 4TB USB (LMS & Squeezelite) *Controllers:* iPhone11 & iPadAir3 (iPeng), CONTROLLER, Material Skin, or SqueezePlay 7.8 on Win10(64) *Files:* -Ripping-: dbpoweramp > 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=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
garym wrote: > Here's what I do. > > 1. In my old version of LMS running on an rPi with PiCorePlayer I copy > (download) the old "prefs" and "cache" folders using WinSCP to my PC.* > These folders are in "/mnt/LMSfiles/slimserver/" (note "LMSfiles" is > the name I gave the mounted USB drive to my rPi, and you may have used a > different name. You can see the location by looking at the webGUI for > LMS > Settings > Information tab, bottom of that page > > 2. Once saved on the PC, in the "prefs" folder, I locate the file, > "server.prefs" and open it with windows "notepad". Once open I search > for "uuid" without the quotes. It should show up in two lines. I delete > BOTH those lines. This info is specifically related to your old setup > and will be replaced automatically in your new LMS setup. > > 3. Install new version of piCorePlayer, LMS, attach USB drive, etc. > following the excellent instructions here: > https://docs.picoreplayer.org/how-to/ > > 4. Once new piCorePlayer and LMS is running on rPi, I go into the > piCorePlayer webGUI and STOP LMS. > > 5. Then I reverse step 1. I copy (UPLOAD) the "prefs" and "cache" > folders from my PC to the correct location on the rPi using WinSCP. > > 6. Then on the piCorePlayer webGUI I START LMS. > > At this point when you open the LMS webGUI, you should see that your > favorites, plugins, etc. are back in place. I recall that a handful of > plugins may require some attention at this point, but fairly minor > stuff. Perhaps you have to go through the simple "spotty" steps to > authorize Spotify on your new LMS. > > *Unless you've changed it, your UserID and PW for accessing the rPi with > WinSCP (or any similar program) is: > UserID: tc > Password:piCore Thanks for your detailed instructions although I don't know how to download the prefs and cachefolder. I found them with winscp but then do not know how to copy them to my pc... *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
garym wrote: > Here's what I do. > > 1. In my old version of LMS running on an rPi with PiCorePlayer I copy > (download) the old "prefs" and "cache" folders using WinSCP to my PC. > These folders are in "/mnt/LMSfiles/slimserver/" (note "LMSfiles" is > the name I gave the mounted USB drive to my rPi, and you may have used a > different name. You can see the location by looking at the webGUI for > LMS > Settings > Information tab, bottom of that page > > 2. Once saved on the PC, in the "prefs" folder, I located the file, > "server.prefs" and open it with windows "notepad". Once open I search > for "uuid" without the quotes. It should show up in two lines. I delete > BOTH those lines. This info is specifically related to your old setup > and will be replaced automatically in your new LMS setup. > > 3. Install new version of piCorePlayer, LMS, attach USB drive, etc. > following the excellent instructions here: > https://docs.picoreplayer.org/ > > 4. Once new piCorePlayer and LMS is running on rPi, I go into the > piCorePlayer webGUI and STOP LMS. > > 5. Then I reverse step 1. I copy (UPLOAD) the "prefs" and "cache" > folders from my PC to the correct location on the rPi using WinSCP. > > 6. Then on the piCorePlayer webGUI I START LMS. > > At this point when you open the LMS webGUI, you should see that your > favorites, plugins, etc. are back in place. I recall that a handful of > plugins my require some attention at this point, but fairly minor stuff. Well that is mostly what I have done but I didn't know about changing the "UUID"s and I only copied the "prefs" folder and not the "cache" When I first did it I just deleted the files in the right hand side pane and copyied over the folder and open it. That did not work. I tried with a new image and rename the files in the left hand side, copied over all the files from left to right. and that worked I also had to re-load a few Plugins I'll redo my procedure this afternoon and send that to @dej...@kraanendejong.nl Thanks gary, top bloke:) (fancy a Turkey sandwich ? :):p) ronnie Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Here's what I do. 1. In my old version of LMS running on an rPi with PiCorePlayer I copy (download) the old "prefs" and "cache" folders using WinSCP to my PC. These folders are in "/mnt/LMSfiles/slimserver/" (note "LMSfiles" is the name I gave the mounted USB drive to my rPi, and you may have used a different name. You can see the location by looking at the webGUI for LMS > Settings > Information tab, bottom of that page 2. Once saved on the PC, in the "prefs" folder, I located the file, "server.prefs" and open it with windows "notepad". Once open I search for "uuid" without the q *Home:* VBA2.5 4TB -or- rPi4B/pCP6.1/4TB>LMS 8.0.x>Transporter, Touch, Boom, Radio (all ethernet) *Cottage:* rPi4B/pCP6.1/4TB>LMS 8.0.x>Touch>Benchmark DAC I, Boom, Radio w/Battery (ethernet except Radio WIFI) *Office:* Win10(64)>foobar2000 *The Wild: *rPi3B+/pCP4.0, hifiberry Dac+Pro, 4TB USB (LMS & Squeezelite) *Controllers:* iPhone11 & iPadAir3 (iPeng), CONTROLLER, Material Skin, or SqueezePlay 7.8 on Win10(64) *Files:* -Ripping-: dbpoweramp > 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=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl wrote: > I guess you mean pcpbackupv3.21.img? So with such a backup I'm sure that > I can always return to pCP 3.21 including my favs, plugins, etc.? Cause > I thought those files were on my Raspberry Pi... > > > Yes you call the file whatever you wish (I always have version number, > and sometimes date, depending on what I am using it for) > > > I can see there are two img. files on my SD-card: kernel4935.img and > kernel4935v7.img. I assume that I choose both files in win32diskimager? > > No, you just use the letter given by windows, see the screen shot > > > I always add .img to the filename as Windows leaves it off. It's fine if one can remember what the files is and one uses Win32 Disk Imager to write the new image but other writning tools won't recognise it 32350 1) Card identity given by Windows 2) Storage location 3) This keeps the size as small as possible 4) This strarts the copy process, there will be an option to veriy offered at the end ronnie +---+ |Filename: how to.png | |Download: http://forums.slimdevices.com/attachment.php?attachmentid=32350| +---+ Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
amey01 wrote: > Thank you. > > Seriously, I think youve done enough! > > Its a weird problem for sure, but (for me at least) its about 3 albums > out of about 3000. > > Ill downgrade back to 6.0.0 if I need to. Since you can reproduce at will, it would be better to find the reason. If it is not sorted out - it will reappear and take time getting back to same stage. I was involved in the last issue with a WAVE/cue files and I am wondering whether the solution was 100% (e.g. you have Flac/cue) or some side effect has happened. bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Man in a van wrote: > dej...@kraanendejong.nl > > I have been working on this all the morning and I'm pleased to say I > have cracked it. > > I have seen references from people who save their "pref" file and > reinstate it on a new version of LMS, but no definitive guide on how to > do it. > > So I have been hacking about with WinScp and after a few failures, > finally got it to work > > It's a bit clunky and belt and braces (I have no doubt there is a > better, command line, way to do it) but it seems to work. > > If you are willing to take the risk, pm me an e-mail address and I'll > send a guide with some screen shots (after lunch) . > > If you can follow the guide and it works, then I'll later put up a "how > to" on the forum. > > ronnie Thanks for your time! I almost gave up, I appreciate your efforts very much, I will send you my emailadress. *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Man in a van wrote: > > > 2) Append the .img suffix to the file name when entering it into the > appropiate box (eg pcpbackupv6.1.0.img) > > I guess you mean pcpbackupv3.21.img? So with such a backup I'm sure that I can always return to pCP 3.21 including my favs, plugins, etc.? Cause I thought those files were on my Raspberry Pi... *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl I have been working on this all the morning and I'm pleased to say I have cracked it. I have seen references from people who save their "pref" file and reinstate it on a new version of LMS, but no definitive guide on how to do it. So I have been hacking about with WinScp and after a few failures, finally got it to work It's a bit clunky and belt and braces (I have no doubt there is a better, command line, way to do it) but it seems to work. If you are willing to take the risk, pm me an e-mail address and I'll send a guide with some screen shots (after lunch) . If you can follow the guide and it works, then I'll later put up a "how to" on the forum. ronnie Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > > > I'm working up some test command fort LMS to check whether flac & sox > are working correctly. This will enable to say whether problem is > transcoding failing or sending transcoded data. Thank you. Seriously, I think youve done enough! Its a weird problem for sure, but (for me at least) its about 3 albums out of about 3000. Ill downgrade back to 6.0.0 if I need to. amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
dej...@kraanendejong.nl wrote: > Just copy the whole SD card in Windows? This is how I make a copy of a SD card using Windows Windows use Win32Disk Imager https://win32diskimager.org/ I offer a couple of tips for the latter: 1) Create an empty folder on the Desktop (or wherever you want to save the file) 2) Append the .img suffix to the file name when entering it into the appropiate box (eg pcpbackupv6.1.0.img) 3) Tick the box marked "Read Only Allocated Partitions" this will give the smallest image possible 4) Read the "ReadMe" of the download and run it as "as Administrator" ronnie Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
amey01 wrote: > Done - but where do I find it? Not sure on pcp. Normally it is output on command line. Check PCP command lie otpions and see if there is something there about logging. > > FLAC: 1.3.2-5 > SOX: 14.4.1-5 > I didn't think the LMS version had a "-5". What is the banner message of the flac. Note it says "patched for LMS" Code: flac - Command-line FLAC encoder/decoder version 1.3.2 Copyright (C) 2000-2009 Josh Coalson Copyright (C) 2011-2016 Xiph.Org Foundation Patched for Logitech Media Server: This version of flac operates exclusively in the 'C' locale. In particular, '--skip' and '--until' mm:ss.ss specifications require a '.' as decimal separator. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. I'm working up some test command fort LMS to check whether flac & sox are working correctly. This will enable to say whether problem is transcoding failing or sending transcoded data. bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Paul Webster wrote: > I assume that trying to do an in-situ update from pCP 3 to pCP 6 is not > going to work - so needs a new and empty SD card. > > If the network mounted partition is working from pCP 3 and you can write > to that partition then I think it will work if you select that partition > and choose Move. > Then you would stop that system (proper close down) and run the new pCP > with the fresh SD card ... and then configure that pCP to use the > network partition for LMS data ... (make backups first) and then use the > same trick in reverse to Move the data to the local partition on the SD > card. > Running LMS using a network mounted drive for its Cache might work > (could be issues with how it accesses content within files) but even if > it worked it would probably slow down LMS - hence the suggestion to move > it back afterwards. You're right, insitu didn't work. I understand what you mean. So I guess it's important first to check whether the change to the network mounted partition will work in pCP 3. How do I do that? Just click 'Network' and then change something in my favs or playlists? Second question is how to make a backup. Just copy the whole SD card in Windows? *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
bpa wrote: > OK things a lot clearer now. Different h/w in each player as well as > different pcp version. > My "gut" feel is the problem is not 6.0 and 6.1 per se. > Need to check if there is any significant difference in terms of > reporting to LMS the player capabilities (it might explain the use of > sox) > Can you run each player with the "-d slimproto=info" command line > option. This will generate a "sendHELO" message where the player > repaorts back to LMS its capabilties which are used in transcoding. > Example > > Code: > > > [08:53:25.576517] sendHELO:144 cap: Model=squeezelite,AccuratePlayPoints=1,HasDigitalOut=1,HasPolarityInversion=1,Firmware=v1.9.8-1287,ModelName=SqueezeLite,MaxSampleRate=384000,aac,ogg,ogf,flc,aif,pcm,mp3,loc > > > > > Done - but where do I find it? > > > What is the full version of LMS not just 8.0.0 but also the build date > ? > It's the one from the release repo - Logitech Media Server Version: 8.0.0 - 1605892076 @ Fri Nov 20 21:29:02 CET 2020 > > What is the version of flac and sox ? FLAC: 1.3.2-5 SOX: 14.4.1-5 amey01's Profile: http://forums.slimdevices.com/member.php?userid=11274 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
I assume that trying to do an in-situ update from pCP 3 to pCP 6 is not going to work - so needs a new and empty SD card. If the network mounted partition is working from pCP 3 and you can write to that partition then I think it will work if you select that partition and choose Move. Then you would stop that system (proper close down) and run the new pCP with the fresh SD card ... and then configure that pCP to use the network partition for LMS data ... (make backups first) and then use the same trick in reverse to Move the data to the local partition on the SD card. Running LMS using a network mounted drive for its Cache might work (could be issues with how it accesses content within files) but even if it worked it would probably slow down LMS - hence the suggestion to move it back afterwards. Paul Webster http://dabdig.blogspot.com author of \"now playing\" plugins covering radio france (fip etc), kcrw, supla finland, abc australia, cbc/radio-canada and rte ireland Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Man in a van wrote: > I would leave it where it is. > > Is this because you are having trouble making a copy of your favourites > folder? > > ronnie yes, I found my folder via WinSCP but don't know how to copy *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
I would leave it where it is. Is this because you are having trouble making a copy of your favourites folder? ronnie Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
The handling of streaming MP4 (i.e. AAC in MPEG-4) is a new chunk of code in LMS. When processing MPEG-4, the audio data atom could be one chunk (if not in streamed format) which has to be broken up into smaller ADTS frames which are then passed to player or faad. I'm not sure how the Tidal audio data is sent but if the audio data atoms are handled in large chunks - it would explain increased memory usage. Also the addition of MP4 handling code carries the risk of a memory leak somewhere. However most of the code is not brand new but ported over from other plugins. bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113321 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] PCP 6.1.0 - Issue with .cue. (LMS 8.0)
OK things a lot clearer now. Different h/w in each player as well as different pcp version. My "gut" feel is the problem is not 6.0 and 6.1 per se. Need to check if there is any significant difference in terms of reporting to LMS the player capabilities (it might explain the use of sox) Can you run each player with the "-d slimproto=info" command line option. This will generate a "sendHELO" message where the player repaorts back to LMS its capabilties which are used in transcoding. Example Code: [08:53:25.576517] sendHELO:144 cap: Model=squeezelite,AccuratePlayPoints=1,HasDigitalOut=1,HasPolarityInversion=1,Firmware=v1.9.8-1287,ModelName=SqueezeLite,MaxSampleRate=384000,aac,ogg,ogf,flc,aif,pcm,mp3,loc What is the full version of LMS not just 8.0.0 but also the build date ? What is the version of flac and sox ? bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113308 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
[SlimDevices: Unix] How to copy LMS data when upgrading to 6.0?
Hi all, I use LMS 7.9.3 on pCP 3.21. Because I had problems with upgrading to LMS 8.0, I first created a fresh image of pCP 6.0 on a new SD-card (thanks to help on the LMS-forum). On that new card I can work with LMS 8.0 but all my prefs, plugins, favourites of my old LMS are gone. Luckily I can put my old SD-card in pi so I can use my old LMS 7.9.3. In my old pCP 3.21 I can see a button to move my LMS Data but when I click that nothing happens. Or do I need to change the mount to Network? 32345 +---+ |Filename: afbeelding_2020-11-28_095255.png | |Download: http://forums.slimdevices.com/attachment.php?attachmentid=32345| +---+ *Storage* - QNAP TS269pro *Server* - LMS 7.9.3 - Raspberry Pi3 - piCorePlayer v3.21 *Living *- Receiver/Duet - Dynaudio Xeo 5 *Kitchen *- Squeezebox Radio *Bathroom *- Squeezebox Radio *Study *- Receiver/Duet - Yamaha Pianocraft RXE-600 dej...@kraanendejong.nl's Profile: http://forums.slimdevices.com/member.php?userid=64803 View this thread: http://forums.slimdevices.com/showthread.php?t=113323 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Announce: Squeezelite - a small headless squeezeplay emulator for linux (alsa only)
Hi there. Another comment to the soundforge squeezelite packages and the LocalPlayer plugin sources issue. I just stepped over the LMS 3rd party binary section over at github https://github.com/Logitech/slimserver-vendor/tree/public/8.0/sox You basically find all sources, libraries (tar-balled!). patches and build scripts associated to the binaries. Looks rather OK to me. And that's basically how I'd expected it to find also for squeezelite. We'd IMO need a similar structure for squeezelite for the soundforge and for the LocalPlayer packages. If soundforge gets properly updated with sources/build scripts and patches, ... we could use the entire package easily to migrate it into the LocalPlayer Plugin. We'd also had to adapt the license terms for the LocalPlayer Plugin I'd guess, since Ralphy ( as owner of the soundforge squeezelite packages) would be in charge for the squeezelite binaries and sources. LocalPlayer still refers to Triode. Not sure if this should also be adapted at one point in time. Cheers :::' my audioblog - latest series: RaspBerry PI - \"The Audio Engine\" ' (http://soundcheck-audio.blogspot.com)::: soundcheck's Profile: http://forums.slimdevices.com/member.php?userid=34383 View this thread: http://forums.slimdevices.com/showthread.php?t=97046 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Overlay for DAC audiophonics i-sabre ES9023 in PcP 6.0.0?
Thanks so much for PcP 7!!! The Audiophonics ISabre Q2M is working properly in PcP 7.0. It recognizes the DAC immediately. dmesg: [5.174481] snd-rpi-i-sabre-q2m soc:sound: Audiophonics Device ID : 01 [5.174983] snd-rpi-i-sabre-q2m soc:sound: Audiophonics API revision : 02 [5.175370] snd-rpi-i-sabre-q2m soc:sound: i-sabre-codec-i2c.1-0048 <-> fe203000.i2s mapping ok [5.175378] snd-rpi-i-sabre-q2m soc:sound: ASoC: no DMI vendor name! tc@pCP:~$ aplay -l List of PLAYBACK Hardware Devices card 0: b1 [bcm2835 HDMI 1], device 0: bcm2835 HDMI 1 [bcm2835 HDMI 1] Subdevices: 4/4 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 Subdevice #2: subdevice #2 Subdevice #3: subdevice #3 card 1: Headphones [bcm2835 Headphones], device 0: bcm2835 Headphones [bcm2835 Headphones] Subdevices: 4/4 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 Subdevice #2: subdevice #2 Subdevice #3: subdevice #3 card 2: DAC [I-Sabre Q2M DAC], device 0: I-Sabre Q2M DAC i-sabre-codec-i2c.1-0048-0 [I-Sabre Q2M DAC i-sabre-codec-i2c.1-0048-0] Subdevices: 0/1 Subdevice #0: subdevice #0 tc@pCP:~$ amixer -c2 scontrols Simple mixer control 'I2S/SPDIF Select',0 Simple mixer control 'Digital',0 Simple mixer control 'FIR Filter Type',0 I entered "Digital" in the ALSA volume control field and the ES9038 volume is working fine. The only thing I have left to do for this DAC board is getting the IR and second OLED display functioning but I am having grief installing rpi-gpio with python3.8 Patrick pmendiuk's Profile: http://forums.slimdevices.com/member.php?userid=62342 View this thread: http://forums.slimdevices.com/showthread.php?t=111835 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] AUDIOPHONICS RASPDAC MINI Kit
Hi, I am trying to get another OLED script running on PcP 7 with python3.8. I get an error running req.pip with setup.py install for RPI.GPIO: ERROR: Command errored out with exit status 1: /usr/local/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-zzs1y9mi/rpi-gpio/setup.py'"'"'; __file__='"'"'/tmp/pip-install-zzs1y9mi/rpi-gpio/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"','"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"' ))' install --record /tmp/pip-record-76gpux7w/install-record.txt --single-version-externally-managed --prefix /tmp/raspdacmini-deps/usr/local --compile --install-headers tmp/raspdacmini-/local/include/python3.8/RPI.GPIO Check the logs for full command output. Has anybody successfully installed rpi-gpio in PcP 7 with python3.8? pmendiuk's Profile: http://forums.slimdevices.com/member.php?userid=62342 View this thread: http://forums.slimdevices.com/showthread.php?t=112288 ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix
Re: [SlimDevices: Unix] Memory Leak in Perl Engine on piCorePlayer?
For a few days, now, I have been running a piCorePlayer 6.1.0 with LMS on a Pi 4 B with 2G of memory. I mainly use the Pi to transcode AAC streams from Tidal. There are no additional plug-ins installed. I observe the following behaviour: After the LMS is started, it will run without complaints for about a day, and then the connected players will suddenly start to re-buffer all the time and eventually stop playing altogether. First of all: LMS will grow in memory consumption over the first time of use, as more dependencies get initialized, data gets cached etc. 200MB isn't unusual if the DB memory cache is set to hight or max (which is by default on a 2GB system). out of memory: Mem: 536364K used, 1417988K free, 21760K shrd, 31656K buff, 210196K cached Don't know why you'd say "out of memory", when almost 1.5GB are still free? The Perl process is constantly growing from 100m to about 200m. The faad and flac processes run with 5404 and 2780 k of memory consistently all day until the re-buffering starts. Would these be the same processes over a long period of time, are these new processes for each track played? -- Michael ___ unix mailing list unix@lists.slimdevices.com http://lists.slimdevices.com/mailman/listinfo/unix