diff options
author | kris <kris@FreeBSD.org> | 2001-01-29 16:24:02 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-01-29 16:24:02 +0800 |
commit | 068ec0c54eec6bc9906a64bb91a5c47d8a346f45 (patch) | |
tree | 4fab41885a407ed2c97868eb976622993d3c8196 /audio/linux-vsound/pkg-descr | |
parent | 015ad0b91b63e8eacd05067a3a3abd2e41317c1b (diff) | |
download | freebsd-ports-gnome-068ec0c54eec6bc9906a64bb91a5c47d8a346f45.tar.gz freebsd-ports-gnome-068ec0c54eec6bc9906a64bb91a5c47d8a346f45.tar.zst freebsd-ports-gnome-068ec0c54eec6bc9906a64bb91a5c47d8a346f45.zip |
vsound 0.4 is a utility which interposes itself between an application
and /dev/dsp using a dynamic preloaded library. It saves the audio
stream to an .au or .wav file as it is played. This is useful for certain
dynamically-linked Linux binary applications.
Diffstat (limited to 'audio/linux-vsound/pkg-descr')
-rw-r--r-- | audio/linux-vsound/pkg-descr | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/audio/linux-vsound/pkg-descr b/audio/linux-vsound/pkg-descr new file mode 100644 index 000000000000..a896c73f69ff --- /dev/null +++ b/audio/linux-vsound/pkg-descr @@ -0,0 +1,18 @@ +This program allows you to record the output of any standard OSS +program (one that uses /dev/dsp for sound) without having to modify or +recompile the program. It uses the same idea as the esddsp wrapper +from the Enlightened Sound Daemon (in fact, vsound is based on +esddsp). That is, it preloads a library that intercepts calls to open +/dev/dsp, and instead returns a handle to a normal file. It also +intercepts ioctl's on that file handle and logs them, to help convert +the audio data from its raw form. Vsound then uses sox to convert the +raw data to the desired file format. + +The upshoot of this is that instead of playing sound to the sound card +in your computer, the data is recorded to a file. This is similar to +if you connected a loopback cable to the line in and line out jacks on +your sound card, but no DA or AD conversions take place, so quality is +not lost. + +Erik de Castro Lopo <erikd@zip.com.au> +WWW: http://www.zip.com.au/~erikd/vsound/ |