Announcement

Collapse
No announcement yet.

Adding new meters to Picoreplayer

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adding new meters to Picoreplayer

    Hello all other than doing a image swap with one of the meters which already come with Picoreplayer is there a way to add new meters and have them show up within the browser control panel to swap ?

    #2
    Each meter is packaged in its own extension.

    Comment


      #3
      Here's an excerpt from the scripts I use to build the VU meter extensions
      Code:
      EXTNAME=VU_Meter_Logitech_White                                                                      
                                                                                                  
      mkdir -p jivelite-build/opt/jivelite/share/jive/applets/JogglerSkin/images/UNOFFICIAL/VUMeter  
      
      cp -p vu_analog_25seq_w.png jivelite-build/opt/jivelite/share/jive/applets/JogglerSkin/images/UNOFFICIAL/VUMeter   
      
      mksquashfs jivelite-build ${EXTNAME}.tcz -all-root -no-progress                                
      
      md5sum ${EXTNAME}.tcz > ${EXTNAME}.tcz.md5.txt                                                 
      
      cd jivelite-build                                                                              
      find * -not -type d > ../${EXTNAME}.tcz.list                                                   
      cd ..                                                                                          
                                                                                                     
      if [ -d jivelite-build ]; then                                                                 
              rm -rf jivelite-build                                                                  
      else                                                                                           
              exit # since something bad likely happened.                                            
      fi
      Here's the associated .info file for the white extension. Also attached.
      Code:
      Title:		VU_Meter_Logitech_White.tcz
      Description:	Community squeezebox controller.
      Version:        8.0.0
      Commit:		b4aff097e3a3ee1769087771215637a4562d0cbf
      Authors:        Adrian Smith, Ralph Irving, Michael Herger
      Original-site:	[url]https://github.com/ralph-irving/jivelite.git[/url]
      Copying-policy:	GPLv3
      Size:		393216
      Extension_by:	piCorePlayer team: [url]https://www.picoreplayer.org[/url]
                      Compiled for piCore 13.x
      Edit: The extensions need to start with VU_Meter_ for them to be presented in the VU meter selector of the webadmin.
      Attached Files
      Last edited by ralphy; 2022-12-30, 12:19. Reason: Simplified cp command
      Ralphy

      1-Touch, 5-Classics, 3-Booms, 2-UE Radio
      Squeezebox client builds donations always appreciated.

      Comment


        #4
        Cheers both for the info but think my couple of brain cells would go into overload trying to work that one out so will stick to a image swap for now

        Comment

        Working...
        X