Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread paul-


Okay, the config is good, and the kernel is running would be 32bit.  
Confirm by running uname -a from command line.   I suspect you are
looking at the reported arch by lms on the information page.  That arch
is actually not real for the runtime, but the arch of the compile
machine that built Perl..even though it was built 32bit.

My build machine is a PI4 4gb running pCP.  will update my Perl build
script to run in a setarch wrapper, so the compiled configuration
properly reflects armhf.  I should have realized the problem, as I just
chased how that is reported on my Ubuntu machine.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread Howard Passman


Just to clarify, I have loaded 6.0 b6. I should be able to update to b7
on my RPI 3b.

Thanks again,

Howard




paul- wrote: 
> I updated the OP to clarify.  B1 to B7 upgrade is a whole different
> problem.B1 was a very early release, and was thrown together really
> quick.   B7 should boot fine on any PI.



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread mherger


paul- wrote: 
> A pi3b/b+ should be using the armv7 kernel.   Can you check your
> config.txt and post it?
> 
> As for the spotty helper?   Are you supplying a static binary?  If so
> aarch64 should not be a problem.  Otherwise how does Perl identify the
> arch?   Can we wrap slimserver.pl  with setarch?

No, it's not a static binary for ARM. I had one for a while, but it
recently caused more problems than the dynamically linked version.

Wouldn't there be a way to get the config.txt from the web UI? I didn't
find it...


Code:

# For more options and information see
  # http://rpf.io/configtxt
  # Some settings may impact device functionality. See link above for details
  
  [PI0]
  initramfs pcp_10.2.gz followkernel
  kernel kernel41980.img
  
  [PI1]
  initramfs pcp_10.2.gz followkernel
  kernel kernel41980.img
  
  [PI2]
  initramfs pcp_10.2v7.gz followkernel
  kernel kernel41980v7.img
  
  [PI3]
  initramfs pcp_10.2v7.gz followkernel
  kernel kernel41980v7.img
  
  [PI4]
  arm_64bit=1
  initramfs pcp_10.2v8.gz followkernel
  kernel kernel41980v8.img
  
  [ALL]
  
  cmdline cmdline.txt
  
  # uncomment if you get no picture on HDMI for a default "safe" mode
  #hdmi_safe=1
  
  # uncomment this if your display has a black border of unused pixels visible
  # and your display can output without overscan
  #disable_overscan=1
  
  # uncomment the following to adjust overscan. Use positive numbers if console
  # goes off screen, and negative if there is too much border
  #overscan_left=16
  #overscan_right=16
  #overscan_top=16
  #overscan_bottom=16
  
  # uncomment to force a console size. By default it will be display's size 
minus
  # overscan.
  #framebuffer_width=1280
  #framebuffer_height=720
  
  # uncomment if hdmi display is not detected and composite is being output
  
  # uncomment to force a specific HDMI mode (this will force VGA)
  #hdmi_group=1
  #hdmi_mode=1
  
  # uncomment to force a HDMI mode rather than DVI. This can make audio work in
  # DMT (computer monitor) modes
  
  # uncomment to increase signal to HDMI, if you have interference, blanking, or
  # no display
  #config_hdmi_boost=4
  
  # uncomment for composite PAL
  #sdtv_mode=2
  
  #
  dtparam=i2c_arm=on,spi=on,i2s=on
  
  #---pCP--
  # pCP does not use graphics chip by default, free up most memory
  gpu_mem=16
  initial_turbo=60
  disable_pvt=1
  
  # onboard audio overlay
  dtparam=audio=on
  audio_pwm_mode=2
  
  #Disable Bluetooth on both rpi3 and rpi0W
  dtoverlay=disable-bt
  
  # uncomment to overclock the arm. 700 MHz is the default.
  #arm_freq=
  #gpu_freq=
  #core_freq=
  #sdram_freq=
  #over_voltage=
  #force_turbo=
  
  # Force max current to USB
  max_usb_current=1
  
  # Remove audio hiss
  # disable_audio_dither=1
  
  #If booting from USB or network, enable this option to reduce CPU load 
looking for a non-existing card.
  #dtoverlay=sdtweak,poll_once
  
  # Screen rotation 0 => 0 degrees, 2 => 180 degrees
  lcd_rotate=2
  
  #Custom Configuration Area, for config settings that are not managed by pCP.
  #pCP will retain these settings during insitu-update
  #---Begin-Custom-(Do not alter Begin or End Tags)-
  #---End-Custom
  




Michael

http://www.herger.net/slim-plugins - Spotty, MusicArtistInfo

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread paul-


Howard Passman wrote: 
> On the download page it states that there is no 32 bit kernel in b7. Of
> course I tried to update from b1 to b7 twice before I read that :-)
> 

I updated the OP to clarify.  B1 to B7 upgrade is a whole different
problem.B1 was a very early release, and was thrown together really
quick.   B7 should boot fine on any PI.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread paul-


A pi3b/b+ should be using the armv7 kernel.   Can you check your
config.txt and post it?

As for the spotty helper?   Are you supplying a static binary?  If so
aarch64 should not be a problem.  Otherwise how does Perl identify the
arch?   Can we wrap slimserver.pl  with setarch?



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread Howard Passman


I have b1 so I fresh installed that and then did an insitu update to B7.
It wouldn't boot after that and I don't have a screen to see what is
happening. I did find that I have a b5 version so I am running that and
it works fine and gives me what I wanted.

Thanks,

Howard


kmccourt wrote: 
> 32 bit support has been removed from the Pi4 so it's now only 64bit; in
> earlier betas both options were available for the Pi4.
> 
> I'm running b7 on a B+, 2B and 3B. I'm not sure there was an update path
> from b1 to b7 apart from fresh install.



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread kmccourt


Howard Passman wrote: 
> On the download page it states that there is no 32 bit kernel in b7. Of
> course I tried to update from b1 to b7 twice before I read that :-)
> 
> Thanks,
> 
> Howard

32 bit support has been removed from the Pi4 so it's now only 64bit; in
earlier betas both options were available for the Pi4.

I'm running b7 on a B+, 2B and 3B. I'm not sure there was an update path
from b1 to b7 apart from fresh install.



kmccourt's Profile: http://forums.slimdevices.com/member.php?userid=3815
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread Howard Passman


On the download page it states that there is no 32 bit kernel in b7. Of
course I tried to update from b1 to b7 twice before I read that :-)

Thanks,

Howard


kmccourt wrote: 
> b7 has 32 bit kernels for the Pi models earlier than the Pi4.



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-20 Thread kmccourt


