a few adrdox fixups

This commit is contained in:
Adam D. Ruppe 2024-08-20 16:06:01 -04:00
parent d646bc17ca
commit a49f64893c
1 changed files with 18 additions and 12 deletions

View File

@ -8,6 +8,7 @@
[arsd.pixmappaint.Pixmap|Pixmap] frames by piping them to [arsd.pixmappaint.Pixmap|Pixmap] frames by piping them to
[FFmpeg](https://ffmpeg.org/about.html). [FFmpeg](https://ffmpeg.org/about.html).
$(SIDEBAR $(SIDEBAR
Piping frame data into an independent copy of FFmpeg Piping frame data into an independent copy of FFmpeg
enables this library to be used with a wide range of versions of said enables this library to be used with a wide range of versions of said
@ -73,7 +74,7 @@
// […] // […]
recorder.record(presenter.framebuffer); recorder.record(presenter.framebuffer);
return LoopCtrl.redrawIn(16); return LoopCtrl.redrawIn(16);
} });
--- ---
) )
@ -94,16 +95,21 @@
#### Getting started #### Getting started
1. Install FFmpeg (the CLI version). $(NUMBERED_LIST
- Debian derivatives (with FFmpeg in their repos): `apt install ffmpeg` * Install FFmpeg (the CLI version).
- Homebew: `brew install ffmpeg` $(LIST
- Chocolatey: `choco install ffmpeg` * Debian derivatives (with FFmpeg in their repos): `apt install ffmpeg`
- Links to pre-built binaries can be found on <https://ffmpeg.org/download.html>. * Homebew: `brew install ffmpeg`
2. Determine where youve installed FFmpeg to. * Chocolatey: `choco install ffmpeg`
Ideally, its somewhere within PATH so it can be run from the * Links to pre-built binaries can be found on <https://ffmpeg.org/download.html>.
command-line by just doing `ffmpeg`. )
Otherwise, youll need the specific path to the executable to pass it
to the constructor of [PixmapRecorder]. * Determine where youve installed FFmpeg to.
Ideally, its somewhere within PATH so it can be run from the
command-line by just doing `ffmpeg`.
Otherwise, youll need the specific path to the executable to pass it
to the constructor of [PixmapRecorder].
)
--- ---
import arsd.pixmaprecorder; import arsd.pixmaprecorder;