Yealink Forums
Video on T46G/T48G - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Wishlist (/forumdisplay.php?fid=13)
+--- Thread: Video on T46G/T48G (/showthread.php?tid=3916)



Video on T46G/T48G - HaraldL - 06-06-2015 05:46 PM

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


RE: Video on T46G/T48G - Flora_Yealink - 06-08-2015 09:54 PM

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


RE: Video on T46G/T48G - HaraldL - 06-08-2015 10:57 PM

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



RE: Video on T46G/T48G - Flora_Yealink - 06-10-2015 04:58 AM

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/attachmentDownload/download?path=upload%2Fattachment%2F2015-3-10%2F3%2Fe400d0cf-4380-4378-93b8-fabd737d3aa2%2FYealink_IP_Phones_XML_Browser_Developer%27s_Guide_V73.rar


please check and let us know if any question.
Best Regards!
Flora


RE: Video on T46G/T48G - HaraldL - 06-10-2015 03:24 PM

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.


RE: Video on T46G/T48G - fire555 - 06-30-2015 02:01 PM

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