5 months later

Thanks for this extension, it's great! I'd like my users to be able to upload an MP3 using fof/upload and for the [play] BBcode to be added automatically - is this possible?

    4 days later

    si_edgey CyberGene

    Now that there are two requests for this I will try. At some point. It might be somewhat easy since the upload extension is also using BBCode.

      010101 I guess it can be a new template for the upload extension. For instance there’s a template for images that just wraps the URL with BBcode image tags. Maybe you can create one that wraps the URL with player tags. But not sure if this can be external to the upload extension or part of it…

      BTW, if you add new template in the upload extension, can you create two templates: one that shows a player only and what that also adds a download link like the standard templates? Because in my forum users would also like to download the audio files.

        CyberGene Something interesting. If you set the upload template to URL only, then my other inline audio extension would work, if the other bug found is fixed. This doesn't solve your download question.

          010101 yes, it is why I wanted to install the other one and set the template to only insert the raw URL and expected that it would automagically work but the upload disappeared and I couldn’t test it 😀

          But knowing my users, they will love the player but will ask for both player and a download link/button at the same time. I know I’m asking too much 🤣

            CyberGene

            I tried for many hours. So, I definitely tried... 😆 But, I keep getting errors when I try adding a template to the upload extension, through this extension.

            But, I have one solution for you. You can replace your Flarum installation's main extend.php code with the following:

            <?php
            
            use Flarum\Extend;
            use Flarum\Foundation\AbstractServiceProvider;
            use FoF\Upload\Contracts\Template;
            use FoF\Upload\File;
            use FoF\Upload\Helpers\Util;
            
            class AudioTemplate implements Template
            {
                public function tag(): string
                {
                    return 'audio';
                }
            
                public function name(): string
                {
                    return 'Audio template';
                }
            
                public function description(): string
                {
                    return 'Audio template to use with Essential Audio';
                }
            
                public function preview(File $file): string
                {
                    return '[play]' . $file->url . '[/play]';
                }
            }
            
            class AudioServiceProvider extends AbstractServiceProvider
            {
                public function register()
                {
                    $this->container->make(Util::class)->addRenderTemplate($this->container->make(AudioTemplate::class));
                }
            }
            
            return [
                (new Extend\ServiceProvider())
                    ->register(AudioServiceProvider::class),
            ];

            Now you can choose the audio template in the upload extension (with the right regular expression for audio files), and when an audio file is uploaded it will automatically have this Essential Audio extension's BBCode wrapped around the URL.

            For some reason I can only get it to work this way right now. And, no download option.

            At least you have some options now. Either do this, and/or use the updated Inline Audio player.

            010101 will this also allow for downloading the file? I'm pretty happy with the Inline Audio extension so far because it also allows for downloading the file which is important for our forum. If you can create a template for this extension that would both show the player, as well as offer download, then it would be even better. Why not just create a template that would insert two tags like this:

            [play]https://link.to/audio.mp3[/play]
            [Download audio file](https://link.to/audio.mp3)

              CyberGene Good idea. Not something I can do right now due to lack of time. But, a good idea for a future update.

              v1.1

              • Marked optional dependencies as optional in composer.json to prevent issues with deactivating certain extensions

              • Added player + download upload extension template

                • To do in future release, turn download link into the same download button other upload extension templates use - just ran out of time this morning but wanted to get this update out

              CyberGene

                010101 Can I use both this extension and the inline audio together? I would like raw audio URL-s to still be playable. The inline audio won't mess-up with the [play]...[/play] right? Since it will also contain an audio URL inside 🙂

                Well, this extension doesn't work, I'm on Safari for Mac and there's no player, just a link that says "refresh to see player" (or something like that). I refreshed it, cleaned cache, etc., but no player visible. I also disabled the inline player to make sure it's not messing up but it's still the same. Could this be a browser thing?

                  CyberGene Just stick with another extension. This may not work with the way certain forums are installed. Subdirectory vs. non-subdirectory installations. I just added this disclaimer to the first post. Sorry this one couldn’t work out for you!

                    010101 This is caused by your <script> tag using / for its asset URL. You can use app.forum.attribute('baseUrl') to get the base URL to the forum, and then append the path to it.

                    https://github.com/zerosonesfun/flarum-essential-audio/blob/dddc63725cb38586173133d545bb2e5bf7bdb774/js/src/forum/components/Audio.js#L12

                    The following should work (not tested):

                    <script
                        src={`${app.forum.attribute('baseUrl')}/assets/extensions/zerosonesfun-essential-audio/essential-audio.js`}
                    ></script>;

                      datitisev Thanks so much! Now I need to save this somewhere so I don't forget again. Because I think someone already told me this at one point.

                      v1.2

                      • Fix audio library's file path so that it works on both sub directory and non-sub directory Flarum installations (Thanks @datitisev)
                      • Add font awesome icons
                      • Fix download link template
                      • Make download link actually download file

                      @CyberGene (If you want to try once again. Should work now.)

                      Still one quirk. Although I attempted to add the proper Mithril "onupdate" code, the player will not fully load for the person posting until refreshed. One theory is the audio library, the way it is coded, it just can't do it.

                      But, for people thinking about using this, don't worry, users will not have to refresh all the time.

                      This is a short-lived phenomenon that happens upon posting/editing. And if it happens, you click the play button, the page quickly refreshes, then you play the audio. It's not too bad of an experience. Worth it if you like to minimal look of this player and fof upload integration.

                      I tested it but I have a new issue with it, the player appears but if I press the play button it just spins forever and doesn't start music. I guess it may have been because I also kept the Inline Audio extension because the download link then appeared with the little play button in front 😀

                      I think I prefer having the Essential Audio player (if it works) but also for it to automatically appear when raw URL-s are posted (like the Embedded Audio). So, for the moment I will stay with the Embedded Audio since I really like how compact and easy to use it is, also together with the FoF Upload without doing anything special. My dream would be for the Essential Audio to work like Embedded Audio - with raw URL-s.