Displaying 12 results from an estimated 12 matches for "shout_send_raw".
2004 Aug 06
1
can't compile ices 2 on ppc
...ation truncated to fit: R_PPC_REL24 shout_close
stream.o(.text+0xae0): undefined reference to `shout_free'
stream.o(.text+0xae0): relocation truncated to fit: R_PPC_REL24 shout_free
stream_shared.o: In function `process_and_send_buffer':
stream_shared.o(.text+0x29c): undefined reference to `shout_send_raw'
stream_shared.o(.text+0x29c): relocation truncated to fit: R_PPC_REL24 shout_send_raw
stream_shared.o(.text+0x3c4): undefined reference to `shout_send_raw'
stream_shared.o(.text+0x3c4): relocation truncated to fit: R_PPC_REL24 shout_send_raw
stream_shared.o(.text+0x438): undefined referenc...
2004 Aug 06
3
Problems with libshout2
...to post this, but I am having
problems with cutouts in my streams using libshout2. I am taking audio
files and re-encoding them at 32Kbs and then streaming them. Problem is
that every 20 secs or so, the stream cuts out for about 5-10 secs and
then continues. Any ideas as to why? Should I try using shout_send_raw?
Thanks in advance!!
Deven Phillips
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to 'icecast-dev-request@xiph.org'
containing only the word 'unsubscribe' in the body....
2013 Jun 24
3
Streaming AAC with libshout?
...oder, available there:
https://github.com/mstorsjo/fdk-aac
offers pretty good quality.
As for libshout, I do not think that it is currently posible to send
AAC data using it. First, libshout doesn't have support to buffer and
control timing of data sent. And even is you use the un-timed API
(shout_send_raw), the library cannot set the proper mime type, due to
a limited list of possible values.
Romain
2013/6/24 Greg Ogonowski <greg at indexcom.com>:
> The open source AAC/HE-AAC encoders offer pretty poor audio quality.
> You really want encoder that uses the Coding Technologies, now Dolb...
2004 Aug 06
1
libshout nonblocking API
...May return additional error codes, or SHOUTERR_BUSY if the
connection still hasn't finished opening.
shout_open:
May return SHOUTERR_BUSY as a non-fatal error. In this case, the
client should call shout_get_connected() periodically until that
function stops returning SHOUTERR_BUSY.
shout_send
shout_send_raw:
May return SHOUTERR_BUSY if they couldn't send the entire buffer. In
this case, the remaining data will be queued internally. To flush
the buffer, call the function with a 0 length buffer until it stops
returning SHOUTERR_BUSY.
Comments? I've already implemented a lot of this, but it'...
2006 Jul 20
1
libshout: Streaming MPEG Audio Layer 2
Hi,
I have been trying to stream MPEG Audio Layer 2 using libshout in my
dvbshout program:
http://www.ecs.soton.ac.uk/~njh/dvbshout/
However I have been using the shout_send_raw() API call because the
MPEG audio header parser rejects audio that isn't Layer 3. Streaming
layer 2 works in exactly the same way as Layer 3 and without any
problems.
Would it be possible to get src/mp3.c changed so that it accepts
other layers?
From (line 299):
/* check for the r...
2004 Aug 06
2
More libshout questions
Okay,
I am using libshout to stream to a NullSoft Shoutcast server. I am
using libmad and libmp3lame to do re-encoding on the fly. I am streaming
to the server (currently) with shout_send_raw(). When I try to use
shout_metadata_add(), I get a segfault in strdup(). Anyone have any
ideas as to why? Everything else works fine, just not the metadata.
Thanks In Advance,
Deven
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To u...
2006 Jun 18
1
Unexpected ezstream exit
Hi,
I've been working on a customized version of ezstream and I've been
noticing that with a particular setup after playing particular tracks
ezstream terminates. I say terminates because there are no error
messages, it just exits. I've tried this on both my version and the
stock version available via icecast.org just be certain and it happens
with both versions.
I'm
2004 Aug 06
0
ices2 build errors
...with all versions that I have tried, I became these build error:
ices.o(.text+0x149):/root/ices-2.0-Beta2/src/ices.c:91: undefined reference
to `shout_shutdown'
stream_shared.o(.text+0x30): In function `stream_send_data':
/root/ices-2.0-Beta2/src/stream_shared.c:47: undefined reference to
`shout_send_raw'
collect2: ld returned 1 exit status
make[3]: *** [ices] Error 1
make[3]: Leaving directory `/root/ices-2.0-Beta2/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/ices-2.0-Beta2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/ices-2...
2004 Aug 06
0
More libshout questions
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Fri, 16 Jan 2004, Deven Phillips wrote:
> Okay,
>
> I am using libshout to stream to a NullSoft Shoutcast server. I am
> using libmad and libmp3lame to do re-encoding on the fly. I am streaming
> to the server (currently) with shout_send_raw(). When I try to use
> shout_metadata_add(), I get a segfault in strdup(). Anyone have any
> ideas as to why? Everything else works fine, just not the metadata.
Get the source file line number and a gdb full backtrace.
ex. gdb /path/to/your/program
gdb$ run <parameters-of-your-program>...
2013 Jun 24
4
Streaming AAC with libshout?
Hi,
I am wondering how to add AAC support to GStreamer's shout2send element.
Support for this format seems to be enabled in icecast for a while and it
would be nice if one of the major open source frameworks would have been
capable of streaming such content.
GStreamer's shout2send relies on the libshout library but it defines only
two formats - MP3 and Vorbis. There is no single word in
2004 Aug 06
2
More libshout questions
...;Hash: SHA1
>
>On Fri, 16 Jan 2004, Deven Phillips wrote:
>
>
>
>>Okay,
>>
>> I am using libshout to stream to a NullSoft Shoutcast server. I am
>>using libmad and libmp3lame to do re-encoding on the fly. I am streaming
>>to the server (currently) with shout_send_raw(). When I try to use
>>shout_metadata_add(), I get a segfault in strdup(). Anyone have any
>>ideas as to why? Everything else works fine, just not the metadata.
>>
>>
>
>Get the source file line number and a gdb full backtrace.
>ex. gdb /path/to/your/program
>...
2004 Aug 06
4
intended login protocol for icecast2
well, don't get me wrong, I am not generally opposed to progress, but
speaking as a coder of source clients, providing yet another authentication
mechanism is a bit frustrating....
I guess it wasn't too bad having to deal with Shoutcast/Icecast/Icecast2
specific connection protocols (yes they are ALL different!) but I am NOT
going to support Shoutcast/ICecast/Icecast2 (ICE