The obs-ghostscript plugin is intended to allow an easy way to include a specific PDF document (or other type supported by the Ghostscript library) in your OBS Studio scenes. It should be a simpler alternative to using a window capture source to show the contents of an Acrobat window.
The document is shown one page at a time, and the current page can be updated real-time through an interaction window to scroll through a document live during a capture session.
The binary package mirrors the structure of the OBS Studio installation directory, so you should be able to just drop its contents alongside an OBS Studio install (usually at C:\Program Files (x86)\obs-studio). The necessary files should look like this:
obs-studio
|---data
| |---obs-plugins
| |---obs-ghostscript
| |---locale
| |---en-US.ini
|---obs-plugins
|---32bit
| |---gsdll32.dll
| |---obs-ghostscript.dll
|---64bit
|---gsdll64.dll
|---obs-ghostscript.dlll
The source is called "PDF Document (Ghostscript)" in OBS Studio's source creation menu. The properties to set on it are the path to the document file and the page from the document which should be shown.
Hotkeys are provided to modify the displayed page more quickly while recording/streaming than the source properties dialog allows. These can be set through the main Hotkeys tab in the OBS Studio settings.
You can also manipulate the current page by right-clicking on the source and choosing "Interact". With the source displayed in an interaction window, you can scroll your mouse wheel and change the displayed page, or use the arrow keys or PgUp/PgDown keys. (Note that the source will only receive mouse events if the mouse is hovered over the image shown in the intraction window.)
If the native size of the document is not appropriate for your use case, you can specify settings which will control the size at which it will be rendered. Selecting "Override DPI" and changing the "DPI" option will change the DPI (dots per inch) used when rendering. Increasing this will increase the size in pixels of the document proportionally.
You can also specify the page size Ghostscript uses when interpreting the document by selecting "Override Page Size" and specifying a width and height. These values are in points, not pixels; 1 point is 1/72 inch. The conversion from points to rendered pixels is dependent on the DPI setting, either that contained in the document or the one specified in the source properties. You can choose whether Ghostscript will scale the contents of the document to fit this page size or not as well, but that option is specific to PDF documents.
If you wish to build the obs-ghostscript plugin from source, you should just need CMake, the OBS Studio libraries and headers, and the Ghostscript libraries and headers.
I don't believe that the OBS project provides prebuilt libraries; you're probably going to have the best luck building your own OBS binaries from the source. Refer to the OBS repository for more information on that.
The standard Ghostscript installers do provide binary libraries for linking, but they don't provide the Ghostscript header files. You may have the best luck downloading the binary release for the library, and then harvesting the headers from the source release. You might also be okay just harvesting the necessary headers from Ghostscript's web documentation; obs-ghostscript only uses two headers—psi/api.h and devices/gdevdsp.h. If you download those individually, ensure that they are arranged in the proper folders.
When building in CMake, you will probably need to set three configuration values so your environment can be properly set up:
- OBSSourcePath should refer to the libobs subfolder in the OBS source release. The build pipeline will look for headers in this location, and for libraries in a "build" folder relative to that path (where the OBS build process puts them).
- GSSourcePath should refer to the root folder of a Ghostscript source distribution (or a subset thereof containing the two aforementioned headers).
- GSLibraryPath should refer to a folder containing the gsdll[32|64].lib binary libraries.
Installation logic is provided through CMake as well; you can set the CMAKE_INSTALL_PREFIX configuration value to choose the folder to which the files will be copied. You can also manually copy all files to the locations described above.
This project is licensed under the "Unlicense", because copy[right|left] is a hideous mess to deal with and I don't like it.
The Ghostscript binaries included in binary distributions of this project are copyright Artifex Software, Inc. and licensed under the GNU Affero General Public License (AGPL). The source code is available from locations previously listed in this document. Refer to the Ghostscript project's licensing information for more details.