Hi, in AVS the flv file will play first and then if the HD button is pressed the mp4 (HD) version starts playing. How to make the mp4 (HD) version play first and by depressing the HD choice get to the flv?
Thank you.
Thank you.
if ($config['multi_server'] == '1' && $server != '') {
if ($config['lighttpd'] == '1') {
$FLV_URL = $server.$config['lighttpd_prefix']. $md5sum.'/'.$timestamp_hex.$file;
} else {
$rs = $conn->execute("SELECT video_url FROM servers WHERE url = '".$url."' LIMIT 1");
if ($conn->Affected_rows()) {
$video_url = $rs->fields['video_url'];
$FLV_URL = $video_url.'/'.$video_id.'.flv';
} else {
$FLV_URL = $server.'/media/videos/flv/'.$video_id.'.flv';
}

Comment