Displaying 5 results from an estimated 5 matches for "pipe0".
Did you mean:
pipe
2001 Sep 07
0
Re: "simple" question
...to do is simply replace lame/mpg123
> with oggenc/ogg123.
>
> When I run ogg123 I get:
>
> E: input not an Ogg Vorbis audio stream
>
> Here is what I ran with lame:
>
> /usr/local/bin/lame -m j -s 44.100000 -b 128 -r -x --silent --quiet -S -m s .liveice_temp_files/raw.pipe0 .liveice_temp_files/mpeg.pipe0
>
> and here is the oggenc command line (via ps -efwwww):
>
> /usr/bin/oggenc --quiet --raw --raw-chan=2 --raw-bits=16 --raw-rate=44100 --bitrate=128 --output=.liveice_temp_files/mpeg.pipe0 .liveice_temp_files/raw.pipe0
>
> Can you see anything ob...
2004 Aug 06
2
Problem with livice
...system..major 'n00b' so bear with
me :D
<p>When I run ./livice I get the following
-------------------------------------------------------------
/local/liveice/temp.playlist
...... done
setup_pipes()...
Initialising pipes for stream 0
Successfuly set up fifo .liveice_temp_files/raw.pipe0
Successfuly set up fifo .liveice_temp_files/mpeg.pipe0
.... done.
encode()...
hola, encoding...
4
opening connection to 10.0.0.3 8001
Created Socket pair
Attempting to Contact Server
connection successful: forking process
alarm timeout signal
Closing Soundcard
53063:Error: unable to open mpeg pipe...
2004 Aug 06
2
Liveice problem with Icecast 1.3.12
...ecast 2 I've set up an Icecast 1.3.12
server.
<p>When I run Liveice I still get the problem:
-------------------------------------------------------
/local/liveice/temp.playlist
...... done
setup_pipes()...
Initialising pipes for stream 0
Successfuly set up fifo .liveice_temp_files/raw.pipe0
Successfuly set up fifo .liveice_temp_files/mpeg.pipe0
.... done.
encode()...
hola, encoding...
4
opening connection to localhost 8001
Created Socket pair
Attempting to Contact Server
connection successful: forking process
alarm timeout signal
Closing Soundcard
56745:Error: unable to open mpeg pi...
2004 Aug 06
6
Problem with liveice
...gt;When I run ./livice I get the following
>>
>>-------------------------------------------------------------
>>/local/liveice/temp.playlist
>>...... done
>>setup_pipes()...
>>Initialising pipes for stream 0
>>Successfuly set up fifo .liveice_temp_files/raw.pipe0
>>Successfuly set up fifo .liveice_temp_files/mpeg.pipe0
>>.... done.
>>encode()...
>>hola, encoding...
>>4
>>opening connection to 10.0.0.3 8001
>>Created Socket pair
>>Attempting to Contact Server
>>connection successful: forking process
>&...
2011 Oct 22
0
[LLVMdev] Instruction Scheduling Itineraries
...two lists, a list of pipeline stages and a list of
operand latencies. The latency of an instruction is captured by the
latency of its "definition" operands, so latency does not need to be
modeled in the pipeline stages at all.
A 2 wide, 1 deep pipeline (2x1) would be:
[InstrStage<1, [Pipe0, Pipe1]>]
A 2 wide, 4 deep pipeline (2x4) would be:
[InstrStage<1, [Pipe0, Pipe1]>]
Surprise. There is no difference in the pipeline description, because
the units are fully pipelined and we don't need to express latency
here. (I'm only showing the pipeline stages here, not the...