I haven't seen this in the options, and have been unsuccessful in trying it... Is there any way to set oggenc to accept data (file) input from stdin? basically do a raw PCM stream from CDParanoia -> oggenc without an intermediary file. Thanks! --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On Mon, Mar 19, 2001 at 04:02:09PM -0700, Troy Telford wrote:> I haven't seen this in the options, and have been unsuccessful in trying > it... > > Is there any way to set oggenc to accept data (file) input from stdin? > > basically do a raw PCM stream from CDParanoia -> oggenc without an > intermediary file.I use fifo's for this effect, you can hack a script to wrap cdparanoia and create the .wav file as a fifo first, then both programs can read/write as the buffers get filled without a bunch of temp space wasted on the drive. Marc --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Troy Telford wrote:> I haven't seen this in the options, and have been unsuccessful in trying > it... > > Is there any way to set oggenc to accept data (file) input from stdin? > > basically do a raw PCM stream from CDParanoia -> oggenc without an > intermediary file.I use: cdparanoia -q 1 - | oggenc -q -b 112 - > foo.ogg Frank -- Frank Heckenbach, frank@g-n-u.de http://fjf.gnu.de/ PGP and GPG keys: http://fjf.gnu.de/plan --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Troy Telford <troyt@myrealbox.com> wrote:> I haven't seen this in the options, and have been unsuccessful in trying > it...Quoting from the oggenc(1) man page of vorbis-tools-1.0beta4: "If the input file '-' is specified, audio data is read from stdin and the Vorbis stream is written to stdout unless the -o option is used to redirect the output." Doesn't this work? -- Christian "naddy" Weisgerber naddy@mips.inka.de --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Hi: I use: cdparanoia -q -z 1 - |oggenc -o track1.ogg - where 1 is track 1 on the CD. Works fine for me. Note that if you want to use raw input then you need the -r or --raw switch and it needs to be 44100 hz 16 bit stereo PCM. Geoff. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.