Skip to content

MoePlayer/laravel-danmaku

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 

Laravel Danmaku

GitHub license

Installation

You can install the package via composer:

composer require moeplayer/laravel-danmaku

Copy the package migration to your local migration with the publish command:

php artisan vendor:publish --tag danmaku
php artisan migrate 

Add danmakuv2 to the csrf whitelist

// app\Http\Middleware\VerifyCsrfToken.php
protected $except = [
     'danmakuv2'
];

Usage

const dp = new DPlayer({
    container: document.getElementById('dplayer'),
    screenshot: true,
    video: {
        url: 'demo.mp4',
        pic: 'demo.jpg',
        thumbnails: 'thumbnails.jpg'
    },
    danmaku: {
        id: 'demo',
        api: 'http://domain/danmakuv2',
        user: 'dog'
    }
});