To use Flash Player, ensure that your environment meets the necessary requirements.
Here are the requirements for the Flash Player:
Primetime.js
, install at least Flash Player version 23.Playback with Flash Player requires the following SWF files:
playerProductInstall.swf
SWF file that handles Flash Player installation and updates.In addition, video playback in Flash requires an authorization token file that might be a SWF or a .DAT
file. The path to the SWF files, the authorization token file, and the token file name and type can be specified by using the AdobePSDK APIs.
For example:
// Set relative or http path to directory containing SWF.
// Defaults to current directory for the html page.
AdobePSDK.setSWFPath(<swfPath>);
// Set the relative or http path to directory containing token file(s).
// Defaults to SWFPath + "token/".
AdobePSDK.setAuthorizationTokenPath(<authorizationTokenPath>);
// Set the name of the token file, do not include any path in this string.
AdobePSDK.setAuthorizationTokenFilename("hlsaf_localhost.swf");
//Set the token type, "DAT" or "SWF". Defaults to "DAT"
AdobePSDK.setAuthorizationTokenType("SWF");