RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Background Music [Continued from Help/Support]

    Scheduled Pinned Locked Moved General Discussion and Gaming
    musicbgm
    343 Posts 109 Posters 325.7k Views
    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.
    • Z
      Zigurana
      last edited by

      Nice work!

      If tetris has thought me anything, it's that errors pile up and that accomplishments dissappear.

      1 Reply Last reply Reply Quote 1
      • R
        robertybob
        last edited by

        I look forward to testing this out!

        C 1 Reply Last reply Reply Quote 1
        • HoolyHooH
          HoolyHoo
          last edited by

          Great Work! Working beautifully. Only issue I had was that music would overlap with my video splash screen. Added a bash script to sleep 20 seconds before starting python script. Works like a charm. Looking forward to seeing complete script.

          L 1 Reply Last reply Reply Quote 2
          • L
            Livewire @HoolyHoo
            last edited by

            @HoolyHoo Never thought about that, I'll add a quick config option to the next version to have it snooze a bit in case someone else has a similar splash screen (mine doesn't have audio so needing the extra delay never crossed my mind).

            J 1 Reply Last reply Reply Quote 0
            • L
              Livewire
              last edited by Livewire

              Updated, added a link to 1.01. Same installation directions as before, new config options/functions:

              1. Proper Random - If there's 2 or more songs in the music folder, it will NOT play the same one twice in a row. May not be an issue for some, but it's saving me from actually hating Whitesnake's Still of the Night, which always seemed to play two or three times in a row before letting something else play.

              2. Delayed Start. Change startdelay to a value (in seconds) if you need the script to delay itself for some reason. At first this would have been for something like a video splash screen, but:

              3. Will not overrule OMXPlayer. I realized the same code I used to watch for EmulationStation to start could be used to make sure OMXPlayer was -not- running, so I added it. Behind the scenes, once ES is running, it runs one last check against all PID's to see if any are omxplayer or omxplayer.bin - if it finds one, it sleeps until it stops running, almost like an emulator. (For those who don't know, OMXPlayer is what the video splash screens play in - this means no more music over the top of your sweet splashes!)

              4. I also went through the wiki and added what should be all of the emulators to the internal emulator list. If anyone happens to find one that they use that the music doesn't shut up for, lemme know which emulator so I can figure out why it isn't detecting it.

              Honestly not sure what else to do with this script at this point. If anyone's got any ideas or runs into problems let me know, but otherwise this might actually be done :)

              N 1 Reply Last reply Reply Quote 1
              • HoolyHooH
                HoolyHoo
                last edited by

                Awesome! Not to be a pain but would it be possible to add the option of always starting with a particular mp3 when starting emulation station and then going random?

                1 Reply Last reply Reply Quote 0
                • Z
                  Zigurana
                  last edited by Zigurana

                  It's not over until the fat lady sings there is a wiki entry for it!

                  If tetris has thought me anything, it's that errors pile up and that accomplishments dissappear.

                  1 Reply Last reply Reply Quote 0
                  • HoolyHooH
                    HoolyHoo
                    last edited by

                    Just to add, was looking for a way to enable and disable the background music while in emulation station and creating a way for it to stick when rebooting. Don't know if there is a better way of doing it but I created two simple scripts . One that would kill the python background music and rewrite the rc.local file and the other that would start the python background script and rewrite the rc.local file. I then added those scripts to the retropie settings menu. Works well. Thanks again!

                    L 1 Reply Last reply Reply Quote 1
                    • L
                      Livewire @HoolyHoo
                      last edited by

                      @HoolyHoo I may have a slightly less hacky-way to put it together, I'll do some checking with it (theoretically we could just abuse os.path.exists as part of the loop, to see if a file "disablemusic" exists. The script would then just never play music as long as that file exists, and the shell scripts would just need to create and erase that specific file rather than editing rc.local).

                      I'm working on the quick fix for starting with one specific song now; I have it coded but I need to test it on the cab downstairs, assuming no problems I'll have it posted within 30 minutes.

                      1 Reply Last reply Reply Quote 0
                      • HoolyHooH
                        HoolyHoo
                        last edited by

                        Thanks @Livewire !

                        1 Reply Last reply Reply Quote 0
                        • L
                          Livewire
                          last edited by Livewire

                          Made it in JUST under 30 minutes (well, at least before I started typing my reply) :) 1.02's up:

                          1. /home/pi/PyScripts/DisableMusic . If this location exists (either as a folder, OR as a file), the script will cease to play music. Once found, it waits 15 seconds before checking again, so after removing that file it may take up to 15 seconds for the script to resume playing music. Did this mostly because if you're disabling music, you're probably disabling it for a while, not just for 2 or 3 seconds, so why check it every second.

                          2. startmusic="" (near the top of the script). Stick in the exact case-sensitive filename, and if that file is found in the bgm list, it will always play first when the script starts.

                          Invariably about 3 seconds after I posted it to pastebin I did notice that I have startmusic in the "#local variables" section instead of config; it's there, just go down a few lines :) Also, if you don't want it to check /home/pi/PyScripts/DisableMusic, such as if you have it in a different install location, the lines that check for that file are 66 and 70; make sure they match, but you can change them freely.

                          Z 1 Reply Last reply Reply Quote 1
                          • mikeM
                            mike
                            last edited by

                            Thanks for this script @Livewire . I've been playing around with it a bit today, works great.

                            I'm still very much a beginner with python and I'm a bit stuck finding a way to stop the music if I quit out of emulationstation.

                            At the moment the music still plays after ES has exited, I don't wan't to quit the script, just stop the music until ES starts again.

                            I'm trying to do a bit more reading to understand your code for myself but if you made another update could you add that feature?

                            thanks again

                            L 1 Reply Last reply Reply Quote 1
                            • L
                              Livewire @mike
                              last edited by

                              @mike I might not get a good chance to test it before tomorrow night but I should be able to do that, it's another use-case I didn't think of :)

                              1 Reply Last reply Reply Quote 0
                              • L
                                Livewire
                                last edited by

                                @mike Done, ended up having time to test before the weekly gamer meetup :) Added a few extra comments to (hopefully) help with dissecting the code as well.

                                Changes:

                                1. Just what Mike wanted; the music stops when ES is not running, and resumes within 10 seconds of it restarting.
                                2. I moved startsong up into the config section where it should have been, cause I'm a derp.
                                1 Reply Last reply Reply Quote 1
                                • mikeM
                                  mike
                                  last edited by

                                  That's great, thanks. The comments really help too.

                                  1 Reply Last reply Reply Quote 1
                                  • Z
                                    zerojay @Livewire
                                    last edited by

                                    @Livewire said in Background Music [Continued from Help/Support]:

                                    1. /home/pi/PyScripts/DisableMusic . If this location exists (either as a folder, OR as a file), the script will cease to play music. Once found, it waits 15 seconds before checking again, so after removing that file it may take up to 15 seconds for the script to resume playing music. Did this mostly because if you're disabling music, you're probably disabling it for a while, not just for 2 or 3 seconds, so why check it every second.

                                    This is a horrible idea. This means that if the file exists on an external hard drive, the hard drive will never spin down because it's constantly being accessed. This also bad if your pi does not have a constant power source.

                                    How about instead of looking for a file, it simply kills the script off and restarts it?

                                    1 Reply Last reply Reply Quote 0
                                    • L
                                      Livewire
                                      last edited by

                                      To be truly honest, that I'm not actually sure how to do (without running an entirely separate script I mean, since there's not really a way to have a python script kill and restart itself at a later time that I know of). If you've got it running on an external HDD, I'd recommend not using 1.03 then.

                                      1 Reply Last reply Reply Quote 0
                                      • H
                                        HaroldTemple
                                        last edited by

                                        Hi. My English is very bad. Could you make a video tutorial? In this way, we would see how to do it and we would see progress.

                                        1 Reply Last reply Reply Quote 0
                                        • H
                                          HaroldTemple
                                          last edited by

                                          I followed step by step and it does not work. Version 3.7 Retropie in a Raspberry 3b. .mp3 and .ogg files. A video tutorial clarify everything. Thank you.

                                          1 Reply Last reply Reply Quote 0
                                          • cyberneticwiredC
                                            cyberneticwired
                                            last edited by

                                            I tried as well to no avail.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.