diff --git a/scrbl/.gitignore b/scrbl/.gitignore new file mode 100644 index 0000000..385e72e --- /dev/null +++ b/scrbl/.gitignore @@ -0,0 +1,3 @@ +*.html +*.css +*.js diff --git a/scrbl/audio-decoder.scrbl b/scrbl/audio-decoder.scrbl index f84e528..bf6c5d2 100644 --- a/scrbl/audio-decoder.scrbl +++ b/scrbl/audio-decoder.scrbl @@ -8,7 +8,7 @@ @title{audio-decoder} @author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]] -@defmodule[(file "../audio-decoder.rkt")] +@defmodule[racket-audio/audio-decoder] This module provides a small abstraction layer over concrete audio decoders. A backend is selected from the filename extension and is then diff --git a/scrbl/audio-sniffer.scrbl b/scrbl/audio-sniffer.scrbl index 83c0dad..4846f49 100644 --- a/scrbl/audio-sniffer.scrbl +++ b/scrbl/audio-sniffer.scrbl @@ -7,7 +7,7 @@ @title{audio-sniffer} @author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]] -@defmodule[(file "../audio-sniffer.rkt")] +@defmodule[racket-audio/audio-sniffer] This module provides functionality to detect audio file formats based on file contents (signature sniffing) and, optionally, file extensions. diff --git a/scrbl/ffmpeg-decoder.scrbl b/scrbl/ffmpeg-decoder.scrbl index a84c7d3..70cd0be 100644 --- a/scrbl/ffmpeg-decoder.scrbl +++ b/scrbl/ffmpeg-decoder.scrbl @@ -9,7 +9,7 @@ @title{FFmpeg Decoder} @author{@author+email["Hans Dijkema" "hans@dijkewijk.nl"]} -@defmodule[(file "../ffmpeg-decoder.rkt")] +@defmodule[racket-audio/ffmpeg-decoder] This module provides an audio decoder based on the FFmpeg audio shim. It uses the lower-level @racketmodname[racket-sound/ffmpeg-ffi] module and presents a diff --git a/scrbl/ffmpeg-ffi.scrbl b/scrbl/ffmpeg-ffi.scrbl index fca3886..a42c4db 100644 --- a/scrbl/ffmpeg-ffi.scrbl +++ b/scrbl/ffmpeg-ffi.scrbl @@ -9,7 +9,7 @@ @title{FFmpeg FFI} @author{@author+email["Hans Dijkema" "hans@dijkewijk.nl"]} -@defmodule[(file "../ffmpeg-ffi.rkt")] +@defmodule[racket-audio/ffmpeg-ffi] This module provides the low-level Racket FFI binding for the native FFmpeg audio shim. The native shim exposes an opaque FFmpeg instance and diff --git a/scrbl/flac-decoder.scrbl b/scrbl/flac-decoder.scrbl index ee69eaf..88def06 100644 --- a/scrbl/flac-decoder.scrbl +++ b/scrbl/flac-decoder.scrbl @@ -9,7 +9,7 @@ @title{flac-decoder} @author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]] -@defmodule[(file "../flac-decoder.rkt")] +@defmodule[racket-audio/flac-decoder] This module provides a small decoder interface on top of the FLAC FFI layer. It opens a decoder for a file, reads stream metadata, diff --git a/scrbl/libao.scrbl b/scrbl/libao.scrbl index f3293cb..fd82bbc 100644 --- a/scrbl/libao.scrbl +++ b/scrbl/libao.scrbl @@ -9,7 +9,7 @@ @title{libao} @author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]] -@defmodule[(file "../libao.rkt")] +@defmodule[racket-audio/libao] This module provides a small high-level interface to an asynchronous audio output backend. It opens a live output device or a file output, diff --git a/scrbl/mp3-decoder.scrbl b/scrbl/mp3-decoder.scrbl index 9d9af49..d6fe521 100644 --- a/scrbl/mp3-decoder.scrbl +++ b/scrbl/mp3-decoder.scrbl @@ -9,7 +9,7 @@ @title{mp3-decoder} @author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]] -@defmodule[(file "../mp3-decoder.rkt")] +@defmodule[racket-audio/mp3-decoder] This module provides an MP3 decoder backend. It opens an MP3 file, reports stream information through a callback, streams decoded PCM