Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Video
    • Overview
    • Control
      • Overview
        • Getting started
        • Player initialization parameters
        • Player methods
        • Player state
        • Player events
    • Browser autoplay policy
  • Access management
  • Pricing policy
  • Audit Trails events
  • Release notes
  • Troubleshooting

In this article:

  • Adding a player to your page
  • Initializing a player
  • Player controls
  • Player state
  • Player events
  1. Video Player
  2. SDK
  3. JavaScript
  4. Getting started

Getting Started with the video player SDK for JavaScript

Written by
Yandex Cloud
Updated at May 28, 2026
View in Markdown
  • Adding a player to your page
  • Initializing a player
  • Player controls
  • Player state
  • Player events

You can integrate a video player with content from Cloud Video into your JavaScript project using the Cloud Video Player SDK for JavaScript.

Adding a player to your pageAdding a player to your page

To connect a player to a page, add the following code to it:

<script src="https://runtime.video.cloud.yandex.net/player/js/player-sdk.js"></script>

Initializing a playerInitializing a player

To initialize a player, add the following code to the page:

var player = Ya.playerSdk.init({
    /** @type {(string|HTMLElement)} to create the player in */
    element: 'video-player',
    /** @type {string} link to playable content */
    source: 'https://runtime.video.cloud.yandex.net/player/...',
    /** @type {boolean} autoplay when loading content */
    autoplay: false
});

Where https://runtime.video.cloud.yandex.net/player/... is a link to a video, broadcast, or playlist.

For more information on initializing a player, see:

  • Player initialization parameters
  • Interface: PlayerSdkInitConfig in the API reference
  • Interface: PlayerSdkSourceParams in the API reference

Player controlsPlayer controls

For information on player control methods, see:

  • Player methods
  • Interface: PlayerSdkApi in the API reference

Player statePlayer state

For information about the object containing player state parameters, see:

  • Player state
  • Interface: PlayerSdkState in the API reference

Player eventsPlayer events

For information about player events, see:

  • Player events
  • Interface: PlayerSdkEventHandlers in the API reference

Was the article helpful?

Previous
VideoView
Next
Player initialization parameters
© 2026 Direct Cursus Technology L.L.C.