Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xgplayer-music

Package Overview
Dependencies
Maintainers
0
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xgplayer-music

xgplayer plugin for music

  • 3.0.20
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
47
decreased by-83.27%
Maintainers
0
Weekly downloads
 
Created
Source

Start

  1. Install

    $ npm install xgplayer@next
    $ npm install xgplayer-music@next
    
  2. Usage

    $ npm install xgplayer@next
    $ npm install xgplayer-music@next
    

    Step 1:

    <div id="vs"></div>
    

    Step 2:

    import Player from 'xgplayer'
    import 'xgplayer/dist/index.min.css'
    import MusicPreset from 'xgplayer-music'
    import 'xgplayer-music/dist/index.min.css'
    
    const player = new Player({
        id: 'vs',
        url: 'http://s2.pstatp.com/cdn/expire-1-M/byted-player-videos/1.0.0/xgplayer-demo.mp4',
        poster: 'xxxx',
        title: '这是音乐标题',
        /***以下配置音乐播放器一定要有start***/
        controls: {
            mode: 'flex',
            initShow: true
        },
        marginControls: true
        mediaType: 'audio', // 视频为video, h265为 xg-video, 音频为audio
        preset: ['default', MusicPreset],
        /***以上配置音乐播放器一定要有ended***/
        music: {
            // 音乐循环播放列表,如果不需要循环播放可以没有
            list: [{
                url: 'xx',
                vid: '123',
                poster: 'ccc',
                title: 'ccc'
            }]
        },
        width: "100%",
        height: 70
    })
    

    This is the easiest way to configure the player,then it runs with video. For more advanced content, see the plug-in section or documentation. more config

Mobile Support

xgplayer supports mobile terminal, but android device brand and system are numerous, there are much compatibility problems, the player provides whitelist mechanism to ensure the perfect operation in mobile terminal. whitelist

Dev

For debugging, we provide the example video resource which size is large in github. You can clone the whole git repository which includes codes and example videos with 'git clone --recurse-submodules -j8'. With 'git clone' you will pull only codes of xgplayer and its plugins.

$ git clone --recurse-submodules -j8 git@github.com:bytedance/xgplayer.git # OR git clone git@github.com:bytedance/xgplayer.git
$ cd xgplayer
$ npm install
$ npm run dev

please visit http://localhost:9090/examples/index.html

License

MIT

Keywords

FAQs

Package last updated on 23 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc