Waiting for Video при потоковом вещании
Добавлено: 19 май 2010, 09:33
Добрый день!
Есть локальная сеть, на Юбунте поднят видеосервер. Вещание идет через VLC.
До последнего дня все было нормально, потом удалили скрипт, по которому на тв выводился фильм через ноут.
Первый вариант скрипта найден, но теперь проблема - видео показывается только в один проход - дальше "Waiting for video". Т.е. ролик мотает по кругу весь день, а отображение его только один раз проходит. В чем может быть причина?
Текст скрипта прилагаю
Есть локальная сеть, на Юбунте поднят видеосервер. Вещание идет через VLC.
До последнего дня все было нормально, потом удалили скрипт, по которому на тв выводился фильм через ноут.
Первый вариант скрипта найден, но теперь проблема - видео показывается только в один проход - дальше "Waiting for video". Т.е. ролик мотает по кругу весь день, а отображение его только один раз проходит. В чем может быть причина?
Текст скрипта прилагаю
- Код: Выделить всё
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Preved</title>
<style type='text/css'>
#timer {
color: #fff;
font-size: 110px;
font-family: Arial;
}
td, h1 {
color: #000;
font-size: 44px;
font-family: Arial;
}
/*Example CSS for the two demo scrollers*/
#pscroller1{
width: 390;
height: 600;
border: 0px;
padding: 5px;
}
#pscroller2{
width: 100%;
height: 100%;
border: 0px;
padding: 3px;
}
#pscroller2 a{
text-decoration: none;
}
.someclass{ //class to apply to your scroller(s) if desired
}
</style>
<script type="text/javascript">
/***********************************************
* Pausing up-down scroller- © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}
pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
//===========================================
function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
var fileref=document.createElement('script')
fileref.setAttribute("type","text/javascript")
fileref.setAttribute("src", filename)
}
else if (filetype=="css"){ //if filename is an external CSS file
var fileref=document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
document.getElementsByTagName("head")[0].appendChild(fileref)
}
function fulltime()
{
var time=new Date();
var hours = time.getHours();
var minutes = time.getMinutes();
var seconds = time.getSeconds();
//if (seconds==0)loadjscssfile("update.php", "js");
if (minutes <= 9) minutes = "0" + minutes;
if (seconds <= 9) seconds = "0" + seconds;
document.getElementById("timer").innerHTML = hours + ":" + minutes + ":" + seconds;
setTimeout(" fulltime()",500)
}
</script>
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#000000" rowspan="2" id="mainscr">
<object id="MediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6, 4, 5, 715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="858" height="700">
<param name="FileName" value="mmsh://router:1234/">
<param name="TransparentAtStart" value="true">
<param name="wmode" value="transparent">
<param name="AutoStart" value="true">
<param name="AnimationatStart" value="false">
<param name="ShowStatusBar" value="false">
<param value="false" name="enableContextMenu">
<param name="ShowControls" value="false">
<param name="autoSize" value="true">
<param name="displaySize" value="false">
<param name="ShowAudioControls" value="false">
<param name="ShowPositionControls" value="false">
<param name="windowlessVideo" value="false">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="mmsh://router:1234/" name="MediaPlayer" transparentatstart="1" wmode="transparent" autostart="1" animationatstart="0" showcontrols="0" showaudiocontrols="0" showpositioncontrols="0" autosize="1" showstatusbar="0" displaysize="0" windowlessvideo="true" width="100%" height="100%">
</object>
</td>
<td width="393" bgcolor="#99CC00" align="center">
<div id="timer">Preved!!!</div>
<script language="JavaScript">fulltime();</script>
</td>
</tr>
<tr>
<td width="393" bgcolor="#F0F0F0" align="center">
<script type="text/javascript">
<?
function week_ru($week){
$dtarr = array(
0 => "Воскресенье",
1 => "Понедельник",
2 => "Вторник",
3 => "Среда",
4 => "Четверг",
5 => "Пятница",
6 => "Суббота",
);
return $dtarr[$week];
}//function
function months_ru($month){
$dtarr = array(
1 => "января",
2 => "февраля",
3 => "марта",
4 => "апреля",
5 => "мая",
6 => "июня",
7 => "июля",
8 => "августа",
9 => "сентября",
10 => "октября",
11 => "ноября",
12 => "декабря"
);
return $dtarr[$month];
}//function
function rusdate($date = 0){
if($date == 0)$date = date("d.m.Y");
else $date = date("d.m.Y",$date);
list($day,$month,$year) = explode(".",$date);
$date=date("d.m.Y",mktime(0,0,0,$month,$day,$year));
$wday=date("w",mktime(0,0,0,$month,$day,$year));
return week_ru(intval($wday)).", ".intval($day)." ".months_ru(intval($month))." ".$year."г.";
}
$sql = "SELECT * FROM `TVinfos` WHERE `starttime`<".time()."<`finaltime` ORDER BY `starttime`";
//$query = new query($db,$sql);
// Вычисляем число дней в текущем месяце
$dayofmonth = date('t');
// Счётчик для дней месяца
$day_count = 1;
// 1. Первая неделя
$num = 0;
for($i = 0; $i < 7; $i++){
// Вычисляем номер дня недели для числа
$dayofweek = date('w',mktime(0, 0, 0, date('m'), $day_count, date('Y')));
// Приводим к числа к формату 1 - понедельник, ..., 6 - суббота
$dayofweek = $dayofweek - 1;
if($dayofweek == -1) $dayofweek = 6;
if($dayofweek == $i)
{
// Если дни недели совпадают,
// заполняем массив $week
// числами месяца
$week[$num][$i] = $day_count;
$day_count++;
}
else{
$week[$num][$i] = "";
}
}
// 2. Последующие недели месяца
while(true){
$num++;
for($i = 0; $i < 7; $i++)
{
$week[$num][$i] = $day_count;
$day_count++;
// Если достигли конца месяца - выходим
// из цикла
if($day_count > $dayofmonth) break;
}
// Если достигли конца месяца - выходим
// из цикла
if($day_count > $dayofmonth) break;
}
// 3. Выводим содержимое массива $week
// в виде календаря
// Выводим таблицу
$calendar = "<table border=\"0\" cellspacing=\"4\">";
for($i = 0; $i < count($week); $i++)
{
$calendar .= "<tr>";
for($j = 0; $j < 7; $j++)
{
if(!empty($week[$i][$j]))
{
// Если имеем дело с субботой и воскресенья
// подсвечиваем их
if(intval($week[$i][$j]) == intval(date("d")))$bs = ' bgcolor="#cccccc"';
else $bs = "";
if($j == 5 || $j == 6)
$calendar .= "<td align=\"center\"".$bs."><font color=red>".$week[$i][$j]."</font></td>";
else $calendar .= "<td align=\"center\"".$bs.">".$week[$i][$j]."</td>";
}
else $calendar .= "<td> </td>";
}
$calendar .= "</tr>";
}
$calendar .= "</table>";
echo"var pausecontent=new Array();\n";
echo"pausecontent[0] = '<h1>Сегодня ".rusdate()."</h1>".$calendar."'\n";
echo"pausecontent[1] = '<h1 style=\"margin: 0px\">Погода за окном</h1><iframe src=\"weather.html\" border=\"0\" style=\"border: 0px\" width=\"390\" height=\"600\"></iframe>';\n";
$k=2;
echo $dsd;
//while($query->getrow()){
//echo"pausecontent[".$k."]='".$text."'\n";
//$k++;
//}
?>
new pausescroller(pausecontent, "pscroller1", "someclass", 5000);
</script>
</td>
</tr>
</table>
</body>
</html>