Howard Passman wrote: 
> Sorry, I totally forgot to state I am using this on a RPI B3. That i why
> I am looking for the 32bit kernel. I've been loading B1 on it and all is
> well, but I would like to take advantage of the Bluetooth changes of B6.
> B7 works great on my PI4
> 
> Howard

b7 has 32 bit kernels for the Pi models earlier than the Pi4.



kmccourt's Profile: http://forums.slimdevices.com/member.php?userid=3815
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Howard Passman


Sorry, I totally forgot to state I am using this on a RPI B3. That i why
I am looking for the 32bit kernel. I've been loading B1 on it and all is
well, but I would like to take advantage of the Bluetooth changes of B6.
B7 works great on my PI4

Howard


Howard Passman wrote: 
> What is used for 32bit relative to 6.0? I was hoping to upgrade the
> Bluetooth.
> 
> Thanks,
> 
> Howard



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Michael Herger

BT should work just fine in b7 with the 64 bit kernel.   The only thing
that is 64 bit is the kernel.  All userspace is still 32bit.   The main
reason for migrating to 64 bit kernel is the memory management on the
4GB board.   Unless there is a compelling reason, i'm not going to
maintain the 32bit kernel on the pi4 for times sake.


What got me confused a bit is that pCP 6 would report the arch as 
aarch64 even on a Pi 3B. Is this expected to be so? And is all userspace 
code expected to still work as before (the reason I was investigating 
this was a Spotty issue, which does run an external helper application).


--

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread paul-


BT should work just fine in b7 with the 64 bit kernel.   The only thing
that is 64 bit is the kernel.  All userspace is still 32bit.   The main
reason for migrating to 64 bit kernel is the memory management on the
4GB board.   Unless there is a compelling reason, i'm not going to
maintain the 32bit kernel on the pi4 for times sake.  The extra
maintenance time is not worth it.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Howard Passman


kidstypike wrote: 
> b7 replaces b6  -
> https://forums.slimdevices.com/showthread.php?110727-BETA-piCorePlayer6-0-0-PI4-support

What is used for 32bit relative to 6.0? I was hoping to upgrade the
Bluetooth.

Thanks,

Howard



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread kidstypike


Howard Passman wrote: 
> I've looked a bit and I may be blind, but could someone point me to the
> download for Where do I find the download of pCP 6.0.0-b6?
> 
> Thanks,
> 
> Howard

b7 replaces b6  -
https://forums.slimdevices.com/showthread.php?110727-BETA-piCorePlayer6-0-0-PI4-support



*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b7 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Man in a van


Howard Passman wrote: 
> I've looked a bit and I may be blind, but could someone point me to the
> download for Where do I find the download of pCP 6.0.0-b6?
> 
> Thanks,
> 
> Howard


https://forums.slimdevices.com/showthread.php?110727-BETA-piCorePlayer6-0-0-PI4-support



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Howard Passman


I've looked a bit and I may be blind, but could someone point me to the
download for Where do I find the download of pCP 6.0.0-b6?

Thanks,

Howard



Howard Passman's Profile: http://forums.slimdevices.com/member.php?userid=16674
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Gerhardc


Thanks for fast response. I have succesfull  installed InLine USB
Bluetooth 4.0 Adapter on Raspi 4B.



1x Picoreplayer with Hifiberry DAC/ADC, 3x Picoreplayer with Jivelite 7"
Display und IQaudio DigiAmp+, 4x Picoreplayer wiith 7"Display and
Audiophonics Sabre DAC, 2 Picoreplayer 6 b on RPI4 and LMS ,  Marantz
PM-15S1 amplifier

Gerhardc's Profile: http://forums.slimdevices.com/member.php?userid=9800
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread paul-

Yes,  disable the onboard Bluetooth,  and a USB dongle should work fine.
I’ve used two different ones without issue, you do need to make sure
they are supported by linux.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-19 Thread Gerhardc


My RPI4 is housed in an metall case with other components. The RPI4B
onboard Bluetooth works only on short distance (1-2 Meter). Is there a
possibilty to use an USB bluetooth Donglel instead of the Raspi's on
board Bluetooth?



1x Picoreplayer with Hifiberry DAC, 3x Picoreplayer with Jivelite 7"
Display und IQaudio DigiAmp+, 4x Picoreplayer wiith 7"Display and
Audiophonics Sabre DAC, 1 Picoreplayer and LMS 7.9.2,  Marantz PM-15S1
amplifier

Gerhardc's Profile: http://forums.slimdevices.com/member.php?userid=9800
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread paul-


Think I got it this time Ronnie.  Missing an * globbing all of the 4B
cards.

As for the network, most of the time I get an address in about 3 or 4
seconds, but Occasionally when swapping SD cards in the same board, it
causes the DHCP server to delay.   Not having a network address does
indeed cause problems.  On the WIFI page, there is a setting to increase
the wait for network delay.  (It's on the wifi, since that's were we see
the problem the most, but it will also set the wait delay for ethernet)



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread Man in a van


The previous post was from the SD card with the image that does not load
ALSA.

Here is the same pi, with the image made from a fresh download of the
beta7. Squeezelite works fine on this.

Here is the Boot log, with no IP address:


Code:

Starting piCorePlayer v6.0.0-b7 startup...
  Checking for boot files on mmcblk0p1...
  Trying to mount /dev/mmcblk0p1.
  ssh file found on mmcblk0p1.
  newpcp.cfg not found on mmcblk0p1.
  Setting default piCorePlayer repository...
  Generating sound card drop-down list...
  Loading configuration file... Done.
  Loading pcp-lms-functions... Done.
  Waiting for soundcard IQaudIODAC to populate. Done (1).
  Waiting for network... No 
network found! Done (52).
  Checking for PCM input card... Done.
  Starting Openssh server... Done.
  Starting Squeezelite and/or Shairport-sync...
  [ INFO ] Starting Squeezelite player: Squeezelite...
  Done.
  Auto set timezone settings, can be updated on tweaks page...
  There was a problem reaching sites for automatic timezone, please set 
manually on tweaks page.
  Starting httpd web server... Done.
  Setting CPU scaling governor to ondemand... Done.
  Creating static footer... Done.
  
  Finished piCorePlayer v6.0.0-b7 startup.
  
  To setup piCorePlayer, use the web interface via a browser:
  
  Press [Enter] to access console.
  
  In the background, ntpd is syncing time between piCorePlayer and the internet.
  A large offset between 1970 and now is normal.



Also note the timezone has not loaded (I have also seen this before).

pCP v5 I don't recall seeing these differences :)



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread Man in a van

paul- wrote: 
> What pi are you using?  Can you get me your revision code?  It’s on the
> Diagnostics / Raspberry Pi page.
> 
> As for the network address, you dhcp server is taking a long time to
> respond.is that normal for you?   The Wait for network is timing out
> 
> Thanks for the update report,  I’ll check it again.

Hi Paul

Re the Network address yes, that's normal for me, sometimes it shows and
sometimes it doesn't.

28582

ronnie


+---+
|Filename: arevisionnumberpcp.png   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=28582|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread paul-

What pi are you using?  Can you get me your revision code?  It’s on the
Diagnostics / Raspberry Pi page.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread Man in a van


Downloaded the new beta image and the install proceed without any
problems.

Sound card present on boot.


Code:

Starting piCorePlayer v6.0.0-b7 startup...
  Checking for boot files on mmcblk0p1...
  Trying to mount /dev/mmcblk0p1.
  ssh file found on mmcblk0p1.
  newpcp.cfg not found on mmcblk0p1.
  Setting default piCorePlayer repository...
  Generating sound card drop-down list...
  Loading configuration file... Done.
  Loading pcp-lms-functions... Done.
  Waiting for soundcard IQaudIODAC to populate. Done (1).
  Waiting for network... No 
network found! Done (52).
  Checking for PCM input card... Done.
  Starting Openssh server... Done.
  Starting Squeezelite and/or Shairport-sync...
  [ INFO ] Starting Squeezelite player: Squeezelite...
  Done.
  Auto set timezone settings, can be updated on tweaks page...
  There was a problem reaching sites for automatic timezone, please set 
manually on tweaks page.
  Starting httpd web server... Done.
  Setting CPU scaling governor to ondemand... Done.
  Creating static footer... Done.
  
  Finished piCorePlayer v6.0.0-b7 startup.
  
  To setup piCorePlayer, use the web interface via a browser:
  
  Press [Enter] to access console.
  
  In the background, ntpd is syncing time between piCorePlayer and the internet.
  A large offset between 1970 and now is normal.
  



Note:

The IP address of the pi is often missing from the boot print out

and I still needed to use the beta tab for the full list of sound cards.

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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-17 Thread Man in a van


Tried to update a rpi4b (32bit kernel) this Sunday morning.

The update failed:


Code:

[ INFO ] You are currently using piCorePlayer6.0.0-b6
  [ INFO ] Boot partition size required: 62000. Boot partition size is: 131072
  [ INFO ] Space required for update and extensions: 12000k
  [  OK  ] Free space: 35732k - Required space: 12000k
  [ INFO ] You are downloading piCorePlayer6.0.0-b7
  [ INFO ] PCP_DL=/10.x/armv7/tcz
  [  OK  ] Free space: 35732k - Required space: 12472k
  [ INFO ] Step 3A. Downloading new kernel modules: alsa-modules net-usb 
wireless
  [ INFO ] Downloading: alsa-modules-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: alsa-modules-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading alsa-modules-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension alsa-modules-4.19.80-pcpCore_v8.tcz...in 5 
seconds.
  [ INFO ] Downloading: alsa-modules-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: alsa-modules-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading alsa-modules-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension alsa-modules-4.19.80-pcpCore_v8.tcz...in 5 
seconds.
  [ INFO ] Downloading: alsa-modules-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: alsa-modules-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading alsa-modules-4.19.80-pcpCore_v8.tcz.
  [ ERROR ] Max retries reached.
  [ INFO ] Downloading: net-usb-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: net-usb-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading net-usb-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension net-usb-4.19.80-pcpCore_v8.tcz...in 5 seconds.
  [ INFO ] Downloading: net-usb-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: net-usb-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading net-usb-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension net-usb-4.19.80-pcpCore_v8.tcz...in 5 seconds.
  [ INFO ] Downloading: net-usb-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: net-usb-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading net-usb-4.19.80-pcpCore_v8.tcz.
  [ ERROR ] Max retries reached.
  [ INFO ] Downloading: wireless-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: wireless-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading wireless-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension wireless-4.19.80-pcpCore_v8.tcz...in 5 seconds.
  [ INFO ] Downloading: wireless-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: wireless-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading wireless-4.19.80-pcpCore_v8.tcz.
  [ INFO ] Retrying extension wireless-4.19.80-pcpCore_v8.tcz...in 5 seconds.
  [ INFO ] Downloading: wireless-4.19.80-pcpCore_v8.tcz
  [ INFO ] Checking MD5 of: wireless-4.19.80-pcpCore_v8.tcz.FAIL
  [ ERROR ] There was a error downloading wireless-4.19.80-pcpCore_v8.tcz.
  [ ERROR ] Max retries reached.



I update the kernel on the card and the update suceeded but no sound
card was found.


Code:

Log from Boot after insitu upgrade
  No sound card found
  
  Starting piCorePlayer v6.0.0-b7 startup...
  Checking for boot files on mmcblk0p1...
  Trying to mount /dev/mmcblk0p1.
  ssh file found on mmcblk0p1.
  newpcp.cfg not found on mmcblk0p1.
  Setting default piCorePlayer repository...
  Generating sound card drop-down list...
  Loading configuration file... Done.
  Loading pcp-lms-functions... Done.
  cat: can't open '/proc/asound/cards': No such file or directory
  Waiting for soundcard ALSA to populate.aplay: device_list:272: no soundcards 
found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  .aplay: device_list:272: no soundcards found...
  

Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread kidstypike


paul- wrote: 
> Update would not be totally effective until after the reboot.   That was
> the first page that appears when you press "Update pCP" Correct?

Yes, exactly! ;)



*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread paul-


Update would not be totally effective until after the reboot.   That was
the first page that appears when you press "Update pCP" Correct?



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread kidstypike


paul- wrote: 
> Pretty sure that was fixed in this version..,

So . . . it probably showed before the b7 update took effect?



*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread paul-


Pretty sure that was fixed in this version..,



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread kidstypike


