Displaying 3 results from an estimated 3 matches for "readfull".
Did you mean:
read_full
2005 Jun 03
1
streaming mp3 files
...but can not stream
any of the mp3 files we are link too from our web site. Here's what I have
in icecast.xml - webroot, were all of our mp3 files are located
<webroot>/opt/websites/kuer/audio</webroot>
website - index.html file, this works with icecast-1.3.12
<a class="readfull"
href="http://audio.kuer.org:8000/playlist.pls?mount=/file/soundscape/number18.mp3&file=dummy.pls">Listen:
Bats Part 1</a>
If I click on the link I get an error "The page cannot be found"
If I change the code to this, were the mp3 file is located, it trys...
2005 Jun 03
0
FW: streaming mp3 files
...but can not stream
any of the mp3 files we are link too from our web site. Here's what I have
in icecast.xml - webroot, were all of our mp3 files are located
<webroot>/opt/websites/kuer/audio</webroot>
website - index.html file, this works with icecast-1.3.12
<a class="readfull"
href="http://audio.kuer.org:8000/playlist.pls?mount=/file/soundscape/number1
8.mp3&file=dummy.pls">Listen:
Bats Part 1</a>
If I click on the link I get an error "The page cannot be found"
If I change the code to this, were the mp3 file is located, it trys...
2000 Aug 07
1
Starting at square one with Vorbis...
...y sound
buffer. We plug sound sources (e.g. wav files, PCM files)
into this streamer by having the sound sources have
an interface something like this:
class SourceDataSourceInterface{
virtual bool Init(char* pSource) = 0;
virtual bool Shutdown() = 0;
virtual bool ReadFull(char** pDest, int* size) = 0;
virtual int ReadPart(char* pDest, int size) = 0;
virtual void* GetFormat() = 0;
};
I want to write some code that can convert Vorbis file
data to raw digital data that the DirectX sound driver can
use. As such, I want to write a version of the...