Sync the bundled .proto definitions with greyshirtguy/ProPresenter7-Proto "Proto 19beta" (dumped from ProPresenter v19 beta build 318767123, 2025-06-05). This pulls in the schema for ProPresenter 19 features including new advertisement groups, custom options, media metadata, prop API v1, transport API, feature flags, PSB workspace, and zone definitions, plus refactored analytics tracked events. Strategy: merge rather than wholesale replace. All Proto 19beta files overwrite our existing copies so we pick up the field/message updates upstream made between 7.16.2 and 19beta. Eleven new .proto files are added: advertisementGroup, analyticsEdit, analyticsMediaManagement, analyticsPowerPoint, analyticsTrackedEvents, analyticsTriggerCue, customOptions, mediaMetadata, proCoreFeatureFlags, psbWorkspace, zone. Three google/protobuf well-known types (any, source_context, type) are added for completeness; only descriptor.proto is actually imported. Five proto files are kept that are not part of Proto 19beta upstream: calendar.proto and keyMappings.proto were extracted from PP binaries to support our parse-calendar and parse-key-mappings tools, while analyticsCapture/Update/WHMStore.proto are retained from the prior 7.16.2 set so existing generated descriptors keep loading. generated/ is regenerated from scratch with `protoc --php_out=generated --proto_path=proto *.proto` (protoc 29.3, google/protobuf PHP 4.33.5). The full PHPUnit suite (369 tests, 1298 assertions) still passes without any source changes - the new schema is wire-compatible with our reference files and high-level wrappers. Documentation references to "v7.16.2" are updated to "Proto 19beta" in LICENSE, doc/formats/pp_song_spec.md, pp_playlist_spec.md, pp_bundle_spec.md, and doc/internal/decisions.md. |
||
|---|---|---|
| bin | ||
| doc | ||
| generated | ||
| proto | ||
| src | ||
| tests | ||
| .gitignore | ||
| AGENTS.md | ||
| composer.json | ||
| composer.lock | ||
| LICENSE | ||
| phpunit.xml | ||
| README.md | ||
ProPresenter 7 PHP Library
A PHP library to read, modify, and generate ProPresenter 7 files — songs, playlists, bundles, themes, and global library files.
ProPresenter 7 stores its data in protobuf-encoded binary files (with ZIP wrappers for playlists and bundles). This library decodes those formats into idiomatic PHP objects, lets you modify them, and writes them back out — with full round-trip fidelity for global library files and verified compatibility with PP7 for songs and bundles.
Table of Contents
- Features
- Requirements
- Installation
- Getting Started
- CLI Tools
- Documentation
- Project Structure
- Development
- Compatibility & Caveats
- Contributing
- License
- Credits
Features
File formats supported
| Format | Extension | Read | Modify | Generate | Notes |
|---|---|---|---|---|---|
| Song | .pro |
✅ | ✅ | ✅ | Lyrics, groups, slides, arrangements, translations, CCLI metadata, macros, media |
| Playlist | .proplaylist |
✅ | ✅ | ✅ | ZIP64 archive, embedded songs, headers, placeholders |
| Bundle | .probundle |
✅ | ✅ | ✅ | ZIP archive containing a song + flat media assets |
| Theme | folder | ✅ | ✅ | ✅ | Theme protobuf + Assets/ directory |
| Macros | Macros |
✅ | ✅ | — | Macros + collections |
| Labels | Labels |
✅ | ✅ | — | Slide labels with optional UI colors |
| Groups | Groups |
✅ | ✅ | — | Library groups (UUID, color, hot keys) |
| ClearGroups | ClearGroups |
✅ | ✅ | — | Clear-action groups |
| CCLI | CCLI |
✅ | ✅ | — | License, copyright template |
| Messages | Messages |
✅ | ✅ | — | Lower-third / overlay messages |
| Timers | Timers |
✅ | ✅ | — | Timer definitions + clock format |
| Stage | Stage |
✅ | ✅ | — | Stage display layouts |
| Workspace | Workspace |
✅ | ✅ | — | Screens, looks, masks, audio/video inputs |
| Props | Props |
✅ | ✅ | — | Prop cues + transitions |
| TestPatterns | TestPatterns |
✅ | ✅ | — | Test pattern overrides |
| Calendar | Calendar |
✅ | ✅ | — | Scheduled events firing macros |
| KeyMappings | KeyMappings |
✅ | ✅ | — | Custom hot-key bindings |
| CommunicationDevices | JSON | ✅ | ✅ | — | MIDI / serial / OSC bindings |
Highlights
- High-level wrappers — work with
Song,Group,Slide,Arrangement,PlaylistArchiveetc. instead of raw protobuf classes. - RTF text extraction —
Slide::getPlainText()returns clean text from ProPresenter's CocoaRTF, including German umlauts and Unicode. - Translation-aware — read and write multi-language slides (
hasTranslation(),getTranslation()). - ZIP64 repair — automatically fixes ProPresenter's 98-byte ZIP64 header bug on read.
- Generate from scratch — build complete
.proand.proplaylistfiles programmatically with media references. - 18 CLI tools — quickly inspect any ProPresenter file from the command line.
- 369 tests, 1,300+ assertions — covering all readers, writers, generators, and round-trip fidelity against a synthetic test corpus.
- Comprehensive docs — every API and binary format is documented in
doc/.
Requirements
- PHP 8.4 or higher
google/protobuf(installed via Composer)ext-zipfor.proplaylistand.probundlefiles (bundled with most PHP distributions)
Installation
composer require bussnet/propresenter7-php-lib
Or clone the repository to develop locally:
git clone https://github.com/bussnet/propresenter7-php-lib.git
cd propresenter7-php-lib
composer install
Getting Started
All examples assume Composer's autoloader is loaded:
require 'vendor/autoload.php';
1. Read a song (.pro)
use ProPresenter\Parser\ProFileReader;
$song = ProFileReader::read('path/to/Amazing Grace.pro');
echo $song->getName() . "\n"; // "Amazing Grace"
echo $song->getCcliAuthor() . "\n"; // "John Newton"
echo $song->getCcliCopyrightYear() . "\n"; // 1779
// Walk groups → slides → text
foreach ($song->getGroups() as $group) {
echo "[{$group->getName()}]\n";
foreach ($song->getSlidesForGroup($group) as $slide) {
echo " " . $slide->getPlainText() . "\n";
if ($slide->hasTranslation()) {
echo " → " . $slide->getTranslation()->getPlainText() . "\n";
}
}
}
// Resolve an arrangement to a flat list of groups (in performance order)
$arrangement = $song->getArrangements()[0];
foreach ($song->getGroupsForArrangement($arrangement) as $group) {
echo $group->getName() . " → ";
}
2. Modify and save a song
use ProPresenter\Parser\ProFileReader;
use ProPresenter\Parser\ProFileWriter;
$song = ProFileReader::read('input.pro');
// Update CCLI metadata
$song->setName('Amazing Grace (My Chains Are Gone)');
$song->setCcliPublisher('Public Domain');
$song->setCcliCopyrightYear(2006);
// Rename a group
$song->getGroupByName('Verse 1')?->setName('Strophe 1');
// Add a label to the first slide
$song->getSlides()[0]->setLabel('Intro');
ProFileWriter::write($song, 'output.pro');
3. Generate a song from scratch
use ProPresenter\Parser\ProFileGenerator;
ProFileGenerator::generateAndWrite(
'amazing-grace.pro',
'Amazing Grace',
[
[
'name' => 'Verse 1',
'color' => [0.13, 0.59, 0.95, 1.0], // RGBA floats (0..1)
'slides' => [
['text' => "Amazing grace, how sweet the sound\nThat saved a wretch like me"],
[
'text' => 'I once was lost, but now am found',
'translation' => 'Ich war verloren, doch jetzt gefunden',
],
],
],
[
'name' => 'Chorus',
'color' => [0.95, 0.27, 0.27, 1.0],
'slides' => [
['text' => 'My chains are gone, I have been set free'],
],
],
],
[
['name' => 'normal', 'groupNames' => ['Verse 1', 'Chorus', 'Verse 1', 'Chorus']],
],
[
'author' => 'John Newton',
'song_title' => 'Amazing Grace',
'copyright_year' => 1779,
],
);
4. Read a playlist (.proplaylist)
use ProPresenter\Parser\ProPlaylistReader;
$archive = ProPlaylistReader::read('Sunday Service.proplaylist');
echo $archive->getName() . "\n";
foreach ($archive->getEntries() as $entry) {
echo match ($entry->getType()) {
'header' => "── {$entry->getName()} ──\n",
'presentation' => " ♪ {$entry->getName()} (arr: " . ($entry->getArrangementName() ?? 'default') . ")\n",
'placeholder' => " · {$entry->getName()} (TBD)\n",
default => " ? {$entry->getName()}\n",
};
// Lazily parse embedded .pro files
if ($entry->getType() === 'presentation') {
$song = $archive->getEmbeddedSong($entry);
if ($song !== null) {
echo " → " . count($song->getSlides()) . " slides\n";
}
}
}
5. Generate a playlist
use ProPresenter\Parser\ProPlaylistGenerator;
ProPlaylistGenerator::generateAndWrite(
'sunday-service.proplaylist',
'Sunday Service',
[
['type' => 'header', 'name' => 'Worship', 'color' => [0.95, 0.27, 0.27, 1.0]],
['type' => 'presentation', 'name' => 'Amazing Grace', 'path' => 'file:///Songs/amazing-grace.pro', 'arrangement' => 'normal'],
['type' => 'presentation', 'name' => 'Oceans', 'path' => 'file:///Songs/oceans.pro'],
['type' => 'header', 'name' => 'Sermon'],
['type' => 'placeholder', 'name' => 'Sermon notes'],
],
['notes' => 'Sunday morning service'],
);
6. Work with a .probundle
A .probundle is a ZIP archive containing a single .pro file plus its referenced media — perfect for sharing presentations between machines.
use ProPresenter\Parser\ProBundleReader;
use ProPresenter\Parser\ProBundleWriter;
use ProPresenter\Parser\PresentationBundle;
use ProPresenter\Parser\ProFileGenerator;
// Read
$bundle = ProBundleReader::read('Christmas Slides.probundle');
echo $bundle->getName() . "\n";
echo $bundle->getMediaFileCount() . " media files\n";
foreach ($bundle->getMediaFiles() as $filename => $bytes) {
echo " $filename: " . strlen($bytes) . " bytes\n";
}
// Build a new bundle (media uses ROOT_CURRENT_RESOURCE → portable across machines)
$song = ProFileGenerator::generate(
'My Slides',
[[
'name' => 'Background',
'color' => [0.2, 0.2, 0.2, 1.0],
'slides' => [[
'media' => 'background.png',
'format' => 'png',
'label' => 'background.png',
'bundleRelative' => true,
]],
]],
[['name' => 'normal', 'groupNames' => ['Background']]],
);
$bundle = new PresentationBundle(
$song,
'My Slides.pro',
['background.png' => file_get_contents('background.png')],
);
ProBundleWriter::write($bundle, 'my-slides.probundle');
7. Read a global library file
ProPresenter stores its global library in extension-less protobuf files inside the user library folder. Each is exposed through a dedicated reader/writer:
use ProPresenter\Parser\MacrosFileReader;
use ProPresenter\Parser\MacrosFileWriter;
$library = MacrosFileReader::read('/path/to/Macros');
foreach ($library->getMacros() as $macro) {
echo $macro->getName() . " — " . $macro->getUuid() . "\n";
}
// Add a macro programmatically
$library->addMacro('Service Start', '00000000-0000-0000-0000-000000000001');
$library->getMacroByName('Service Start')?->setColor(['r' => 0.0, 'g' => 0.5, 'b' => 1.0]);
MacrosFileWriter::write($library, '/path/to/Macros');
The same Reader::read() / Writer::write() pattern applies to every global library file. See doc/api/ for the full set.
CLI Tools
Every supported file type ships with an inspector script in bin/:
php bin/parse-song.php path/to/song.pro
php bin/parse-playlist.php path/to/playlist.proplaylist
php bin/parse-theme.php path/to/ThemeFolder
php bin/parse-macros.php ~/Library/.../Macros
php bin/parse-labels.php ~/Library/.../Labels
php bin/parse-groups.php ~/Library/.../Groups
php bin/parse-clear-groups.php ~/Library/.../ClearGroups
php bin/parse-ccli.php ~/Library/.../CCLI
php bin/parse-messages.php ~/Library/.../Messages
php bin/parse-timers.php ~/Library/.../Timers
php bin/parse-stage.php ~/Library/.../Stage
php bin/parse-workspace.php ~/Library/.../Workspace
php bin/parse-props.php ~/Library/.../Props
php bin/parse-test-patterns.php ~/Library/.../TestPatterns
php bin/parse-calendar.php ~/Library/.../Calendar
php bin/parse-key-mappings.php ~/Library/.../KeyMappings
php bin/parse-communication-devices.php ~/Library/.../CommunicationDevices
Example output for parse-song.php:
Song: Amazing Grace
UUID: A1B2C3D4-...
CCLI Metadata:
Song Title: Amazing Grace
Author: John Newton
Copyright Year: 1779
Display: yes
Groups (3):
[1] Verse 1 (2 slides)
Slide 1: Amazing grace, how sweet the sound / That saved a wretch like me
Slide 2: I once was lost, but now am found
[2] Chorus (1 slide)
Slide 1: My chains are gone, I have been set free
...
Arrangements (1):
[1] normal: Verse 1 -> Chorus -> Verse 1 -> Chorus
Documentation
Full documentation lives in doc/ — start with doc/INDEX.md.
API reference
| Topic | Document |
|---|---|
Songs (.pro) |
doc/api/song.md |
Playlists (.proplaylist) |
doc/api/playlist.md |
Bundles (.probundle) |
doc/api/bundle.md |
| Themes (folder) | doc/api/theme.md |
| Macros library | doc/api/macros.md |
| Labels library | doc/api/labels.md |
| Groups library | doc/api/groups.md |
| ClearGroups library | doc/api/clear-groups.md |
| CCLI settings | doc/api/ccli.md |
| Messages library | doc/api/messages.md |
| Timers library | doc/api/timers.md |
| Stage layouts | doc/api/stage.md |
| Workspace | doc/api/workspace.md |
| Props library | doc/api/props.md |
| TestPatterns | doc/api/test-patterns.md |
| Calendar | doc/api/calendar.md |
| KeyMappings | doc/api/key-mappings.md |
| CommunicationDevices | doc/api/communication-devices.md |
Binary format specifications
| Format | Document |
|---|---|
.pro (songs) |
doc/formats/pp_song_spec.md |
.proplaylist |
doc/formats/pp_playlist_spec.md |
.probundle |
doc/formats/pp_bundle_spec.md |
Search by keyword
Looking for something specific? Use the keyword index: doc/keywords.md.
Project Structure
.
├── bin/ # 18 CLI tools (parse-*.php scripts)
├── src/ # PHP source (wrappers, readers, writers, generators)
├── generated/ # Auto-generated protobuf PHP classes (Rv\Data\…)
├── proto/ # Vendored .proto files (greyshirtguy/ProPresenter7-Proto, Proto 19beta + extras)
├── tests/ # PHPUnit test suite (369 tests)
├── doc/
│ ├── INDEX.md # Documentation entry point
│ ├── keywords.md # Keyword search index
│ ├── CONTRIBUTING.md # Documentation guidelines
│ ├── api/ # PHP API documentation
│ ├── formats/ # Binary file format specifications
│ ├── internal/ # Development notes (learnings, decisions, issues)
│ └── reference_samples/ # Reference files used by tests (real-world songs)
├── composer.json
├── phpunit.xml
├── LICENSE
└── README.md
Key classes
| Class | Purpose |
|---|---|
ProPresenter\Parser\Song |
Top-level song wrapper (groups + slides + arrangements) |
ProPresenter\Parser\Group |
Song part (verse, chorus, …) |
ProPresenter\Parser\Slide |
Single slide with text, label, macro, media |
ProPresenter\Parser\TextElement |
Text element with RTF + plain-text accessors |
ProPresenter\Parser\Arrangement |
Group order for a performance |
ProPresenter\Parser\PlaylistArchive |
.proplaylist ZIP wrapper |
ProPresenter\Parser\PresentationBundle |
.probundle ZIP wrapper |
ProPresenter\Parser\ThemeBundle |
Theme folder wrapper |
ProPresenter\Parser\ProFileReader / Writer / Generator |
.pro IO |
ProPresenter\Parser\ProPlaylistReader / Writer / Generator |
.proplaylist IO |
ProPresenter\Parser\ProBundleReader / Writer |
.probundle IO |
ProPresenter\Parser\Zip64Fixer |
Repairs ProPresenter's broken ZIP64 EOCD headers |
ProPresenter\Parser\RtfExtractor |
Standalone CocoaRTF → plain-text converter |
Development
Running the tests
composer install
composer test
You should see:
PHPUnit 11.5.55 by Sebastian Bergmann and contributors.
OK (369 tests, 1298 assertions)
The test suite includes:
- Unit tests — every wrapper class
- Integration tests — readers + writers round-tripping reference files
- Mass validation — parses every
.profixture indoc/reference_samples/all-songs/(tests/MassValidationTest.php) - Binary fidelity tests — verifies byte-perfect round-trips for global library files
Reference samples
Real ProPresenter files used by the tests live in doc/reference_samples/. They are exported from production worship environments and cover edge cases (translations, missing arrangements, ZIP64 quirks, German Unicode, embedded media).
Regenerating sample bundles
Some test fixtures are generated procedurally:
php bin/regen-test-bundles.php
Compatibility & Caveats
- Verified against ProPresenter 7.16+ on macOS. Files generated by this library open cleanly in ProPresenter 7.
- Round-trip fidelity — global library files (
Macros,Labels,Groups, …) round-trip byte-for-byte. Songs do not: ProPresenter's protobuf schema contains undocumented fields that are dropped on re-encode. The library preserves logical content perfectly, but raw bytes will differ. See doc/internal/issues.md for the gory details. - ZIP64 quirk — ProPresenter exports
.proplaylistand.probundlefiles with a 98-byte ZIP64 header offset bug.Zip64Fixerpatches this in memory before parsing. Files written by this library use clean standard ZIPs. - RTF — slide text is stored as CocoaRTF (Windows-1252 with
\'xxhex escapes for non-ASCII).getPlainText()decodes this; the generator produces clean RTF that PP7 accepts. - macOS-centric paths — ProPresenter uses
file://URLs with absolute paths in some fields. For portable bundles, use'bundleRelative' => trueon media slides (this setsROOT_CURRENT_RESOURCEso PP7 resolves media relative to the archive).
Contributing
Contributions are welcome! Please:
- Open an issue describing the change before sending a PR for anything non-trivial.
- Follow the documentation guidelines in doc/CONTRIBUTING.md.
- Add a test for any new behavior — TDD is the convention here.
- Run
composer testbefore submitting. - Keep changes focused; avoid unrelated refactors.
License
This project is released under the MIT License.
The bundled .proto files in proto/ are derived from greyshirtguy/ProPresenter7-Proto, Proto 19beta (dumped from ProPresenter v19 beta build 318767123) plus a few extras (calendar, keyMappings, plus three legacy analytics protos retained from the 7.16.2 set), also distributed under the MIT License.
Credits
- Renewed Vision — for ProPresenter, an excellent presentation tool.
- greyshirtguy — for reverse-engineering the ProPresenter 7 protobuf schema, without which this library would not exist.
- Google Protocol Buffers — for the underlying serialization format.
ProPresenter is a trademark of Renewed Vision, LLC. This project is not affiliated with or endorsed by Renewed Vision.