#ob_start #ob_clean #ob_end_clean
<?
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();
if(empty($arResult["VIDEO"]))
{
global $APPLICATION;
ob_start();
$APPLICATION->IncludeComponent(
"bitrix:player",
"",
Array(
//...
)
);
$arResult["VIDEO"] = ob_get_contents();
ob_clean();
ob_end_clean();
}