MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-MplayerRadio

    Scheduled Pinned Locked Moved Entertainment
    46 Posts 7 Posters 15.2k Views 8 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • wishmaster270W Online
      wishmaster270 Module Developer @electros
      last edited by

      @electros
      mplayer -cache 256 -playlist PLAYLISTFILE

      I will try to reduce the flickering but I don’t think this will stop the problem of your stations not being played.
      I spent the last hour to read more about Xmms2. I don’t think that I can implement an easy way to switch between the two players. One of the main problems is that Xmms2 does not provide the current stream info of the station.

      E 1 Reply Last reply Reply Quote 0
      • E Offline
        electros Project Sponsor @wishmaster270
        last edited by

        @wishmaster270 yes i know that about xmms2 but my stations don’t provide that info anyway.
        Thanks for your time, if is not pssible that it. Thank you

        1 Reply Last reply Reply Quote 0
        • wishmaster270W Online
          wishmaster270 Module Developer
          last edited by

          Hi,

          gave it a new try today. But i can`t get xmms2 to run on my pi. Looks like the xmms alsa plugin has some problems with my HifiBerry.
          Also tried omxplayer but it has problems with internet streams.

          E 2 Replies Last reply Reply Quote 0
          • E Offline
            electros Project Sponsor @wishmaster270
            last edited by

            @wishmaster270 Thank you for you still trying

            1 Reply Last reply Reply Quote 0
            • E Offline
              electros Project Sponsor @wishmaster270
              last edited by

              @wishmaster270 I installed xmms2 from " Synaptic Package Manager" and I must install all xmms2 related audio plugins before this to work. So maybe this is reason for no work.
              In another way can you please show me how I can run a xxx.sh file local instead of a web link when I chose a radio station ?

              1 Reply Last reply Reply Quote 0
              • wishmaster270W Online
                wishmaster270 Module Developer
                last edited by

                Hi,

                my problem is that i messed up my audio configuration as i tried to configure pulseaudio to make it possible to play music either on my local HifiBerry speakers or on a bluetooth speaker.
                Mplayer still works fine but i can`t get any sound from xmms2.
                The other problem is that there are a lot of known problems of xmms2 but xmms2 is dead since 2017.
                Thats why i tried omxplayer which is still maintained.

                Currently the module supports local playlist files but not calling any other player. You can change the binary that is called but it still sets the args as mplayer will need it.

                E 1 Reply Last reply Reply Quote 0
                • E Offline
                  electros Project Sponsor @wishmaster270
                  last edited by

                  @wishmaster270 Ok, I find a easy way to play a web radio with xmms2 player from a executable .sh file for that I ask you to tell me how I can run that file from your module. Now is not working my radios with mplayer.

                  1 Reply Last reply Reply Quote 0
                  • wishmaster270W Online
                    wishmaster270 Module Developer
                    last edited by

                    It pushed a new development version to the repo.
                    You can change to it if you do the following commands:

                    cd ~/MagicMirror/modules/MMM-MplayerRadio
                    git checkout development
                    git pull
                    

                    In the new version you can add “customCommand” and “customCommandArgs” to either the whole module or to every station.
                    You then can use any script you like to play either all stations (by passing the url to it) or a special script for each station.

                    Example:

                    		{
                    			module: "MMM-MplayerRadio",
                    			header: "Radio",
                    			position: "top_center",
                    			config: {
                    				customCommand: "/home/pi/doSomething.bash",
                    				customCommandArgs: ["one", "two", "###URL###"],
                    				stations: [
                    					{
                    						title: "Antenne.de",
                    						url: "http://www.surfmusik.de/m3u/antenne-bayern,922.m3u",
                    						logo: "https://upload.wikimedia.org/wikipedia/commons/a/ac/Antenne-bayern-logo.png",
                    						customCommand: "/home/pi/doSomethingElse.bash",
                    						customCommandArgs: ["one", "###URL###", "three"],
                    					},
                    				],
                    			},
                    		},
                    

                    In this example for all stations the script “/home/pi/doSomething.bash one two http://…” is called.
                    But “Antenne.de” uses the script “/home/pi/doSomethingElse.bash” with different args.

                    The only condition the customCommand-Script needs to meet is that it stays active as long as the station is running and stops the playback if it gets killed.

                    E 1 Reply Last reply Reply Quote 0
                    • E Offline
                      electros Project Sponsor @wishmaster270
                      last edited by electros

                      @wishmaster270 Now if I put this in the config file:

                      {
                      			module: "MMM-MplayerRadio",
                      			header: "Radio",
                      			position: "top_center",
                      			config: {
                      				customCommand: "",
                      				customCommandArgs: ["", "", ""],
                      				stations: [
                      					{
                      						title: "KissFM",
                      						url: "",
                      						logo: "https://upload.wikimedia.org/wikipedia/ro/8/86/Logo_Kiss_FM.png",
                      						customCommand: "/home/pi/MagicMirror/modules/MMM-MplayerRadio/scripts/KissFM.sh",
                      						customCommandArgs: ["", "", ""],
                      					},
                      				],
                      			},
                      		},
                      

                      and this in KissFM.sh

                      #!/bin/bash
                      
                          xmms2 stop
                      
                         xmms2 clear
                        
                       
                      xmms2 add https://live.kissfm.ro/kissfm.aacp
                      
                        xmms2 play 
                      

                      it’s working when i want to start radio but nothing happens when i touch the stop button just a short flickering of your module(I use a 10" touchescreen).
                      Thank you.

                      1 Reply Last reply Reply Quote 0
                      • wishmaster270W Online
                        wishmaster270 Module Developer
                        last edited by

                        Hi,

                        as i wrote in the documentation you need to make sure that your script runs as long as the station is active and needs to stop the playback if it gets a kill signal.
                        Maybe i will find a short tutorial about catching the kill signal.

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 3 / 5
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy