16 lines
351 B
Racket
16 lines
351 B
Racket
#lang racket/base
|
|
|
|
(require "taglib.rkt"
|
|
"audio-sniffer.rkt"
|
|
"audio-player.rkt"
|
|
"opusfile-decoder.rkt"
|
|
)
|
|
|
|
(provide (all-from-out "taglib.rkt")
|
|
(all-from-out "audio-sniffer.rkt")
|
|
(all-from-out "audio-player.rkt")
|
|
current-opusfile-output-format
|
|
opusfile-output-format?
|
|
)
|
|
|