paul- wrote: 
> Just pushed up b7, main thing with this release is added a mirror repo
> (sourceforge) for downloading packages.   See 'OP.'
> (https://forums.slimdevices.com/showthread.php?110727-BETA-piCorePlayer6-0-0-PI4-support=944664=1#post944664)
> 
> This will likely be the last beta, and will move to full release.

Thanks Paul, P4 updated to b7, tabs at bottom of page seem fixed.

Just one thing noticed this last couple of updates - the warning during
update (light skin) is unreadable.

28569


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


*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-16 Thread paul-


Just pushed up b7, main thing with this release is added a mirror repo
(sourceforge) for downloading packages.   See 'OP.'
(https://forums.slimdevices.com/showthread.php?110727-BETA-piCorePlayer6-0-0-PI4-support=944664=1#post944664)

This will likely be the last beta, and will move to full release.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-13 Thread oetbyg


paul- wrote: 
>  ... The only way to get true trouble free WiFi and Bluetooth, is to use
> a 5Ghz WiFi channel.
Thanks. I turned off wifi as a wired connection is available. Now all is
well.



oetbyg's Profile: http://forums.slimdevices.com/member.php?userid=69215
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-12 Thread paul-


The only difference is in bluetooth is the front end software.   Bluez,
and bluealsa are identical between 5 and 6.  Are you running WiFi.   The
only way to get true trouble free WiFi and Bluetooth, is to use a 5Ghz
WiFi channel.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-12 Thread oetbyg


Grasping at straws here. I have a Pi 3B+ which I had used with pCP 5.0
reasonably successfully with a UE BOOM 2 speaker.

Now with 6.0 I find that the speaker cuts out, presumably from weak
signal, in places it worked very well before.

Is it possible the BT power is lower in 6? 

All else here has remained the same - location of Pi, power supply, no
new impediments to the signal path etc., but I can't get the speaker to
work where it used to.

Thanks...



oetbyg's Profile: http://forums.slimdevices.com/member.php?userid=69215
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-10 Thread cobrasu


Pi 4 4GB,USB DSD DAC ESS9038Pro+Amanero combo 384 with picoreplayer
6.0.0 beta6 works well,the audio quality is better than my pi 3B,micro
SD boot is no problem but USB flash drive and USB SSD HDD.



cobrasu's Profile: http://forums.slimdevices.com/member.php?userid=67858
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-09 Thread ralphy


eliottinthesky wrote: 
> I want to get mono on my left chanel

Adding the following to the end of /etc/asound.conf would create two new
output devices called left and right which downmix stereo to mono.

You will need to adjust the hw:0,0 to hw:1,0 depending on the location
of your DAC as Paul has already outlined.  Don't forget to backup your
configuraton before you reboot otherwise the changes will be lost.


Code:

pcm.left {
  type plug;
  slave.pcm "hw:0,0"
ttable {
0.1 0
0.0 1
1.0 1
1.1 0
}
  }
  
  pcm.right {
  type plug;
  slave.pcm "hw:0,0"
ttable {
0.1 1
0.0 0
1.0 0
1.1 1
}
  }
  



Then configure squeezelite output device to left.  You can even run a
second mono instance of squeezelite to the other output device right.

28499

I use 'these test files'
(http://www.aoakley.com/articles/2018-08-24-stereo-test.php) to confirm
that the left and right channels are downmixed correctly.

Add this link using the TuneIn URL in LMS. 
Code:

http://www.aoakley.com/articles/stereo-test.mp3



+---+
|Filename: out.png  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=28499|
+---+


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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-09 Thread paul-


eliottinthesky wrote: 
> I want to get mono on my left chanel
> 
> -> Does Mono option apply Mono (left + right) on each chanel ? Do i
> change the volume of right chanel ?
> 
> -> What is swap option ? just invert left and right ?
> 
> -> And what is the other option (hw hw plughw, card 0 1) 
> 
> thx by advance !
> 

Mono mixes both channels into one, but not sure if it comes out left or
right or both.
Likely you want to run plughw

Card 0 is the onboard rpi audio, card 1 is your i2s dac.   If you
disable the onboard audio, then you i2s card will be card 0.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-09 Thread ian_heys


paul- wrote: 
> With upgraded firmware, the heat is better on the PI4, but I still
> wouldn't put it in a sealed case, it needs some sort of ventilation

Thanks Paul,

Guess I'll put it on the back burner for the time being as the only
problem I have is slow samba transfers from my ripping pc.

Ian



*Music Store & VPN Server: *Synology DS215J NAS*
Home Server/Study Player:* LMS 7.9.2 on Pi 3B piCorePlayer v5.0
Server/USB Audio, Topping VX2 Amplifier
*Refurbished 1962 RCA Stereo Console Server/Player *LMS 7.9.2 on Pi 3B
piCorePlayer 5.0 Server/IQ Audio DAC+ Temple Audio One Amp
*Homeplug/LAN Players: *Squeezelite on 2x  Windows 10 PC's,
*VPN Mobile & Car Player:* SqueezeControl/SqueezePlayer on Android Phone

ian_heys's Profile: http://forums.slimdevices.com/member.php?userid=2629
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread eliottinthesky


What's the difference between Mono and Swap ? What do i choose to get
the best quality on the left chanel (left + right)

28498


+---+
|Filename: Capture dcran 2019-11-09  03.05.05.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=28498|
+---+


eliottinthesky's Profile: http://forums.slimdevices.com/member.php?userid=69366
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread eliottinthesky


paul- wrote: 
> No nano is not installed.   vi is there.  You can add nano from the
> extensions page.
> 
> If you just want mono.   You should be able to do that in the
> Extras|asound Tab, but that is a beta function


i'm sorry but where is "Extras|asound Tab"



eliottinthesky's Profile: http://forums.slimdevices.com/member.php?userid=69366
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread paul-


No nano is not installed.   vi is there.  You can add nano from the
extensions page.

If you just want mono.   You should be able to do that in the
Extras|asound Tab, but that is a beta function



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread eliottinthesky


Could you define "little playing", because when i try to start Alsamixer
on my rpi zero (ssh connection and mac terminal) it return this :


Code:

tc@piCorePlayerSdBbas:~$ alsamixer
  Error opening terminal: xterm-256color.
  tc@piCorePlayerSdBbas:~$ 




eliottinthesky's Profile: http://forums.slimdevices.com/member.php?userid=69366
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread paul-


Mono output requires a little playing with the alsa asound setup.  There
is no difference between pCP 5.0.0 and pCP 6.0.0-beta



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread eliottinthesky


Hi, is Beta the only solution to had Mono output ?

Pi Zero W
JustBoom Amp zezo



eliottinthesky's Profile: http://forums.slimdevices.com/member.php?userid=69366
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-08 Thread paul-


With upgraded firmware, the heat is better on the PI4, but I still
wouldn't put it in a sealed case, it needs some sort of ventilation



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-07 Thread ian_heys

Man in a van wrote: 
> Ian, I loaded up an IQAudio DAC+ onto a rpi4b (4gb).
> 
> ronnie

Thanks for this Ronnie. I haven't bought a pi 4 yet I thought I would
leave it a month or so and then upgrade.

If IQAudio haven't come up with a case by then I may buy something like
the Pimoroni case with GPIO exposed and some sort of mechanical support
of the external DAC and SSD drive.

Incidentally I noticed your .DSF test tracks which play on the DAC+ as
you know.

I had a couple of the 2L Test tracks too including the Hoff Ensemble.
I've now got into SACD ripping through a second hand Sony Blu Ray
(£30.00) and some of the results are quite brilliant. The Analogue
Productions SACD's of Nat King Cole are excellent if not almighty
expensive and illusive.

Cheers
Ian



*Music Store & VPN Server: *Synology DS215J NAS*
Home Server/Study Player:* LMS 7.9.2 on Pi 3B piCorePlayer v5.0
Server/USB Audio, Topping VX2 Amplifier
*Refurbished 1962 RCA Stereo Console Server/Player *LMS 7.9.2 on Pi 3B
piCorePlayer 5.0 Server/IQ Audio DAC+ Temple Audio One Amp
*Homeplug/LAN Players: *Squeezelite on 2x  Windows 10 PC's,
*VPN Mobile & Car Player:* SqueezeControl/SqueezePlayer on Android Phone

ian_heys's Profile: http://forums.slimdevices.com/member.php?userid=2629
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-07 Thread Man in a van


ian_heys wrote: 
> Has anyone used pCP 6.0.0 with an on board DAC. I was thinking in
> particular about the heat issues.
> 
> I have a remote (from my router/NAS/Home PC) player/server using pCp
> 5.01 with an IQAudio DAC+ and a SSD music drive attached by USB 2.0.
> 
> This works really well including playing  a growing number of .DSF files
> which are starting to  have a place in my collection.
> 
> Updating the SSD music drive via samba is woefully slow due to USB2.0,
> the shared bus and in a small part due to the homeplug "500 MBpS"
> network between the NAS/Router/Home PC and the Server Player.
> 
> I would like to upgrade the player/server to pCp 6.0.0 but a couple of
> issues present themselves:
> 
> 1. All cases seem to be for the Pi4 only.
> 
> 2. Would I need a GPIO extender cable and some offset nuts and bolts to
> attach the DAC to obviate any heat issues
> 
> Has anyone any experience?
> 
> Edit: IQAudio advise they are working on a case, but they haven't been
> happy with prototypes so far because of the heat issues.



Ian, I loaded up an IQAudio DAC+ onto a rpi4b (4gb).

It has pcp installed (running the default 32 bit kernel)


Code:

piCorePlayer v6.0.0-b6 | linux 4.19.80-pcpCore_v7l | piCore v10.2pCP | 
Squeezelite v1.9.6-1198-pCP



I started playing "Stones in the Road".

I turned the pi on its long edge, with the audio outputs on the top. 

The temperature bumped along at 51/52C.

At halfway through the album playback I returned it to the horizontal
position

The temperature averaged 55/56C


Added a gpio extender between the board and the dac.

I repeated the test with another album (Fat City).

The recorded temeratures were much the same.

Hope this is helpful

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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-07 Thread ralphy


Paul Webster wrote: 
> Try this ... it worked for me ... add it to your list of Repos in
> LMS/Settings/Plugins
> Then go back to your pCP JiveLite and Settings/Avanced/Install Applets
> (or similar)
> 
> http://www.dabdig.co.uk/slimserver-rep/AlbumFlowpcp-repo.xml
> 
> If it does not work I suggest starting a new thread since it is not
> really related to pCP 6 Beta

Thanks for doing this Paul.



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread ian_heys


Has anyone used pCP 6.0.0 with an on board DAC. I was thinking in
particular about the heat issues.

I have a remote (from my router/NAS/Home PC) player/server using pCp
5.01 with an IQAudio DAC+ and a SSD music drive attached by USB 2.0.

This works really well including playing  a growing number of .DSF files
which are starting to  have a place in my collection.

Updating the SSD music drive via samba is woefully slow due to USB2.0,
the shared bus and in a small part due to the homeplug "500 MBpS"
network between the NAS/Router/Home PC and the Server Player.

I would like to upgrade the player/server to pCp 6.0.0 but a couple of
issues present themselves:

1. All cases seem to be for the Pi4 only.

2. Would I need a GPIO extender cable and some offset nuts and bolts to
attach the DAC to obviate any heat issues

Has anyone any experience?



*Music Store & VPN Server: *Synology DS215J NAS*
Home Server/Study Player:* LMS 7.9.2 on Pi 3B piCorePlayer v5.0
Server/USB Audio, Topping VX2 Amplifier
*Refurbished 1962 RCA Stereo Console Server/Player *LMS 7.9.2 on Pi 3B
piCorePlayer 5.0 Server/IQ Audio DAC+ Temple Audio One Amp
*Homeplug/LAN Players: *Squeezelite on 2x  Windows 10 PC's,
*VPN Mobile & Car Player:* SqueezeControl/SqueezePlayer on Android Phone

ian_heys's Profile: http://forums.slimdevices.com/member.php?userid=2629
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread DomieMic65


Well  I don't know if something has changed from yesterday but after
I did an update today (not a full update i did the other day)
Squeezelite updated to 1.9.6-1198-pCP
And DSDs play fine now... 
Excuse my "newbieness"!!

thank you



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread Paul Webster


Try this ...
http://www.dabdig.co.uk/slimserver-rep/AlbumFlowpcp-repo.xml

If it does not work I suggest starting a new thread since it



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread Paul Webster


... I tried but could not get the applet to appear in pCP Jivelite.
I created my own repo xml - made the change to the .lua file ... made a
new zip file ... sha value calculated and put in repo xml
Added repo xml to my local LMS

Restarted LMS and JiveLite just in case ... but am not being prompted to
install it.
I have not posted the link to my test repo xml because I don't want
people to try it if things not working.

I'll see if I can work out the problem - but maybe someone else will do
it before me.



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread DomieMic65


Paul Webster wrote: 
> The XML file that Ralphy referred to does not seem to be attached.
> Basically ... you need a web server where you can host an edited version
> of Erland's XML file.
> I expect that someone will do it for you soon.
Can't wait
Thank you!!!



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread Paul Webster


The XML file that Ralphy referred to does not seem to be attached.
Basically ... you need a web server where you can host an edited version
of Erland's XML file.
I expect that someone will do it for you soon.



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread DomieMic65


paul- wrote: 
> The DSD/DOP option will show up as long as the squeezelite binary that
> you are using has the DSD build option.
> 
> With pCP6.0.0-b6, you need at v1.9.6-1198-pCP (Which comes with the
> image).  Seems you got downgraded as I didn't update the main repos. 
> You should be able to run an update again and get back to 1198.

Thank you... how can I do it?
>From the pCp menu I have no updates shown...



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-06 Thread ralphy


kidstypike wrote: 
> Album flow is an Applet you can install on the Touch & Radio. (pic from
> Squeezeplay below). However, it doesn't appear in the applet list on
> pCP/Jivelite > Settings > Advanced > Applet Installer.
> 
> 28478

paul- wrote: 
> Might want to ask that in the jivelite thread.  It might have to be
> manually installed. (Like Custom Clock)

Erland's repo.xml file needs to have minTarget="0.1" instead of 7.4 for
the Album flow applet to be available for jivelite to install.

Alternately you could host the attached modified xml locally and add it
to the lms plugins url list.

You also need to be running a jivelite version that uses lua 5.1 (like
pcp), not the default luajit version and you'll need to make the
following change after install.

Code:

--- .jivelite/userpath/applets/AlbumFlow/AlbumFlowApplet.lua.orig   
2019-11-06 09:47:45.0 -0500
  +++ .jivelite/userpath/applets/AlbumFlow/AlbumFlowApplet.lua  2019-11-06 
09:58:29.0 -0500
  @@ -48,7 +48,7 @@
  
  local SocketHttp   = require("jive.net.SocketHttp")
  local RequestHttp  = require("jive.net.RequestHttp")
  -local json = require("json")
  +local json = require("cjson")
  
  local appletManager= appletManager
  local jiveMain = jiveMain
  



28487


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


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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread paul-


DomieMic65 wrote: 
> piCorePlayer v6.0.0-b6  
> Squeezelite v1.9.6-1194-pCP
> 

The DSD/DOP option will show up as long as the squeezelite binary that
you are using has the DSD build option.

With pCP6.0.0-b6, you need at v1.9.6-1198-pCP (Which comes with the
image).  I purposely did not push 1198 to the repo, since we needed to
make sure not to mess up 5.0.0 images.   So if you press the squeezelite
upgrade, you will actually downgrade to 1194.

Can you start with a fresh pCP6.0.0-b6 image and then test DSD?



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread paul-


camel wrote: 
> Hello Paul,
> 
> Is there a chance that you will implement a tweak option in a pCP Tweaks
> to selectively shutdown unused USB ports?
> 
> This could be useful as potentially it could increase sound quality.
> 
> Thanks in advance!

The biggest issue with this is that the procedure is different between
all pi devices (I'm not even sure how to do it on all pi boards).  And
most won't know which situations you can do this safely.  You can easily
run a script during boot, that would be the best way to handle this.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread camel


Hello Paul,

Is there a chance that you will implement a tweak option in a pCP Tweaks
to selectively shutdown unused USB ports?

This could be useful as potentially it could increase sound quality.

Thanks in advance!



camel's Profile: http://forums.slimdevices.com/member.php?userid=69523
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread DomieMic65


Man in a van wrote: 
> I made a fresh image, enabled the 64 bit kernel and booted my rpi4b
> (4gb).
> 
> I installed the pcp-dsdplay.tcz extension, Audio output setting is 
> 
> hw:CARD=Control,DEV=0
> 
> Squeezelite version at install
> Squeezelite v1.9.6-1198-pCP
> 
> DOP settings only appeared after I Ran Full Update for Squeezelite
> Squeezelite v1.9.6-1194-pCP.
> 
> I have three DSD files (just for testing)
> 
> The first did not play any sound, but the cursor moved
> 
> 28479
> 
> 
> The second played without a problem
> 
> 28480
> 
> The third did not play any sound and the cursor did not move
> 
> 28481
> 
> Hope this is useful.
> 
> I don't know if it needs moving to a new thread?
> 
> ronnie
> 
> The files are the same ones I used in the thread by ducktoller and all
> played without a problem.
I did all the above and I am still in Squeezelite v1.9.6-1194-pCP... No
updates showing!
In my first boot after burning the pCp in the new card I think that I
saw the DoP/DSD field but after a reboot while i was making all the
other settings disappeared... Very strange!!



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread Man in a van


DomieMic65 wrote: 
> piCorePlayer v6.0.0-b6  
> Squeezelite v1.9.6-1194-pCP
> 
> Yes I know that the DSD binary is removed I read it, but I get no sound
> when trying a DSD file. Actually the cursor doesn't move at all. Seems
> that the track loads but stays without reproduction of sound or the bar
> loading! The pcp-dsdplay.tcz extension should me installed yes?
> Actually i tried the rt-kernel "audio" version too even if i know that
> you do not suggest it but i was getting very serious dropouts. With the
> "normal" version all is OK except DSD. 
> Thank you!

I made a fresh image, enabled the 64 bit kernel and booted my rpi4b
(4gb).

I installed the pcp-dsdplay.tcz extension, Audio output setting is 

hw:CARD=Control,DEV=0

Squeezelite version at install
Squeezelite v1.9.6-1198-pCP

DOP settings only appeared after I Ran Full Update for Squeezelite
Squeezelite v1.9.6-1194-pCP.

I have three DSD files (just for testing)

The first did not play any sound, but the cursor moved

28479


The second played without a problem

28480

The third did not play any sound and the cursor did not move

28481

Hope this is useful.

I don't know if it needs moving to a new thread?

ronnie

The files are the same ones I used in the thread by ducktoller and all
played without a problem.


+---+
|Filename: does not play #2 no cursor movement.png  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=28481|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread nervoteso


paul- wrote: 
> You cannot install any apps other than what's available in LMS plugins. 
> But what are you looking for, you can browse by image art.

yes browse by image, i did not find it, i try to see this evening



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread DomieMic65


paul- wrote: 
> What version pCP and squeezelite are you running?   Look in the footer. 
> The latest beta 6, we removed the split DSD binary.   The DSD/DOP
> should be there by default now.

piCorePlayer v6.0.0-b6  
Squeezelite v1.9.6-1194-pCP

Yes I know that the DSD binary is removed I read it, but I get no sound
when trying a DSD file. Actually the cursor doesn't move at all. Seems
that the track loads but stays without reproduction of sound or the bar
loading! The pcp-dsdplay.tcz extension should me installed yes?
Actually i tried the rt-kernel "audio" version too even if i know that
you do not suggest it but i was getting very serious dropouts. With the
"normal" version all is OK except DSD. 
Thank you!



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-05 Thread paul-


Might want to ask that in the jivelite thread.  It might have to be
manually installed. (Like Custom Clock)



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread kidstypike


paul- wrote: 
> You cannot install any apps other than what's available in LMS plugins. 
> But what are you looking for, you can browse by image art.

Album flow is an Applet you can install on the Touch & Radio. (pic from
Squeezeplay below). However, it doesn't appear in the applet list on
pCP/Jivelite.

28478


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


*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread paul-


nervoteso wrote: 
> is there any chance to install album flow on pi display?

You cannot install any apps other than what's available in LMS plugins. 
But what are you looking for, you can browse by image art.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread paul-


DomieMic65 wrote: 
> Are there in this thread any pages about enabling dsd on pCp6.0.0?
> I use a RPi3B+/Khadas Tone Board for now!
> On pCp5.0.0 played just fine with "0:u32be" setting in the DSD/DoP field
> of Squeezelite settings but here there is no such field.
> 
> Thanx!!!
> Michael


What version pCP and squeezelite are you running?   Look in the footer. 
The latest beta 6, we removed the split DSD binary.   The DSD/DOP
should be there by default 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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread nervoteso


is there any chance to install album flow on pi display?



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread DomieMic65


Are there in this thread any pages about enabling dsd on pCp6.0.0?
I use a RPi3B+/Khadas Tone Board for now!
On pCp5.0.0 played just fine with "0:u32be" setting in the DSD/DoP field
of Squeezelite settings but here there is no such field.

Thanx!!!
Michael



Main system: Synology DS115j/RPi3b(LMS)/RPi3B+[LnrPS](piCore)/M2Tech
EvoDAC Two+[LnrPS]/Densen DM20&30/Spendor SP2/3E
Head-Fi: Schiit Vali2/Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

DomieMic65's Profile: http://forums.slimdevices.com/member.php?userid=69312
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread nervoteso


i notice when i come back home i'0ve to restart all the players to avoid
rebuffering issues.



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread nervoteso


Paul Webster wrote: 
> From JiveLite interface you should be able to Choose Player to pick
> which one you want it to control (and then it will show the Now Playing
> from that other player).

yes thanks. done.



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread kidstypike


Paul Webster wrote: 
> From JiveLite interface you should be able to Choose Player to pick
> which one you want it to control (and then it will show the Now Playing
> from that other player).

Exactly what I was thinking :)

28470

28471


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


*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread Paul Webster


>From JiveLite interface you should be able to Choose Player to pick
which one you want it to control (and then it will show the Now Playing
from that other player).



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread nervoteso


installed display. anyway, many rebuffering problems after picoreplayer
syncronization (i had to sync it cos otherwise display didn't show music
i was listening to)



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-04 Thread nervoteso


Man in a van wrote: 
> Read through this instead
> 
> http://archimago.blogspot.com/2017/03/howto-building-and-installing-raspberry.html

That's cool



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso

paul- wrote: 
> No, you cannot follow any instructions that use Raspbian.  Hardware
> connections are fine.  
> 
> I’m sure the download problem will resolve after the weekend is done.

ok many thanks.



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


Thanks for correcting me.  I was typing on my iPad at that
time..Siri never says what I mean :)



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread Man in a van


nervoteso wrote: 
> ok thanks.
> 
> any chance if i follow this?
> 
> https://www.instructables.com/id/Raspberry-Pi-Touchscreen-Setup/

Read through this instead

http://archimago.blogspot.com/2017/03/howto-building-and-installing-raspberry.html



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread kidstypike


paul- wrote: 
> No, you can follow any instructions that use Raspbian.  Hardware
> connections are fine.  
> 
> Im sure the download problem will resolve after the weekend is
> done.

I think @paul- means no, you *cannot* use these instruction to install
Jivelite.



*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-

No, you can follow any instructions that use Raspbian.  Hardware
connections are fine.  

I’m sure the download problem will resolve after the weekend is done.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


paul- wrote: 
> Just try occasionally from the interface to install Jivelite.  The
> ability to select/change mirrors is a significant code update and will
> not be in until the the next update.

ok thanks.

any chance if i follow this?

https://www.instructables.com/id/Raspberry-Pi-Touchscreen-Setup/



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


Just try occasionally from the interface to install Jivelite.  The
ability to select/change mirrors is a significant code update and will
not be in until the the next update.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


everything came back to work. hope it keeps.
please update me when it will be available on the interface the install
for display.
thanks for all the support

i forgot tio say you i also installed audioscrobbler plugin



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


paul- wrote: 
> Please keep a list of all the plugins that you install..you never
> gave us that list last time.  One of them is likely what caused your
> problems.  So install one at a time, and make sure everything is fine
> before installing the next one.

i installed spotty, youtube and bandcamp and it worked fine. then i
installed playlist manager and i began to gave issues



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


Please keep a list of all the plugins that you install..you never
gave us that list last time.  One of them is likely what caused your
problems.  So install one at a time, and make sure everything is fine
before installing the next one.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread Paul Webster


nervoteso wrote: 
> ok it's gone, it is looking for mujsic.
> 
> can i install spotty, youtube and bandcamp plugins?

Yes you can.
That is done from LMS web interface which knows nothing about the pCP
repository.



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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


kidstypike wrote: 
> @nervoteso 
> 
> I seem to recall you ordered a Flirc case for your Pi4?  I'm not sure
> how you're going to attach a 7" screen to your Pi when it's in that case
> :confused:
> 
> I use a Pi4 for LMS only (top line of my signature), and a separate
> Pi3B+ for player/controller (second line of my signature).

yes i placed the order of the case before discovering that wonderful
display;.)

it's veru useful to control players



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread kidstypike


@nervoteso 

I seem to recall you ordered a Flirc case for your Pi4?  I'm not sure
how you're going to attach a 7" screen to your Pi when it's in that case
:confused:

I use a Pi4 for LMS only (top line of my signature), and a separate
Pi3B+ for player/controller (second line of my signature).



*Server - LMS 7.9.2 *Pi4B 4GB/pCP 6.0.0-b6 18K library, playlists & LMS
cache on SSD (ntfs)
*Study -* Pi3B+/pCP 5.0.0/pi screen/HiFiBerry DAC+/jivelite,
*Lounge* - Pi2/pCP 5.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Dining Room* - Squeezebox Boom
*Garage* - Pi3B/Pi screen/HiFiBerry DAC+/pCP 5.0.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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


paul- wrote: 
> Leave the screen off for now, you never used it before.  Installing
> jivelite is a bit difficult to do manually.

are you going to make jivelite install available on the web interface
soon?



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


ok it's gone, it is looking for mujsic.

can i install spotty, youtube and bandcamp plugins?



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


paul- wrote: 
> Leave the screen off for now, you never used it before.  Installing
> jivelite is a bit difficult to do manually.

INFO ] Mount configuration changed for 192.168.1.2:/multimedia

