Yealink Forums

Full Version: Video on T46G/T48G
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

it would be nice if we could show a video with the mini-xml browser. Maybe not a video with video codec but an image slide show auto reloading the image source.

Atm we have several Gigaset DE900 IP PRO that could display an image from an url and reload it X times per second without flickering.

thx

Harald
Hi Harald,
Thanks for your suggestion, T46/T48 can't support show the video, would you please let us know what scenario for this feature? why you want this feature ?

Best Regards!
Flora
Hi,

we use this slide show as screensaver. We display a slideshow of webcams from the internet or it could be used to show the doorcam.

regards,

Harald

(06-08-2015 09:54 PM)Flora Wrote: [ -> ]Hi Harald,
Thanks for your suggestion, T46/T48 can't support show the video, would you please let us know what scenario for this feature? why you want this feature ?

Best Regards!
Flora
HI Harald,
If the server can convert the vedio to the JPG file and then use push xml feature, the phone can show the picture as the wallpaper.
It can use ImageScreen.php.
<?php
#
function push2phone($server,$phone,$data)
{
$xml = "xml=".$data;
$post = "POST / HTTP/1.1\r\n";
$post .= "Host: $phone\r\n";
$post .= "Referer: $server\r\n";
$post .= "Connection: Keep-Alive\r\n";
$post .= "Content-Type: text/xml\r\n";
$post .= "Content-Length: ".strlen($xml)."\r\n\r\n";
$fp = @fsockopen ( $phone, 80, $errno, $errstr, 5);
if($fp)
{
fputs($fp, $post.$xml);
flush();
fclose($fp);
}
}
##############################


$xml = "<YealinkIPPhoneImageScreen
doneAction=\"http://IP/menu.php\"
Beep=\"yes\"
Timeout=\"60\"
LockIn=\"yes\"
mode=\"regular\">\n";
#T2X
#$xml .= "<Image verticalAlign="bottom" horizontalAlign="middle" height="12" width="8">http://IP/url-door/gg.JPG</Image>\n";
$xml .= "<Image horizontalAlign=\"middle\" verticalAlign=\"middle\" >http://10.2.5.154:8080/T2X/Chrysanthemum.jpg</Image>\n";
$xml .= "</YealinkIPPhoneImageScreen>\n";
push2phone("10.2.5.154","10.15.5.12",$xml);
push2phone("10.3.5.5","10.3.5.219",$xml);
push2phone("10.3.5.5","10.3.5.183",$xml);


#replace 10.1.3.8 with your Apache ip address
#replace 10.1.3.180 with your phone ip address
?>
for more details , please refer to below guide.
http://support.yealink.com/attachmentDow...de_V73.rar


please check and let us know if any question.
Best Regards!
Flora
Ok thx I will try it. Btw. is it possible to show the xml browser als screensaver (time controlled?).

Atm I use "slide show" of xml pages when the phone idles, in the xml is a timeout value set and a url to the next xml slide. Is this possible with yealink xml browser? Because I have only seen the exit Timeout.
Hi,

I thought I would add my support for video on the T46G/T48G.

This would be excellent for displaying surveillance camera footage, of a driveway or door or similar. I have been able to use the XML browser to display a screenshot of the camera which is good, but live footage would be far better.

Thanks
Reference URL's