How to make WordPress audio playlist understand the direct links of audio files shared on google drive?

this is my first post here and I excited! I used this approach to make a playlist with external links of audio files I have in my drive but unfortunately It couldn’t recognize the google drive direct link as a audio type file. Would you please guide me how I can solve this issue!? Thank … Read more

Audio Playlist : How to bind events for “track change”, “track end”?

I’m customizing native WordPress playlist echo do_shortcode(”); I’d like to bind events to detect “track change” and “track end” and do something when those events fired. So, I checked wp-playlist.js. I see some events but I have no idea how to bind it on a separate js file (jquery) events : { ‘click .wp-playlist-item’ : … Read more

Legacy Audio Shortcode

I have recently redone a site that was originally created in 2011. Of course there were a few big development issues and one of them is the usage of an old audio shortcode: I have not seen any documentation of the native WordPress audio shortcode ever using a colon. I have also not been able … Read more

How to get the ID of an item in an audio playlist?

I’m using wp_playlist_shortcode() to output an audio playlist. For example: echo wp_playlist_shortcode( array( ‘ids’ => $track_ids ) ); Thanks to the idea in answer 142974, I’m unhooking the wp_underscore_playlist_templates() function and using my own version prefix_wp_underscore_playlist_templates() so I can customise the output of playlist items. For example: add_action( ‘wp_playlist_scripts’, function() { remove_action( ‘wp_footer’, ‘wp_underscore_playlist_templates’, 0 … Read more

WordPress native “playlist” shortcode. Next and Prev there are but with no icons. How to fix?

If I use on my WordPress 4.0 the beautiful playlist shortcode I don’t see the famous “Next” and “Prev” icons, but only this code in my Html code: <div class=”wp-playlist-next”></div> and <div class=”wp-playlist-prev”></div> How to display icons to next and prev commands? 2 Answers 2 in stylesheet: .wp-playlist-prev{ width:20px; height:20px; background-image: url(“./theme_images_folder/something_icon.png”); } same for … Read more

What are the differences and similarities between ffmpeg, libav, and avconv?

When I run ffmpeg on Ubuntu, it shows: $ ffmpeg ffmpeg version v0.8, Copyright (c) 2000-2011 the Libav developers built on Feb 28 2012 13:27:36 with gcc 4.6.1 This program is not developed anymore and is only provided for compatibility. Use avconv instead (see Changelog for the list of incompatible changes). Or it shows (depending … Read more

Changing playlist shortcode thumbnail sizes?

I’m using do_shortcode() to display a custom WordPress audio playlist. By default the playlist will load cover art for each audio file (the attachment’s featured image) and change according to what track is currently being played. The thing is, by default it loads the 150px x 150px thumbnail, but I would like to load a … Read more