similar to: Hiccup on streaming

Displaying 20 results from an estimated 100 matches similar to: "Hiccup on streaming"

2014 May 23
2
Hiccup on streaming
Hi all, this is my first time on this list. I have a very basic icecast2 server installed from Ubuntu repository. It's running on a linux Ubuntu Studio 12.04 LTS with an Athlon 64 X2 5200+. This linux box is at a Community FM Radio Station. We installed a radio automatization software called "Radit". Radit is developed by a spanish guy and runs very well. It's open source and
2014 May 23
0
Hiccup on streaming
On 05/23/2014 06:55 PM, dragonauta wrote: > Hi all, this is my first time on this list. > I have a very basic icecast2 server installed from Ubuntu repository. > It's running on a linux Ubuntu Studio 12.04 LTS with an Athlon 64 X2 > 5200+. > This linux box is at a Community FM Radio Station. > > We installed a radio automatization software called "Radit". >
2010 Jul 20
0
Got SIP response 603 decline, then the call hang up
Hi to all, I have a strange behavior in my asterisk server. I have a queue for 5 agents, the calls enter the queue an go to the agents normally, but if I need to transfer or dial directly to an agent extension that is already in a call, the pbx hung up the actual call (not the transferred call). This is what I see in the log. Called 103 -- Agent/103 is ringing --
2005 Jul 25
1
sendDTMF at pickup
Hi everyone: The following code dials our prefix, sends a beep, and sends a DTMF "c" tone, then dials the phone number. I need to send the DTMF only if the phone is answered. [voip] exten=>i,1,NoCDR() exten=>i,2,Hangup() exten=>s,1,Wait(2) exten=>s,2,Background(beep||) exten=>s,3,DigitTimeout(6) exten=>s,4,ResponseTimeout(10) exten=>s,5,SendDTMF(c)
2007 Aug 31
2
How to spec routes for a resource nested in multiples resources?
Hi, I got the resource "Llamadas" nested in: - Operadores - Productos - Centros Here is part of my routes http://pastie.caboo.se/92767 I want to spec that the routes for Llamadas, I tried several approachs: - route_for(:controller => "llamadas", :action => "exitosas", :operador_id => 1).should == "/operador/1/llamadas;exitosas" -
2010 Aug 24
1
Disk full message with non full disk
Hello I'm having some disk full messages in several windows xp clients.The disk have a lot space free. I'm using Centos 5.5 with the samba centos official package. samba-3.0.33-3.29 Maybe a samba bug ? Any advice ? Thanks a lot for any help regards roberto This is my smb.conf #======================= Global Settings ===================================== [global] #
2019 May 30
2
Que tal comunidad, una pregunta general: existe en la librería ggplot, algún comando que permita hacer simultáneamente 2 graficos dentro del mismo layout, como el operador | en la libreria lattice ? muchas gracias, un abrazo a todos, Eric.
Que tal comunidad, una pregunta general: existe en la librería ggplot, algún comando que permita hacer simultáneamente 2 graficos dentro del mismo layout, como el operador | en la libreria lattice ? muchas gracias, un abrazo a todos, Eric.
2023 Feb 23
1
Problemas con algunos atajos en Rstudio
Cordial saludo, Necesito de su ayuda dado que, cuando estoy trabajando en Rstudio no me están funcionando los atajos *CTRL + 1, CTRL + 2*, además cuando utilizo el atajo* CTRL + SHIFT + M* el operador que obtengo es: |>. Atajos como *CTRL + ENTER, ALT + -, ALT + SHIFT + K* funcionan perfectamente, por ende, no entiendo qué está pasando ¿Alguien sabe que puede estar ocurriendo? ¿Por qué puede
2019 May 31
2
Que tal comunidad, una pregunta general: existe en la librería ggplot, algún comando que permita hacer simultáneamente 2 graficos dentro del mismo layout, como el operador | en la libreria lattice ? muchas gracias, un abrazo a todos, Eric.
Muchas gracias Carlos !! un abrazo, Eric. On 30-05-19 17:57, Carlos Ortega wrote: > Hola, > > Sí, en ggplot esto se resuelve con: > > * facet_grid() > * facet_wrap() > > Saludos, > Carlos Ortega > www.qualityexcellence.es <http://www.qualityexcellence.es> > > El jue., 30 may. 2019 a las 23:30, neo (<ericconchamunoz en gmail.com >
2019 Jul 28
2
Creación de vector con una secuencia de números enteros.
Buenas. Soy un chaval novato en el uso de R. Ando haciendo un curso online, y he llegado a una parte en la que me he atascado. La instrucción es la siguiente: crea una variable llamada | 'mi_vector' que contenga un vector con los números enteros del 11 al 30. Recuerda | que puedes usar el operador secuencia ':' A lo cual yo he introducido el siguiente comando:
2014 Feb 12
1
Internal DNS in 4.1.x having hiccup
We started with 4.1.0, there were few clients and Domain Controler worked fine. We started upgrading at 4.1.2 with: ./configure --enable-debug, make, make install on stoped samba4. We didn't notice any bad things. Curently we are using the 4.1.4, and can't be 100% but we started adding more and more people, but the dns dont respond allways. First it started with not responding anything (we
1999 Aug 15
0
patch suggested for Solaris 7 cures samba2.0.5a/Sol2.6 hiccup
I installed and configured samba 2.0.5a on a rather unstable Sun box on Thursday/Friday last week to link two NT cd writer machines to a filesystem on the E4000. After a bit of wierdness regarding the usernames the NT machines where offering to Samba, and some creative use of a username.map file I got what they wanted set up. The users were happy and 5 minutes of job satisfaction were achieved. I
2005 Mar 28
0
Odd icecast hiccup problem with low-bandwidth cellular client
Here's a very odd question - I don't know if anybody can even begin to answer. I am attempting something very odd and geeky. I set up an icecast Win32 server streaming a 96kbps mp3 stream (using all the latest as of today software, winamp, icecast2 and oddcast v3) so I can listen to it on my cell phone while at work. My phone does GPRS EDGE data at 131kbps-ish, just barely fast enough to
2009 Jul 28
2
A hiccup when using anova on gam() fits.
I stumbled across a mild glitch when trying to compare the result of gam() fitting with the result of lm() fitting. The following code demonstrates the problem: library(gam) x <- rep(1:10,10) set.seed(42) y <- rnorm(100) fit1 <- lm(y~x) fit2 <- gam(y~lo(x)) fit3 <- lm(y~factor(x)) print(anova(fit1,fit2)) # No worries. print(anova(fit1,fit3)) # Likewise. print(anova(fit2,fit3)) #
2007 Jul 31
2
VMWare hiccup on CentOS 5, 2.6.18-8.1.8
For reasons which escape me, my VMWare Server, which was working perfectly a week ago when I shut down my machine for vacation, no loner comes up with the formerly working Windows XP system - it just stays in the small window where it normally boots and does nothing. The vmware serverd log shows nothing particularly interesting, and I have reconfigured the vmware twice to try and fix this (which
2007 Jan 19
1
hiccup in apply?
Hello, I don't understand the behavior of apply() on the data frame below. test <- structure(list(Date = structure(c(13361, 13361, 13361, 13361, 13361, 13361, 13361, 13361, 13362, 13362, 13362, 13362, 13362, 13362, 13362, 13362, 13363, 13363, 13363, 13363, 13363, 13363, 13363, 13363, 13364, 13364, 13364, 13364, 13364, 13364, 13364, 13364, 13365, 13365, 13365, 13365, 13365, 13365, 13365,
2005 Oct 15
1
Hiccup in installing R 2.2.0
Yesterday I downloaded R-2.2.0.tar.gz, gunzipped and untarred, and did the usual ./configure and make. Everything seemed to go smoothly until it got to the bit about installing recommended packages. It got past ``spatial'' but turned up a fatal error in respect of the ``boot'' package. Here is some of what appeared on the screen:
2005 Mar 27
2
Odd icecast hiccup problem with low-bandwidth cellular client
Here's a very odd question - I don't know if anybody can even begin to answer. I am attempting something very odd and geeky. I set up an icecast Win32 server streaming a 96kbps mp3 stream (using all the latest as of today software, winamp, icecast2 and oddcast v3) so I can listen to it on my cell phone while at work. My phone does GPRS EDGE data at 131kbps-ish, just barely fast enough to
2015 May 13
2
[LLVMdev] [WinEH] A hiccup for the Windows C++ exception handling
Have got anything started with the dispatchblock plan? From: Reid Kleckner [mailto:rnk at google.com] Sent: Wednesday, May 13, 2015 1:15 PM To: Kaylor, Andrew Cc: David Majnemer <david.majnemer at gmail.com> (david.majnemer at gmail.com); LLVM Developers Mailing List Subject: Re: [WinEH] A hiccup for the Windows C++ exception handling On Wed, May 13, 2015 at 11:03 AM, Kaylor, Andrew
2015 May 13
2
[LLVMdev] [WinEH] A hiccup for the Windows C++ exception handling
I made some progress this afternoon. I now have a set of changes in my local sandbox that allows clang to pass all of the tests in the suite I’ve been using to exercise this code. How do you feel about working these changes into trunk to establish a working baseline, even knowing that parts of this are going to be redesigned? -Andy From: Reid Kleckner [mailto:rnk at google.com] Sent: