首页 > 其他 > 详细

识别音乐绘制图像

时间:2019-03-02 10:47:35      阅读:175      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div id="waveform"></div>
</body>
<script src="../pixi/pixi.min.js"></script>
<script src="../pixi/pixi-spine.js"></script>
<script src="../pixi/pixi-sound.js"></script>
<script>
//  PIXI.sound.add(‘boing‘,{
    //     url: ‘static/assets/audios/Bg.mp3‘,
    //     preload: true,
    //     loaded: function(err, sound) {
    //         // const instance = sound.play();
    //         console.log(‘Duration: ‘, PIXI.sound.find(‘boing‘), ‘seconds‘);
    //         // instance.on(‘progress‘, function(progress) {
    //         //     console.log(‘Amount played: ‘, Math.round(progress * 100) + ‘%‘);
    //         // });
    //         // instance.on(‘end‘, function() {
    //         //     console.log(‘Sound finished playing‘);
    //         // });
    //     }
    // });


    window.waveform = new PIXI.Application({
        width:1024, 
        height:128,
        backgroundColor: 0xffffff
    });
    document.getElementById(‘waveform‘).appendChild(waveform.view);

    PIXI.loader.add(‘applause‘, ‘static/assets/audios/wrong.mp3‘)
    .load(function(loader, resources) {
        const sound = resources.applause.sound;
        console.log(PIXI.sound.utils.render)
        const baseTexture = PIXI.sound.utils.render(sound, {
            width: waveform.renderer.width,
            height: waveform.renderer.height,
            fill: ‘#990‘
        });
        const playhead = new PIXI.Graphics()
            .beginFill(0xff0000)
            .drawRect(0, 0, 1, waveform.renderer.height);
        const sprite = new PIXI.Sprite(
            new PIXI.Texture(baseTexture)
        );
        waveform.stage.addChild(sprite, playhead);
        sound.play().on(‘progress‘, function(value) {
            playhead.x = baseTexture.width * value;
            console.log(playhead.x)
        });
    });
</script>
</html>

  参考文档

https://github.com/pixijs/pixi-sound. 声音

https://www.bookstack.cn/read/LearningPixi/loading pixi中文翻译教程

https://github.com/kittykatattack/learningPixi 入门资料

识别音乐绘制图像

原文:https://www.cnblogs.com/yiyi17/p/10460040.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!