AdobeFlash Player的實用API

有些API可以協助您使用AdobeFlash Player。

AdobePSDK.MediaResource

new MediaResource(url, type, metadata, forceFlash)

如果支援,您可以使用 forceFlash 引數可覆寫播放技術決定順序,並強制實施使用Flash Player。

AdobePSDK.PlayerTechnology = {
/**
* Determine the {AdobePSDK.PlayerTechnology} that would be used for the given
* media resource.
* @param {AdobePSDK.MediaResource} mediaResource
* @returns {AdobePSDK.PlayerTechnology.Type}
*/
getSupportedTechnology(mediaResource);
};

AdobePSDK.PlayerTechnology.Type = {
MSE,
VIDEO_TAG,
FLASH,
UNKNOWN
};

/**
* Set the path to the SWF relative to the main html page or using http URL.
* Defaults to the current directory of the html page.
*
* @param swfPath
*/
AdobePSDK.setSWFPath(swfPath);

/**
* Set the path to the folder containing the authorization token(s).
* If not set, defaults to the token folder within the SWFPath: SWFPath + "token/".
* @param authorizationTokenPath
*/
AdobePSDK.setAuthorizationTokenPath(authorizationTokenPath);

/**
* Set the name of the authorization token file. Defaults to "hlsAF_localhost.dat".
* @param authorizationTokenFileName
*/
AdobePSDK.setAuthorizationTokenFilename(authorizationTokenFilename);

/**
* Set the authorization token type, can be "SWF" or "DAT". Defaults to "DAT"
* @param {String} authorizationTokenType
*/
AdobePSDK.setAuthorizationTokenType(authorizationTokenType);

本頁內容