34 lines
975 B
Racket
34 lines
975 B
Racket
#lang scribble/manual
|
|
|
|
@(require racket/runtime-path
|
|
scribble/core
|
|
scribble/html-properties)
|
|
|
|
@(define-runtime-path rktplayer-logo "rktplayer.svg")
|
|
|
|
@(define title-logo-style
|
|
(style #f
|
|
(list (attributes
|
|
'((style . "float: right; margin-left: 1.5em; margin-bottom: 0.5em;"))))))
|
|
|
|
@elem[#:style title-logo-style]{@image[#:scale 0.25 rktplayer-logo]}
|
|
|
|
@title{@elem{racket-audio}}
|
|
|
|
@table-of-contents[]
|
|
|
|
@include-section["intro.scrbl"]
|
|
@include-section["audio-player.scrbl"]
|
|
@include-section["audio-sniffer.scrbl"]
|
|
@include-section["taglib.scrbl"]
|
|
@include-section["play-test.scrbl"]
|
|
@include-section["audio-placed-player.scrbl"]
|
|
@include-section["ffmpeg-decoder.scrbl"]
|
|
@include-section["ffmpeg-definitions.scrbl"]
|
|
@include-section["ffmpeg-ffi.scrbl"]
|
|
@include-section["flac-decoder.scrbl"]
|
|
@include-section["libao.scrbl"]
|
|
@include-section["libao-async-ffi-racket.scrbl"]
|
|
@include-section["mp3-decoder.scrbl"]
|
|
'
|
|
@index-section[] |