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;
@ -393,7 +399,7 @@ final class PixmapRecorder : OutputRange!(const(Pixmap)) {
This function sets the video resolution for the encoding process. This function sets the video resolution for the encoding process.
All frames to record must match it. All frames to record must match it.
$(SIDEBAR $(SIDEBAR
Variable/dynamic resolution is neither supported by this library Variable/dynamic resolution is neither supported by this library
nor by most real-world applications. nor by most real-world applications.