如何获取音频文件的播放次数

时间:2014-11-16 作者:henrywright

我的目标是获得监听的总数,因此我想我可以使用update_post_meta()

是否有每次播放音频文件时都会触发的挂钩?

Background: 我正在使用wp_audio_shortcode() 输出(mediaelement)播放器。

参考文献:

1 个回复
最合适的回答,由SO网友:bonger 整理而成

是的play 事件在上激发<audio> 元素,因此您可以将其作为目标,例如$(\'audio.wp-audio-shortcode\').on(\'play\', function (event) { //etc });. 还有许多其他活动可用,例如ended, playing, pause.

下面是我目前正在试用的一些代码,可能会对您有所帮助(在“functions.php”中):

add_action( \'wp_footer\', function () {
    ?>
    <script>
    jQuery(document).ready(function() {
        (function ($) {
            var srcs = []; // Array of sources already sent to cut down on posts to server.
            $(\'audio.wp-audio-shortcode, .wp-audio-playlist audio\').on(\'play\', function (event) {
                // this.src should be the url (guid) of the audio file
                if (this.src && $.inArray(this.src, srcs) === -1) {
                    srcs.push(this.src);
                    $.post( \'<?php echo admin_url( \'admin-ajax.php\' ); ?>\', {
                            action: \'wpse168584_audio_stats\',
                            guid: this.src.replace(/\\?.+$/, \'\'), // Remove any query vars.
                            nonce: \'<?php echo wp_create_nonce( \'wpse168584_audio_stats_\' ); ?>\'
                        }, null, \'json\'
                    );
                }
            });
        })(jQuery);
    });
    </script>
    <?php
} );
function wpse168584_audio_stats() {
    $ret = array( \'error\' => false );

    if ( ! check_ajax_referer( \'wpse168584_audio_stats_\', \'nonce\', false /*die*/ ) ) {
        $ret[\'error\'] = __( \'Permission error\', \'wpfm\' );
    } else {
        if ( ! isset( $_REQUEST[\'guid\'] ) || ! ( $guid = $_REQUEST[\'guid\'] ) ) {
            $ret[\'error\'] = __( \'Params error\', \'wpfm\' );
        } else {
            global $wpdb;
            $sql = $wpdb->prepare( \'SELECT ID FROM \' . $wpdb->posts . \' WHERE guid = %s LIMIT 1\', $guid );
            if ( $post_id = $wpdb->get_var( $sql ) ) {
                // Use hex format to save space, 8 bytes for IPv4, 32 for IPv6.
                $ip = bin2hex( inet_pton( preg_replace( \'/[^0-9a-fA-F:., ]/\', \'\', $_SERVER[\'REMOTE_ADDR\'] ) ) );
                if ( ! ( $meta = get_post_meta( $post_id, \'_wp_attachment_metadata\', true ) )
                || ! isset( $meta[\'plays_ips\'] )
                || ! in_array( $ip, $plays_ips = explode( \';\', $meta[\'plays_ips\'] ) ) ) {
                    $plays_ips[] = $ip;
                    // If data getting too big, drop off oldest ip (FIFO).
                    if ( strlen( $meta[\'play_ids\'] ) > 1000 ) array_shift( $plays_ips );
                    // Save as string to save space.
                    $meta[\'plays_ips\'] = implode( \';\', $plays_ips );
                    $meta[\'plays\'] = isset( $meta[\'plays\'] ) ? $meta[\'plays\'] + 1 : 1;
                    update_post_meta( $post_id, \'_wp_attachment_metadata\', $meta );
                }
            }
        }
    }

    wp_send_json( $ret );
}
add_action( \'wp_ajax_nopriv_wpse168584_audio_stats\', \'wpse168584_audio_stats\' );
add_action( \'wp_ajax_wpse168584_audio_stats\', \'wpse168584_audio_stats\' );
然后,要在进入管理并编辑音频项目时查看“播放”元数据(它显示在bitrate右上角的只读元数据框中):

add_filter( \'media_submitbox_misc_sections\', function ( $arr ) {
    $arr[\'plays\'] = __( \'Play Count:\' );
    return $arr;
} );

结束

相关推荐

Error Using Audio plugin

我已经安装了音频插件,以创建Xbrowser播放列表,但出现以下错误jPlayer 2.0.0 : id=\'jquery_jplayer_1\' : Error!到目前为止,我所做的只是创建一个新帖子,使用wordpress音频上传器将音频上传到帖子,使用以下短代码将播放列表添加到帖子,然后发布。[audio layout=\"list\"] 也尝试过[audio]但产生了同样的错误这些文件是。mp3格式,可以在其他播放器中播放。如果相关,该站点存储在本地。