search for: streamfil

Displaying 11 results from an estimated 11 matches for "streamfil".

Did you mean: streamfile
2004 Mar 06
3
access violation in ov_open using VC6
I passed a valid FILE* (from fopen() with "rb") and the address of an OggVorbis_File struct, but an access violation occured when ov_open is called. I have enabled the Multithreaded, but it still doesn't fix the problem. I look at the vorbis_comment.exe source and I see vcedit_open() function and other vcedit_*() functions everywhere. I am assuming that there is known issue with VC
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
2007 Jun 19
0
Straming question with ezstream
Thanks all, ezstream works really nice. I notice when I run it like this though: cat ./file.wav|oggenc -|ezstream -c ./ezstream.conf everything works fine until I get to the end of the file then I start getting endless lines of this: ezstream: streamFile(): Error while reading 'stdin': Bad file descriptor Is this because of the way I'm running ezstream or because I'm cat'ing the input file? I checked the file and it has an EOF in it. I notice if I redirect stdout to /dev/null the errors stop but I have to cancel the progr...
2009 Aug 18
1
Play Fake ring in phpagi
> I'm going blind searching - maybe you know? > > During the execution of a script I want to play fake ring to caller. > Both of these examples complain of missing option: > > $agi->exec("Ringing"); > $agi->exec("Playtones ring"); > > Notice: Undefined variable: options in > /var/lib/asterisk/agi-bin/includes/phpagi.php on line 326
2005 Jan 14
2
ezstream keeps getting glibc error on song
Hello everyone, I just setup an mp3 streaming server on an old laptop I had laying around using icecast and ezstream. The problem I am having is that when ezstream gets to a certain song in a playlist I get the error "*** glibc detected *** free(): invalid next size (fast): 0x080576e0 ***". I'm not sure if it is doing this because of the song number it is or if it is a
2005 Jan 08
0
eztream broken pipe, 0.2.0 doesnt compile
...le='.deps/ezstream.TPo' \ depmode=gcc3 /bin/sh ../depcomp \ gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -ffast-math -fsigned-char -I/usr/include -I/usr/local/include -I/usr/include/libxml2 -pthread -g -O2 -c `test -f 'ezstream.c' || echo './'`ezstream.c ezstream.c: In function `streamFile': ezstream.c:385: warning: implicit declaration of function `sleep' ezstream.c:351: warning: `ret' might be used uninitialized in this function ezstream.c: In function `streamPlaylist': ezstream.c:406: warning: unused variable `ret' ezstream.c: In function `main': ezstream....
2005 Jan 05
2
eztream broken pipe
I discovered an interesting problem with ezstream. I'm using version 1.2. I see 2 is listed on the website but appears to be a broken link. Otherwise I'd try it to see if it exhibits the same problem. I'm using ezstream as a fallback mount for a radio station. It plays a 30 second ogg file over and over. The ogg file is just a 5 second message with 25 seconds of silence
2014 Dec 19
2
[LLVMdev] [Patches][RFC] What to do about bitcode streaming.
Hi Rafael, Would you mind waiting for Derek to come back from vacation to discuss this? We do use this code and could improve how it's used and tested within LLVM. Derek is the best person to discuss this, he'll be back in mid-January. Thanks, JF On Fri, Dec 19, 2014 at 6:41 AM, Rafael EspĂ­ndola < rafael.espindola at gmail.com> wrote: > > > I CC'ed llvmdev to put a
2005 Feb 21
2
theora streaming problem...
...k.org/guides/video.php, but ezstream does not compile for me. it bails out with gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -ffast-math -fsigned-char -I/usr/local/include -I/usr/include/libxml2-pthread -g -O2 -c `test -f 'ezstream.c' || echo './'`ezstream.c ezstream.c: In function `streamFile': ezstream.c:385: warning: implicit declaration of function `sleep' ezstream.c: In function `streamPlaylist': ezstream.c:406: warning: unused variable `ret' ezstream.c: In function `main': ezstream.c:576: error: `SHOUT_FORMAT_OGG' undeclared (first use in this function) ez...
2009 Feb 25
5
AGI problem using mono (.Net)
Hello. I have a software developer creating a .Net / mono program to use as an AGI script. We are having problems getting it to stream files. From what we can tell, it is talking to asterisk correctly when called from the dial plan. Its stderr output goes to the asterisk console. But asterisk doesn't give any indication that it receives the STREAM FILE command. Asterisk simply quickly
2014 Dec 19
2
[LLVMdev] [Patches][RFC] What to do about bitcode streaming.
...unsigned char *bitcodeEnd = buf + 16; - SkipBitcodeWrapperHeader(bitcodeStart, bitcodeEnd, false); - Bytes.dropLeadingBytes(bitcodeStart - buf); - Bytes.setKnownObjectSize(bitcodeEnd - bitcodeStart); - } + uint64_t Skip = BufPtr - OrigBufPtr; + uint64_t Size = BufEnd - BufPtr + Skip; + StreamFile->setSize(Size); + Stream.JumpToBit(Skip * 8); Not quite clear to me that this is the same. Do we have a test of llvm-dis w/ files that have a bitcode wrapper + misc data surrounding the true bitcode contents? The old dropLeadingBytes would track how many bytes were skipped so that later, rea...