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...
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...
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...
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()...
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...
I need to convert audio files to mp3 using ffmpeg. When I write the command as ffmpeg -i audio.ogg -acodec mp3 newfile.mp3, I get the error: FFmpeg version 0.5.2,...
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...
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...
I have an audio player than uses the following syntax to display its player: The thing is, I’m pretty sure I can show the user how to copy the...
I have an audio website and I want to allow users to make custom playlists from posts. I am using posts as Albums which contains the Tracks. I thought...