Displaying 20 results from an estimated 33 matches for "5574".
Did you mean:
2574
2004 Nov 26
4
Grandstream BT102 Busy signal on hangup
...when issued a Hangup().
Asterisk's logs show it's has hung up, but I get a busy signal on the phones themselves.
This was also happening under firmware 1.0.5.16. Configuration listed below; all of them are called via the #include statement:
<<<snip>>>
my.sip.conf
[5574]
type = friend
host = dynamic
auth=md5
username=5574
reinvite=no
canreinvite=no
qualify=300
nat=yes
dtmfmode = info
;dtmfmode = also tried rfc2833, didn't make any difference.
context = sip
mailbox = 5574
disallow=all
allow=ulaw
allow=alaw
callerid = Doug Lytle <5574
[5558]
type = friend...
2009 Nov 23
2
RFC 5574 and multiple frames
...xperimenting with Speex in a mobile VoIP application, and it seems
that it is worth stuffing more than one codec frame into a single RTP
packet; mainly, that sending several frames per packet relieves the
underlying network socket connection, which is notoriously problematic
in mobile devices.
RFC 5574 defines the exact way how to put multiple Speex frames into a
single RTP packet, and how to extract them again. However, the frame
boundaries are not on octet boundaries, and I am quite confused on how
to actually format the RTP payload from multiple frames.
Does the current code of speex contain...
2009 Nov 23
0
RFC 5574 and multiple frames
...mobile VoIP application, and it seems
> that it is worth stuffing more than one codec frame into a single RTP
> packet; mainly, that sending several frames per packet relieves the
> underlying network socket connection, which is notoriously problematic
> in mobile devices.
>
> RFC 5574 defines the exact way how to put multiple Speex frames into a
> single RTP packet, and how to extract them again. However, the frame
> boundaries are not on octet boundaries, and I am quite confused on how
> to actually format the RTP payload from multiple frames.
>
> Does the curren...
2005 Sep 05
9
Asterisk Follow ME
Hi All.
I have notice a problem with FM feature (screen macros) on Asterisk CVS
version.
When call goes via IAX and calling part "accept the call" on Dial
command with option M, in macros context it's setting
MACRO_RESULT=CONTINUE, but anyway it hangups both channels.
If anyone faced with such problem please let me know. I need to know
whether it's bug or just configuration
2009 Nov 25
1
SpeexBits ...
Hi Marian,
I took a brief look at RFC 5574 and as far as I understand, you can simply do it like this:
SpeexBits b;
speex_encode(state, some320bytePCM1, &b);
speex_encode(state, some320bytePCM2, &b);
After that, get the encoded data with speex_bits_write and put it in your packet.
Mark
-----Original Message-----
From: speex-dev-...
2006 Mar 15
1
does include not outomaticaly exclude not matching files ?
...ytes read 36 bytes 3174.27 bytes/sec
total size is 64085705 speedup is 2691.88
I used rsync version 2.5.6 on HP-UX 10.20
Also I get alwazs the same output independent of my --log-format.
Please help.
Best regards
Horst Liesinger
CAD Coordination (IT)
Mobil: +43 (0)664 / 3165367
Tel.: +43 (0)5574 / 604 - 284
Fax: +43 (0)5574 / 75590
Doppelmayr Seilbahnen GmbH
Rickenbacherstrasse 8-10
Postfach 20
A-6961 Wolfurt
Austria
2001 Sep 25
1
Samba BDC
...all it on the Red
Hat Unix 6.2 ?????
Thanks
Thomas
_____________________________________________
Thomas B?hler tboehler@b-c.cc
b&c Software Entwicklung OEG
http://www.b-c.cc
Tel.: +43 5574 62895
Fax: +43 5574 62895 4
Mobil: +43 664 3410046
-------------- next part --------------
HTML attachment scrubbed and removed
2013 Oct 08
2
CID NAME NOT FOUND
...showing properly, on the phone display, until the handset is picked up, then it's displaying NAME NOT FOUND.
I do database lookup against extension number (Of remote PBX) and use that as the MySQL key to pull name. Snippet below:
-- Executing [3175960102 at pri:8] Set("DAHDI/i1/3341905574-1", "CALLERID(name)=Doug Lytle") in new stack
-- Executing [3175960102 at pri:9] Set("DAHDI/i1/3341905574-1", "CALLERID(number)=5574") in new stack
It's like Asterisk is doing a lookup on the inbound CID.
I've Googled on Asterisk 11 name not found and...
2011 Mar 22
4
I cannot install dotnet20
Hi
I just compiled the latest version from git repo and trying to install dotnet20 and this is what I get
fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
err:ntlm:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path.
err:ntlm:SECUR32_initNTLMSP Usually, you
2010 Nov 01
2
frame size for a given quality?
I need to stream speex-encoded audio over RTP, which doesn't seem
to be standardized yet, so I'm gonna roll my own code. I control both the
sending and receiving sides, so I can pretty much do what I want.
I want each packet to contain 20ms worth of audio (sampled at 8KHz),
and I'm encoding using a constant bit rate and quality:6.
Q: how do I determine how many bytes of data go into
2010 Nov 01
1
frame size for a given quality?
Jeff,
RFC-5574 is standards-track: http://tools.ietf.org/html/rfc5574 so,
while it's not an approved standard, it's more standardized than a lot of
interoperable traffic on the internets these days.
The RFC specifies packetization guidelines, which is basically that you
put one or more frames in a pac...
2010 Nov 01
2
frame size for a given quality?
...;Thanks Steve.
>
>Is there a document anywhere that shows how many bytes/bits of data
>are produced by the speex encoding process for a given amount of time
>sampling rate and quality setting?
>
>
>On 11/01/2010 09:41 AM, Steve Kann wrote:
>> Jeff,
>>
>> RFC-5574 is standards-track: http://tools.ietf.org/html/rfc5574 so,
>> while it's not an approved standard, it's more standardized than a lot
>>of
>> interoperable traffic on the internets these days.
>>
>> The RFC specifies packetization guidelines, which is basica...
2009 Dec 10
2
Packing multiple frames in a RTP packet
Hello,
*Background:*
The RFC 5574 suggests the RTP payload format for the speex codec. The
payload formation is straight forward; the encoded frames are to be
concatenated one after another. Once we have appended desired number of
frames, we have to pad the stream with 01111 sort of sequence to ensure that
payload ends on a octet b...
2023 Oct 25
0
X.Org Security Advisory: Issues in X.Org X server prior to 21.1.9 and Xwayland prior to 23.2.2
...ggered by prepending to an input
device property or randr property.
The second issue (CVE-2023-5380) can be triggered by warping a pointer across
screens in legacy multi-head setups and destroying specific client windows.
Note that Xwayland is not affected by this issue.
The third issue (CVE-2023-5574) can be triggered in Xvfb during cleanup of the
ScreenRec, either at server shutdown or when the last client disconnects.
Note that this issue has not been fixed in a release yet due to some
issues with the proposed fixes.
---------------------------------------------------------------------------...
2007 Jun 26
2
aggregating daily values
...5524,
5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, 5535,
5536, 5537, 5538, 5539, 5540, 5541, 5542, 5543, 5544, 5545, 5546,
5547, 5548, 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, 5557,
5558, 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, 5567, 5568,
5569, 5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579
), class = "Date"), class = "zoo")
TIA
Antonio
--
=====
Por favor, si me mandas correos con copia a varias personas,
pon mi direcci?n de correo en copia oculta (CCO), para evitar
que acabe en montones de sitios, eliminando mi privacidad,
fav...
2010 Nov 01
1
frame size for a given quality?
...many bytes/bits of data
>>> are produced by the speex encoding process for a given amount of time
>>> sampling rate and quality setting?
>>>
>>>
>>> On 11/01/2010 09:41 AM, Steve Kann wrote:
>>>> Jeff,
>>>>
>>>> RFC-5574 is standards-track: http://tools.ietf.org/html/rfc5574
>>>>so,
>>>> while it's not an approved standard, it's more standardized than a lot
>>>> of
>>>> interoperable traffic on the internets these days.
>>>>
>>>> Th...
problem with outgoing callsUnabletocreatechannelof type 'ZAP' (cause 34 - Circuit/channelcongestion)
2006 Feb 17
2
problem with outgoing callsUnabletocreatechannelof type 'ZAP' (cause 34 - Circuit/channelcongestion)
Nik,
This definitely helps! Please check your dial command. You've got
"Dial(Zap/0/mynumber)" and I think you might possibly want it to be
something like this:
Dial(Zap/1/mynumber) or
Dial(Zap/g0/mynumber)
I don't recall there being a zap channel zero, but it is common to have
a group zero. I would recommend trying Zap channel 1 -
Dial(Zap/1/mynumber) - before trying the
2010 Nov 01
0
frame size for a given quality?
Thanks Steve.
Is there a document anywhere that shows how many bytes/bits of data
are produced by the speex encoding process for a given amount of time
sampling rate and quality setting?
On 11/01/2010 09:41 AM, Steve Kann wrote:
> Jeff,
>
> RFC-5574 is standards-track: http://tools.ietf.org/html/rfc5574 so,
> while it's not an approved standard, it's more standardized than a lot of
> interoperable traffic on the internets these days.
>
> The RFC specifies packetization guidelines, which is basically that you
> put on...
2012 Sep 30
0
Questions relating RTP packetisation
Hello.
I am working on implementing RFC 5574 (RTP Payload Format for the Speex
Codec) in the ffmpeg and have a question concerning it.
It would be nice if somebody could answered it.
* Chapter 4.1.1 Registration of Media Type Audio/Speex, subpart
"Optional parameters" states these SDP optional parameters:
vbr: variable bit-rate -...
2006 Jan 18
1
Bugs that Need Your Input!
...r the asychronous generation of outgoing
frames. Very cool. Needs a decision by the Core Developers (Read Kram /
KPFleming). BJ has been keeping this in synch w/ Trunk in his own
branch.
http://bugs.digium.com/view.php?id=5090
- T.38 Support anyone?
http://bugs.digium.com/view.php?id=5574
- A nifty new app called Find Me, Follow Me that does exactly what it
says.
If you can, take a look at these and add your entropy to the mix!
--
Vice President of N2Net, a New Age Consulting Service, Inc. Company
http://www.n2net.net Where everything clicks into place!...