[ INFO ] Checking new Mount Point /mnt/Music.

[ INFO ] Mounting Disk.

[INFO] mount -v -t cifs -o
username=admin,password=affebbeabb876,uid=1001,gid=50
//192.168.1.2/"multimedia" /mnt/Music
mount: //192.168.1.2/multimedia mounted on /mnt/Music.

[ INFO ] Disk Mounted Successfully.

[ INFO ] Backing up files to /mnt/mmcblk0p2/tce/mydata.tgz/- Done.

[ OK ] Backup successful.



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


Leave the screen off for now, you never used it before.  Installing
jivelite is a bit difficult to do manually.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


Thanks ronnie,  

We have been working on odd problems for several months, we just can pin
things down.  And about time we figure something out to open a ticket,
it starts working fine.   When working it is nice to have worldwide
servers to speed things up for users, but there is only so far we can go
with "Free" hosting tiers.

Paul



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread Man in a van


paul- wrote: 
> Well, it seems that there is no good solution for all.  We moved from
> sourceforge, as they had alot of problems for sometime, but I think that
> is mostly resolved. I'm going to setup a mirror repo back on
> sourceforge, see if that helps.  Here is a temporary instruction, let me
> know.  I can then make some changes to the web interface to allow easy
> selection.
> 
> 



