<html><head><style type='text/css'>p { margin: 0; }</style><style type='text/css'>body { font-family: 'Arial'; font-size: 12pt; color: #000000}</style></head><body><P>I have tried with asterisk 10 also and i am facing the same problem.<BR><BR>Regards,<BR>Shalu </P>
<P>&nbsp;</P>
<P><BR>----- Original Message -----<BR>From: asterisk-dev-request@lists.digium.com<BR>To: asterisk-dev@lists.digium.com<BR>Sent: Friday, December 23, 2011 7:29:57 PM GMT +05:30 Chennai, Kolkata, Mumbai, New Delhi<BR>Subject: asterisk-dev Digest, Vol 89, Issue 93<BR><BR>Send asterisk-dev mailing list submissions to<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asterisk-dev@lists.digium.com<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://lists.digium.com/mailman/listinfo/asterisk-dev<BR>or, via email, send a message with subject or body 'help' to<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asterisk-dev-request@lists.digium.com<BR><BR>You can reach the person managing the list at<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;asterisk-dev-owner@lists.digium.com<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of asterisk-dev digest..."<BR><BR><BR>Today's Topics:<BR><BR>&nbsp;&nbsp; 1. 2011 The Year in Review - where were you when... (Dean Collins)<BR>&nbsp;&nbsp; 2. Not able to play video file in asterisk 1.8.7.1 (shalu dhamija)<BR>&nbsp;&nbsp; 3. Re: Not able to play video file in asterisk 1.8.7.1<BR>&nbsp;&nbsp; &nbsp; &nbsp;(Stefan Schmidt)<BR>&nbsp;&nbsp; 4. Re: Not able to play video file in asterisk 1.8.7.1 (Timo Ter?s)<BR>&nbsp;&nbsp; 5. Re: Not able to play video file in asterisk 1.8.7.1<BR>&nbsp;&nbsp; &nbsp; &nbsp;(shalu dhamija)<BR>&nbsp;&nbsp; 6. [Bamboo] Matthew Jordan commented on Asterisk - 10 - Ubuntu<BR>&nbsp;&nbsp; &nbsp; &nbsp;Lucid (10.04) 417 (Matthew Jordan)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 1<BR>Date: Fri, 23 Dec 2011 02:48:21 -0500<BR>From: "Dean Collins" &lt;Dean@cognation.net&gt;<BR>Subject: [asterisk-dev] 2011 The Year in Review - where were you<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;when...<BR>Message-ID:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;3685A8FD247FA94C957C4304AB386A0475988C@cognationsvr1.Cognation.local&gt;<BR>Content-Type: text/plain; charset="us-ascii"<BR><BR>In these "interesting times" just a quick email wishing you and your<BR>family all the very best over the holiday season and looking forward to<BR>a safer more prosperous 2012.<BR><BR>&nbsp;<BR><BR>2011 The Year in Review - where were you when...<BR>http://fabzing.com/watch?s=msTgSprW<BR><BR>&nbsp;<BR><BR>&nbsp;<BR><BR>Regards, <BR><BR>Dean Collins<BR>Cognation Inc<BR>dean@cognation.net<BR>&lt;mailto:dean@cognation.net&gt; +1-212-203-4357 &nbsp; New York<BR>+61-2-9016-5642 &nbsp; (Sydney in-dial).<BR>+44-20-3129-6001 (London in-dial). <BR><BR>&nbsp;<BR><BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: &lt;http://lists.digium.com/pipermail/asterisk-dev/attachments/20111223/22b4b673/attachment-0001.htm&gt;<BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Fri, 23 Dec 2011 18:34:59 +0530 (IST)<BR>From: shalu dhamija &lt;shalu.dhamija@rancoretech.com&gt;<BR>Subject: [asterisk-dev] Not able to play video file in asterisk<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.7.1<BR>To: asterisk-dev &lt;asterisk-dev@lists.digium.com&gt;<BR>Message-ID: &lt;9111052.207591324645499251.JavaMail.root@mail01&gt;<BR>Content-Type: text/plain; charset="utf-8"<BR><BR><BR><BR>Hello, <BR><BR><BR><BR>I am trying to play a video file (H.263 format)? using playback() application. <BR><BR>extensions.conf:? <BR><BR>exten=&gt; 102,1,Playback(miss)????? ; miss.h263 is a video file and its playing in vlc player. <BR><BR><BR><BR>sip.conf <BR><BR>videosupport = yes ; in general section <BR><BR><BR><BR>[phone2] <BR>?type=friend <BR>host=dynamic <BR>;secret=verysecretpassword2; put a strong, unique password here instead <BR>context= employees <BR>;context= phones <BR>;context= outbound-local <BR>mailbox=102@default <BR>callerid="phone2&lt;102&gt;" <BR>videosupport=yes <BR>disallow=all <BR>allow=ilbc <BR>allow=g729 <BR>allow=gsm <BR>allow=g723 <BR>allow=ulaw <BR>allow=alaw <BR>allow=adpcm <BR>allow=h263 <BR>allow=h263p <BR>allow=h261 <BR><BR><BR><BR>I am getting the following warnings upon making a video call through mercuro client: <BR><BR><BR><BR>Dec 23 17:17:18] WARNING[976]: file.c:653 ast_openstream_full: File miss does not exist in any format <BR>[Dec 23 17:17:18] WARNING[976]: file.c:959 ast_streamfile: Unable to open miss (format 0x80004 (ulaw|h263)): No such file or directory <BR>[Dec 23 17:17:18] WARNING[976]: app_playback.c:475 playback_exec: ast_streamfile failed on SIP/phone1-00000000 for miss <BR><BR><BR><BR>In function ast_openstream_full in file.c <BR><BR><BR><BR>fmts = fileexists_core(filename, NULL, preflang, buf, buflen); <BR>??????? <BR><BR>//the?value of fmts is coming as 524288 which is correct for h263 codec <BR>? <BR>???????? if (fmts &gt; 0) <BR>??????????????? fmts &amp;= AST_FORMAT_AUDIO_MASK;?? //#define AST_FORMAT_AUDIO_MASK 0xFFFF0000FFFFULL defined in frame.h <BR><BR><BR><BR>//The?fmts becomes zero after 'and' operation with AST_FORMAT_AUDIO_MASK. First 16 bits?are used for handling the audio.?It seems that the video support is supressed. <BR>??????? if (fmts &lt; 1) { <BR>??????????????? ast_log(LOG_WARNING, "File %s does not exist in any format\n", filename); <BR>??????????????? return NULL; <BR>??????? } <BR><BR><BR><BR>Please find attached the log messages file. <BR><BR><BR><BR>Kindly tell me the steps/procedure for the video support in asterisk. <BR><BR><BR><BR>Thanks in advance. <BR><BR><BR>Regards, <BR>Shalu <BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: &lt;http://lists.digium.com/pipermail/asterisk-dev/attachments/20111223/dad99660/attachment-0001.htm&gt;<BR><BR>------------------------------<BR><BR>Message: 3<BR>Date: Fri, 23 Dec 2011 14:12:29 +0100<BR>From: Stefan Schmidt &lt;sst@sil.at&gt;<BR>Subject: Re: [asterisk-dev] Not able to play video file in asterisk<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.7.1<BR>To: Asterisk Developers Mailing List &lt;asterisk-dev@lists.digium.com&gt;<BR>Message-ID: &lt;4EF47E3D.60607@sil.at&gt;<BR>Content-Type: text/plain; charset=ISO-8859-1<BR><BR>Am 23.12.11 14:04, schrieb shalu dhamija:<BR>&gt; <BR>&gt; <BR>&gt; Hello, <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; I am trying to play a video file (H.263 format) &nbsp;using playback() application. <BR>&gt; <BR>&gt; extensions.conf: &nbsp;<BR>&gt; <BR>&gt; exten=&gt; 102,1,Playback(miss) &nbsp; &nbsp; &nbsp;; miss.h263 is a video file and its playing in vlc player. <BR>...<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; Kindly tell me the steps/procedure for the video support in asterisk. <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; Thanks in advance. <BR>&gt; <BR>&gt; <BR>&gt; Regards, <BR>&gt; Shalu <BR><BR>Hello Shalu,<BR><BR>if possible please try it with asterisk 10. I have tried to enable video<BR>calls with asterisk 1.8 several times and allways give up cause i had a<BR>lot of problems but with 10 i was able to build a video conference<BR>system in 1 hour ;)<BR><BR>thanks<BR><BR>best regards<BR><BR>Stefan<BR><BR><BR><BR>------------------------------<BR><BR>Message: 4<BR>Date: Fri, 23 Dec 2011 15:13:35 +0200<BR>From: Timo Ter?s &lt;timo.teras@iki.fi&gt;<BR>Subject: Re: [asterisk-dev] Not able to play video file in asterisk<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.7.1<BR>To: Asterisk Developers Mailing List &lt;asterisk-dev@lists.digium.com&gt;<BR>Cc: shalu dhamija &lt;shalu.dhamija@rancoretech.com&gt;<BR>Message-ID: &lt;4EF47E7F.1050904@iki.fi&gt;<BR>Content-Type: text/plain; charset=ISO-8859-1<BR><BR>On 12/23/2011 03:04 PM, shalu dhamija wrote:<BR>&gt; I am trying to play a video file (H.263 format) &nbsp;using playback()<BR>&gt; application.<BR><BR>You probably need my patch from:<BR>&nbsp;https://issues.asterisk.org/jira/browse/ASTERISK-18994<BR><BR>Though there might be something additional involved too. But there are<BR>chances that this could fix it all together too.<BR><BR>Cheers,<BR>&nbsp;Timo<BR><BR><BR><BR><BR><BR>------------------------------<BR><BR>Message: 5<BR>Date: Fri, 23 Dec 2011 18:56:30 +0530 (IST)<BR>From: shalu dhamija &lt;shalu.dhamija@rancoretech.com&gt;<BR>Subject: Re: [asterisk-dev] Not able to play video file in asterisk<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.8.7.1<BR>To: Timo Ter?s &lt;timo.teras@iki.fi&gt;<BR>Cc: Asterisk Developers Mailing List &lt;asterisk-dev@lists.digium.com&gt;<BR>Message-ID: &lt;10281302.208021324646790341.JavaMail.root@mail01&gt;<BR>Content-Type: text/plain; charset="utf-8"<BR><BR><BR><BR>In my case, my code does not reach upto point where seeking on file is performed. <BR><BR><BR><BR>fs = ast_openstream(chan, filename, preflang); <BR>??????? if (!fs) { <BR>??????????????? ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n", filename, ast_getformatname_multiple(fmt, sizeof(fmt), chan-&gt;nativeformats), strerror(errno)); <BR><BR>//I am getting this warning and the function returns from here <BR>??????????????? return -1; <BR>??????? } <BR><BR><BR><BR>/* check to see if there is any data present (not a zero length file), <BR>???????? * done this way because there is no where for ast_openstream_full to <BR>???????? * return the file had no data. */ <BR>??????? seekattempt = fseek(fs-&gt;f, -1, SEEK_END); <BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>Regards, <BR><BR>Shalu <BR><BR><BR><BR><BR><BR><BR>----- Original Message ----- <BR>From: "Timo Ter?s" &lt;timo.teras@iki.fi&gt; <BR>To: "Asterisk Developers Mailing List" &lt;asterisk-dev@lists.digium.com&gt; <BR>Cc: "shalu dhamija" &lt;shalu.dhamija@rancoretech.com&gt; <BR>Sent: Friday, December 23, 2011 6:43:35 PM GMT +05:30 Chennai, Kolkata, Mumbai, New Delhi <BR>Subject: Re: [asterisk-dev] Not able to play video file in asterisk 1.8.7.1 <BR><BR>On 12/23/2011 03:04 PM, shalu dhamija wrote: <BR>&gt; I am trying to play a video file (H.263 format) ?using playback() <BR>&gt; application. <BR><BR>You probably need my patch from: <BR>?https://issues.asterisk.org/jira/browse/ASTERISK-18994 <BR><BR>Though there might be something additional involved too. But there are <BR>chances that this could fix it all together too. <BR><BR>Cheers, <BR>?Timo <BR><BR><BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: &lt;http://lists.digium.com/pipermail/asterisk-dev/attachments/20111223/ff5e31fa/attachment-0001.htm&gt;<BR><BR>------------------------------<BR><BR>Message: 6<BR>Date: Fri, 23 Dec 2011 07:55:37 -0600 (CST)<BR>From: Matthew Jordan &lt;bamboo@asterisk.org&gt;<BR>Subject: [asterisk-dev] [Bamboo] Matthew Jordan commented on Asterisk<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- 10 - Ubuntu Lucid (10.04) 417<BR>To: asterisk-dev@lists.digium.com<BR>Message-ID:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;784233995.2002.1324648537980.JavaMail.root@bamboo.asterisk.org&gt;<BR>Content-Type: text/plain; charset="utf-8"<BR><BR>-------------------------------------------------------------------------------<BR>AST10-LUCID-417 commented by Matthew Jordan - 23 Dec 2011, 7:55:37 AM<BR>-------------------------------------------------------------------------------<BR><BR>Rut roh - this was actually a seg fault that occurred due to an error in ConfBridge. &nbsp;I'll be backing up these logs and creating an ASTERISK issue from this.<BR><BR>http://bamboo.asterisk.org/browse/AST10-LUCID-417<BR><BR><BR>--<BR>This message is automatically generated by Atlassian Bamboo<BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: &lt;http://lists.digium.com/pipermail/asterisk-dev/attachments/20111223/5d424def/attachment.htm&gt;<BR><BR>------------------------------<BR><BR>_______________________________________________<BR>--Bandwidth and Colocation Provided by http://www.api-digital.com--<BR><BR>AstriCon 2010 - October 26-28 Washington, DC<BR>Put in your talk proposal: http://www.bit.ly/speak-astricon2010<BR><BR>asterisk-dev mailing list<BR>To UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; http://lists.digium.com/mailman/listinfo/asterisk-dev<BR><BR>End of asterisk-dev Digest, Vol 89, Issue 93<BR>********************************************<BR></P></body></html>