• Your audio player plugin is the best we’ve found – Kudos. However, one very useful feature that we’re guessing might be pretty straightforward to add (if not already there) is the ability to optionally show a Download Playlist button in the playlist header where we can set a custom url that points to, say, a zip file or some-such that contains the entire playlist.

    We’re ready to spring for the Pro version but this feature is critical for us.
    We want to use your plugin to host our audio teachings. The playlist for each teaching is broken into a large number of different tracks (lessons). For most people, it would make no sense to download only one track (lesson) at a time – they would want to download the entire teaching at once.

    We don’t see this option available in the free version of your plugin. Is it available in the Pro version? And if not, could you please add it? And if that’s not possible, Can you suggest another approach or plugin that can do that?

    I’m a coder, so not afraid if your suggestion involves a custom modification.

    kind regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter wykananda

    (@wykananda)

    A “page-specific script” like below seems to work but I think it would be a really nice and (not too difficult feature) to add and give it another little boost to being better than all the other audio player plugins ?? .

    jQuery(function () {
    	
    	//Generate button for playlist #1
    	jQuery("<button class='ai-playlist-download-btn ai-btn'>↓</button>").insertBefore(jQuery("#audioigniter-1406 .ai-tracklist-toggle"));
    	jQuery('#audioigniter-1406 .ai-playlist-download-btn').click(function() {
    		window.location = "https://download.org/playlist_tracks.zip";
    	});
    	
    	//...
    });
    Plugin Support Fotis

    (@markwaregr)

    Hi there,
    Thank you your feedback and suggestion!
    Your solution will work fine for now, but I am adding this in our request list for future plugin updates.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Album/Playlist download’ is closed to new replies.