Paul

I tried the install LMS button again about 1740 pm UK time but had the
same negative response.

Then tried the work-around and that did the job for me. 

Code:


  pcp-load -r http://picoreplayer.sourceforge.net/tcz_repo -w slimserver.tcz
  slimserver.tcz Dependancy Tested Ok
  slimserver-CPAN.tcz Dependancy Tested Ok
  [ INFO ] perl5.tcz.dep Downloaded.
  perl5.tcz Dependancy Tested Ok
  [ INFO ] gcc_libs.tcz.dep Downloaded.
  gcc_libs.tcz Dependancy Tested Ok
  openssl.tcz Dependancy Tested Ok
  [ INFO ] perl_io_socket_ssl.tcz.dep Downloaded.
  perl_io_socket_ssl.tcz Dependancy Tested Ok
  perl_crypt_openssl_rsa.tcz Dependancy Tested Ok
  perl_linux_inotify2.tcz Dependancy Tested Ok
  [ INFO ] Downloading: perl_io_socket_ssl.tcz
  Connecting to picoreplayer.sourceforge.net (216.105.38.10:80)
  perl_io_socket_ssl.t 100% 
|*|
  140k  0:00:00 ETA
  [ INFO ] Checking MD5 of: perl_io_socket_ssl.tcz.OK
  [ INFO ] Downloading: gcc_libs.tcz
  Connecting to picoreplayer.sourceforge.net (216.105.38.10:80)
  gcc_libs.tcz 100% 
