当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript PlayerCore.addSoundToQueue方法代码示例

本文整理汇总了TypeScript中web-audio-api-player.PlayerCore.addSoundToQueue方法的典型用法代码示例。如果您正苦于以下问题:TypeScript PlayerCore.addSoundToQueue方法的具体用法?TypeScript PlayerCore.addSoundToQueue怎么用?TypeScript PlayerCore.addSoundToQueue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在web-audio-api-player.PlayerCore的用法示例。


在下文中一共展示了PlayerCore.addSoundToQueue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: PlayerCore

$(function () {

    let options: ICoreOptions = {
        soundsBaseUrl: 'https://mp3l.jamendo.com/?trackid=',
        playingProgressIntervalTime: 500
    };

    let player = new PlayerCore(options);
    let playerUI = new PlayerUI(player);

    let firstSoundAttributes: ISoundAttributes = {
        sources: '1314412&format=mp31',
        id: 1314412,
        playlistId: 0,
        onLoading: (loadingProgress, maximumValue, currentValue) => {
            console.log('loading: ', loadingProgress, maximumValue, currentValue);
            playerUI.setLoadingProgress(loadingProgress);
        },
        onPlaying: (playingProgress, maximumValue, currentValue) => {
            console.log('playing: ', playingProgress, maximumValue, currentValue);
            playerUI.setPlayingProgress(playingProgress);
        },
        onStarted: (playTimeOffset) => {
            console.log('started', playTimeOffset);
        },
        onPaused: (playTimeOffset) => {
            console.log('paused', playTimeOffset);
        },
        onStopped: (playTimeOffset) => {
            console.log('stopped', playTimeOffset);
        },
        onResumed: (playTimeOffset) => {
            console.log('resumed', playTimeOffset);
        },
        onEnded: (willPlayNext) => {
            console.log('ended', willPlayNext);
            if (!willPlayNext) {
                playerUI.switchPlayerContext('on');
            }
        }
    };

    // add the first song to queue
    let firstSound = player.addSoundToQueue(firstSoundAttributes);

    let secondSoundAttributes: ISoundAttributes = {
        sources: '1214935&format=ogg1',
        id: 1214935,
        playlistId: 0,
        onLoading: (loadingProgress, maximumValue, currentValue) => {
            console.log('loading: ', loadingProgress, maximumValue, currentValue);
            playerUI.setLoadingProgress(loadingProgress);
        },
        onPlaying: (playingProgress, maximumValue, currentValue) => {
            console.log('playing: ', playingProgress, maximumValue, currentValue);
            playerUI.setPlayingProgress(playingProgress);
        },
        onStarted: (playTimeOffset) => {
            console.log('started', playTimeOffset);
        },
        onPaused: (playTimeOffset) => {
            console.log('paused', playTimeOffset);
        },
        onStopped: (playTimeOffset) => {
            console.log('stopped', playTimeOffset);
        },
        onResumed: (playTimeOffset) => {
            console.log('resumed', playTimeOffset);
        },
        onEnded: (willPlayNext) => {
            console.log('ended', willPlayNext);
            if (!willPlayNext) {
                playerUI.switchPlayerContext('on');
            }
        }
    };

    // add another song
    let secondSound = player.addSoundToQueue(secondSoundAttributes);

    

    //let volume = 90;

    //player.setVolume(volume);

    // play first song in the queue
    //player.play();

    // play next song
    //player.play(player.PLAY_SOUND_NEXT);

    // TODO: use the sound to display the loading progress

    // TODO: add two sounds, then play the second one by passing it's id, queue should get rid of first song and immediatly play the second one

    // TODO: add a playlist of multiple songs at once, play some song (not the first one), again queue up until that song should get wiped, then play any previous song by id
    // but as queue won't know that song, we need to trigger some error
    // do this again but this time reset queue and repopulate it, then play the previous song
    // TODO: can we add some playlist support to avoid that the user manually needs to manage the queue? especially to avoid having to reset it when playing earlier song and then rebuild himself?
//.........这里部分代码省略.........
开发者ID:chrisweb,项目名称:web-audio-api-player,代码行数:101,代码来源:bootstrap.ts

示例2: PlayerCore


//.........这里部分代码省略.........

        //console.log(binsArray);

        var VisualData = GetVisualBins(initialArray)
        var TransformedVisualData = transformToVisualBins(VisualData)

        console.log(TransformedVisualData);

        ctx.clearRect(0, 0, canvas.width, canvas.height); // Clear the canvas
        ctx.fillStyle = 'red'; // Color of the bars

        for (var y = 0; y < SpectrumBarCount; y++) {

            let bar_x = y * barWidth;
            let bar_width = barWidth;
            let bar_height = TransformedVisualData[y];

            //  fillRect( x, y, width, height ) // Explanation of the parameters below
            //ctx.fillRect(0, 0, canvas.width, canvas.height);
            ctx.fillRect(bar_x, (canvas.height / 2) - bar_height, bar_width, bar_height);

            ctx.fillRect(bar_x, canvas.height / 2, bar_width, bar_height);

        }

    }

    // initialize player ui
    let playerUI = new PlayerUI(player);

    // add songs to player queue
    let firstSoundAttributes: ISoundAttributes = {
        sources: '1314412&format=mp31',
        id: 1314412,
        //sources: '1214935&format=ogg1',
        //id: 1214935,
        playlistId: 0,
        onLoading: (loadingProgress, maximumValue, currentValue) => {

            console.log('loading: ', loadingProgress, maximumValue, currentValue);

            playerUI.setLoadingProgress(loadingProgress);

        },
        onPlaying: (playingProgress, maximumValue, currentValue) => {

            console.log('playing: ', playingProgress, maximumValue, currentValue);

            playerUI.setPlayingProgress(playingProgress);

        },
        onStarted: (playTimeOffset) => {

            console.log('started', playTimeOffset);

            isPlaying = true;

            looper();

        },
        onPaused: (playTimeOffset) => {

            console.log('paused', playTimeOffset);

            isPlaying = false;

        },
        onStopped: (playTimeOffset) => {

            console.log('stopped', playTimeOffset);

            isPlaying = false;

        },
        onResumed: (playTimeOffset) => {
            
            console.log('resumed', playTimeOffset);

            isPlaying = true;

            looper();

        },
        onEnded: (willPlayNext) => {

            console.log('ended', willPlayNext);

            if (!willPlayNext) {
                playerUI.switchPlayerContext('on');
            }

            isPlaying = false;

        }
    };

    // add the first song to queue
    let firstSound = player.addSoundToQueue(firstSoundAttributes);

});
开发者ID:chrisweb,项目名称:web-audio-api-player,代码行数:101,代码来源:bootstrap.ts


注:本文中的web-audio-api-player.PlayerCore.addSoundToQueue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。