function brightcove_standard_profile_list in Brightcove Video Connect 7.6
Same name and namespace in other branches
- 7.7 brightcove.module \brightcove_standard_profile_list()
1 call to brightcove_standard_profile_list()
File
- ./
brightcove.module, line 3305 - Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.
Code
function brightcove_standard_profile_list() {
static $list = [
'Express Standard',
'Live - HD',
'Live - Premium HD',
'Live - Standard',
'audio-only',
'balanced-high-definition',
'balanced-nextgen-player',
'balanced-standard-definition',
'high-bandwidth-devices',
'low-bandwidth-devices',
'mp4-only',
'screencast',
'single-rendition',
];
return $list;
}