Giantpaper.org

Tag: bandcamp

  • Diablo – Jo Blankenberg (Sirocco)

    Diablo – Jo Blankenberg (Sirocco)

    [bandcamp width=100% height=120 album=3286361806 size=large bgcol=ffffff linkcol=333333 tracklist=false artwork=small track=2015843621]

    https://joblankenburg.bandcamp.com/track/diablo


    Post federation: I’m adding the Bandcamp URLs underneath the embeds, since fediservices like Mastodon strip out iframes (which are used to do the embedding), and there doesn’t seem to be any way to extract the URL for the track from the iframe. Which means Mastodon users won’t be able to listen while still in Mastodon.

  • Bandcamp snippet for self-hosted WordPress sites

    Bandcamp snippet for self-hosted WordPress sites

    Git Update

    Ok, nevermind, it’s on Github. To download, you can clone it to your computer. Or if you’re not a Github user and don’t care about Github, go to the main repo page and click the big green Code button at the top right and Download ZIP File.

    Github options to download a repo

    Also, I made some big changes with how the parameters get plugged into the iframe (better flexibility, so issues like the one that happened today won’t happen), but does not change your usage of the shortcode. Just a heads up, if you’ve modified your version of the code.

    Update // 2021.09.30

    Fixed a bug with percentages as widths/heights—If you’re using a percentage as your width/height in your shortcode (ex. width=100%), it will output as width="100%px". Obviously not ideal, so this has been updated.

    Fixed a bug with different player sizes—For some reason, I didn’t think about the iframe’s src URL changing if you select a different player size (ex. size=small instead of size=large which is what I used for this snippet). So this takes into account the different player sizes, as well as artwork sizes.

    The lines that were updated were:

    • 13
    • 23-28
    • 31
    • 39

    (I may create a git repo for this, with all the changes.)

    Update // 2021.03.19:

    Just saw this post:

    bandcamp embed code not working — Apparently, the official method of adding Bandcamp support is to install the Jetpack plugin. 😬 If you’re already using it for other stuff, I’m sure it’s a great way to go. But I don’t want to install Jetpack just for that one embed code. Bleh. I’ll take my homebrewed method any day, thanks!

    Update // 2021.04.10

    Lighthouse yelled at me for not adding a title attribute to the iframe (for accessibility purposes). So I tweaked the code to allow a customizable title attribute. When you copy and paste your shortcode into WP, just add title="Your title" to the shortcode, obviously replacing “Your title” with the actual name of the album you’re embedding. In the case above, I changed the shortcode to:

    Be sure to enclose the attribute value with double quotes if there’s going to be a space, otherwise only the first word will be used for the title. So in this case:

    …only Cosmagora would be included in the title and everything else will be ignored.


    Original Post

    Apparently WordPress.com already has support for Bandcamp shortcodes. But what if you’re on a self-hosted WordPress site? You can create your own shortcode, using add_shortcode().

    Here’s what I have in my functions.php file:

    <?php
    
    add_shortcode('bandcamp', function($attr=[]){
        $attr = shortcode_atts([
            'width' => 350,
            'height' => 470,
            'album' => null,
            'title' => null,
            'size' => 'large',
            'bgcol' => 'ffffff',
            'url' => null,
            'linkcol' => '0687f5',
            'tracklist' => 'false',
            'title' => null,
            'artwork' => null,
        ], $attr);
    
        extract($attr);
    
        if ($album == null)
            return false;
    
        if ( preg_match("#^[0-9]+$#", $width) ) {
            $width = $width.'px';
        }
        if ( preg_match("#^[0-9]+$#", $height) ) {
            $height = $height.'px';
        }
    
        // the embed code itself
        $iframe = sprintf('<iframe style="border: 0; width: %s; height: %s;" src="https://bandcamp.com/EmbeddedPlayer/album=%s/size=%s/bgcol=%s/linkcol=%s/tracklist=%s/transparent=true/artwork=%s/" title="%s" seamless></iframe>',
    	$width,
    	$height,
            $album,
            $size,
            $bgcol,
            $linkcol,
            $tracklist,
            $artwork,
            $title,
        );
    
        // if your site uses Gutenberg
        // this is veerrrry....sloppily creating your own block
        return '<figure class="wp-block-embed-bandcamp wp-block-embed is-type-audio is-provider-bandcamp wp-embed-aspect-16-9 wp-has-aspect-ratio js">' . '<div class="wp-block-embed__wrapper">' . $iframe . '</div>' . '</figure>';
    });

    The $iframe variable is the important part. Obviously, if you’re not using Gutenberg, you can just delete the entire return sprintf('<figure thing of code and end the entire function with return $iframe;

    (Yes, Gutenberg lets you easily add an HTML snippet, but it considers Bandcamp embed codes “invalid”. Uh huh.)

    Generating a Bandcamp shortcode

    Go the album you want to embed (we’ll use Cosmagora as an example). Under the album artwork, click Share / Embed, then Embed This Album.

    You’ll get a window showing the different player styles.

    You’ll get another window with options to customize your player further, along with the embed code.

    Two important things:

    • be sure to check wordpress.com in the top left, so it gives you the shortcode, rather than the HTML version
    • customizing it might add some HTML attributes not in the above PHP code. If that’s the case, you can add them through the shortcode_atts() function

    Aaaand that’s it! Happy Bandcamping!

    More info:

  • Jo Blankenburg – Cosmagora

    Jo Blankenburg – Cosmagora

    [bandcamp width=100% height=120 album=3452080076 size=large bgcol=333333 linkcol=4ec5ec tracklist=false artwork=small]