|*|
  668k  0:00:00 ETA
  [ INFO ] Checking MD5 of: gcc_libs.tcz.OK
  [ INFO ] Downloading: perl5.tcz
  Connecting to picoreplayer.sourceforge.net (216.105.38.10:80)
  perl5.tcz100% 
|*|
 11.9M  0:00:00 ETA
  [ INFO ] Checking MD5 of: perl5.tcz.OK
  [ INFO ] Downloading: slimserver-CPAN.tcz
  Connecting to picoreplayer.sourceforge.net (216.105.38.10:80)
  slimserver-CPAN.tcz  100% 
|*|
 5532k  0:00:00 ETA
  [ INFO ] Checking MD5 of: slimserver-CPAN.tcz.OK
  [ INFO ] Downloading: slimserver.tcz
  Connecting to picoreplayer.sourceforge.net (216.105.38.10:80)
  slimserver.tcz   100% 
|*|
 19.8M  0:00:00 ETA
  [ INFO ] Checking MD5 of: slimserver.tcz.OK
  [ INFO ] All files tested good.
  



I changed the Autostart button to Yes but could not save the setting. I
clicked on Install LMS



Code:

[ INFO ] Downloading LMS...
  [ INFO ] slimserver is already downloaded.
  [ INFO ] All files tested good.
  [ INFO ] Installing LMS...
  [ INFO ] All files tested good.
  perl_common_sense.tcz: OK
  perl_linux_inotify2.tcz: OK
  perl_crypt_openssl_random.tcz: OK
  perl_crypt_openssl_bignum.tcz: OK
  perl_crypt_openssl_rsa.tcz: OK
  perl_mozilla_ca.tcz: OK
  perl_net_ssleay.tcz: OK
  perl_io_socket_ssl.tcz: OK
  gcc_libs.tcz: OK
  perl5.tcz: OK
  slimserver-CPAN.tcz: OK
  slimserver.tcz: OK
  [ INFO ] Backing up files to /mnt/mmcblk0p2/tce/mydata.tgz/-
  Done.
  [ OK ] Backup successful.
  





