plugin-icon

Speak Sound Library

제작자: vince.cimo·
Plugin for managing a library of sounds with simple frontend hooks.
버전
1.0.0
최근 업데이트일
Mar 12, 2015
Speak Sound Library

Speak Sound Library allows tight management and presentation of a music library. Users can import mp3’s into the system with an individual uploader or by recursively scanning a folder uploaded via ftp. Once scanned, the ID3 information is extracted out of the mp3 files and used to create a SQL entry. The resulting ‘posts’ are then organized and filterable by artist, genre, album, etc. Users can also attach additional meta-data, such as a youtube link to each song. This song data can be presented on the front-end using our plugin’s short code methods, which returns PHP objects, or using an ajax hook, which returns formatted JSON data. An example implementation (still beta), can be seen at http://www.speakstudioscoop.com/music.

Wiring up a Frontend Player

This plugin is merely a backend management system and can be extended using any type of front-end player. You can either use PHP hooks to prepare html, or use a jQuery ajax method, which returns sound data formatted in JSON.

This method will return a JSON string of all of the sounds in your library:

var data = { action: ‘get_songs’ };

jQuery.post(ajaxurl, data, function (response) { console.log(response); });

You can also filter by genre, album or artist (mutually exclusive), like this:

var data = { action: ‘get_songs’, albumFilter: ‘Dark Side of the Moon’, artistFilter: ‘Pink Floyd’, genreFilter: ‘Rock’ };

jQuery.post(ajaxurl, data, function (response) { console.log(response); });

Using PHP, you can retrieve sounds the same as you would any other post, just add ‘post_type’ => ‘sounds’ to your get_posts() query.

Enjoy 🙂

무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 4.1.42
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.