Advanced Features Demo

Full-Featured Player

Description: This example showcases advanced features and API methods available in VSRCPlayer. Experiment with different controls to see the player's capabilities.

Playback Controls

Volume Controls

100%

Video Sources

Advanced Actions

Status: Initializing...

Current Time

0s

Duration

0s

Volume

100%

Playing

No

Feature Highlights

API Methods Demonstrated:

// Playback control
player.play()
player.pause()
player.seek(seconds)

// Volume control
player.volume(level)  // Set (0-1)
player.volume()       // Get

// State queries
player.currentTime()
player.isPlaying()
player.getPlayer()    // Access underlying video.js instance

// Source management
player.setSource(src, type)

// Cleanup
player.dispose()