Start LMS button worked.

I have in the past experienced server timeouts  but this was the first
time with the new system. I'm using Google DNS on my router.

Hope this info is helpful.

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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


can i install jivelite before mounting disk?



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


nervoteso wrote: 
> ok thanks. the last time i did'nt add file system support. there is not
> track in the guide

Yes you did, you just forgot.  You would be unable to mount a network
drive without it.



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


paul- wrote: 
> If the filesystems doesn't download from the web interface either, you
> can grab this way
> 
> > 
Code:

  >   > pcp-load -r http://picoreplayer.sourceforge.net/tcz_repo -wi ntfs-3g.tcz

> > 

i use putty to add fs support?



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread nervoteso


Paul Webster wrote: 
> Don't forget to add in the extra file system support.
> 
> You can also do the rest but setting static IP address can sometimes be
> troublesome. Might be easier to reserve address in your router
> (especially if you have not set a reserved range for fixed Ip
> addresses).

ok thanks. the last time i did'nt add file system support. there is not
track in the guide



Touchx2,radiox4, Squeezebox Server 7.9 (Raspberrypi 3 and qnap ts-269)

nervoteso's Profile: http://forums.slimdevices.com/member.php?userid=30262
View this thread: http://forums.slimdevices.com/showthread.php?t=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread paul-


If the filesystems doesn't download from the web interface either, you
can grab this way

pcp-load -r http://picoreplayer.sourceforge.net/tcz_repo -wi ntfs-3g.tcz



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=U7JHY5WYHCNRU=GB_code=USD=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=110727

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


Re: [SlimDevices: Unix] BETA: piCorePlayer6.0.0 - PI4 support

2019-11-03 Thread Paul Webster


Don't forget to add in the extra file system support.

You can also do the rest but setting static IP address can sometimes be
troublesome. Might be easier to reserve address in your router
(especially if you have not set a reserved range for fixed Ip
addresses).



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=110727

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


<    4   5   6   7   8   9   10   11   12   13   >