Skip to content

Repository files navigation

ProPresenter 7 PHP Library

A PHP library to read, modify, and generateProPresenter 7 files — songs, playlists, bundles, themes, and global library files.

PHP VersionLicense: MITTestsBuilt on Protocol Buffers

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

File formats supported

FormatExtensionReadModifyGenerateNotes
Song.proLyrics, groups, slides, arrangements, translations, CCLI metadata, macros, media
Playlist.proplaylistZIP64 archive, embedded songs, headers, placeholders
Bundle.probundleZIP archive containing a song + flat media assets
ThemefolderTheme protobuf + Assets/ directory
MacrosMacrosMacros + collections
LabelsLabelsSlide labels with optional UI colors
GroupsGroupsLibrary groups (UUID, color, hot keys)
ClearGroupsClearGroupsClear-action groups
CCLICCLILicense, copyright template
MessagesMessagesLower-third / overlay messages
TimersTimersTimer definitions + clock format
StageStageStage display layouts
WorkspaceWorkspaceScreens, looks, masks, audio/video inputs
PropsPropsProp cues + transitions
TestPatternsTestPatternsTest pattern overrides
CalendarCalendarScheduled events firing macros
KeyMappingsKeyMappingsCustom hot-key bindings
CommunicationDevicesJSONMIDI / serial / OSC bindings

Highlights

  • High-level wrappers — work with Song, Group, Slide, Arrangement, PlaylistArchive etc. instead of raw protobuf classes.
  • RTF text extractionSlide::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 .pro and .proplaylist files programmatically with media references.
  • Styleable text — per-slide font, size, colour and outline (Kontur) on text, clock and timer elements.
  • 18 CLI tools — quickly inspect any ProPresenter file from the command line.
  • 495 tests, 1,700+ 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-zip for .proplaylist and .probundle files (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)

useProPresenter\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 → textforeach ($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

useProPresenter\Parser\ProFileReader;
useProPresenter\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

useProPresenter\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,
],
);

Supported slideData keys

Every entry of a group's slides array is a slideData array. All keys are optional.

KeyTypeDescription
textstringMain slide text (multi-line allowed).
translationstringSecond text element; renders original + translation side by side.
subtitlestringSmaller non-bold second run below text (ignored when translation is set).
textBoundsarrayExplicit placement of the plain text element (see below).
textStylearrayExplicit alignment of the plain text element (see below).
imageOnlyboolSkip the text layer entirely (image-only slide).
mediastringForeground media filename.
backgroundarrayBackground media layer (a media ACTION), e.g. ['path' => 'BACKGROUND.jpg', 'bundleRelative' => true].
imagearrayImage content ELEMENT appended LAST, i.e. the backmost layer of the slide, behind text (see below).
labelstringSlide label text.
clockarrayLive wall-clock element (see below).
timerarrayTimer/countdown element bound to a ProPresenter timer (see below).
textBounds / textStyle keys

By default the plain text element covers the historic text-safe area (x:150, y:100, width:1620, height:880) and is centred both horizontally and vertically. textBounds and textStyle override that per slide — useful to place a short line (e.g. a name tag) in one of the slide's corners.

KeyTypeDefaultDescription
textBounds.xfloat150Left edge in slide coordinates.
textBounds.yfloat100Top edge in slide coordinates.
textBounds.widthfloat1620Box width.
textBounds.heightfloat880Box height.
textStyle.alignstring'center'left, center or right.
textStyle.verticalAlignstring'middle'top, middle or bottom.
textStyle.colorarraywhite[r, g, b] as 0..255 ints or 0..1 floats.
textStyle.outlinearraynoneText outline (Kontur), see below.

Missing sub-keys fall back to their default, so a partial textBounds is valid. Omitting both keys keeps the generated element byte-identical to previously generated files. The same holds for textStyle.color: without it the RTF colour table keeps its historic all-white entries.

// Name tag pinned to the bottom-left corner
[
'text' => 'Max Mustermann',
'subtitle' => 'Moderation',
'textBounds' => ['x' => 60, 'y' => 820, 'width' => 600, 'height' => 200],
'textStyle' => ['align' => 'left', 'verticalAlign' => 'bottom'],
]
// Amber name tag
[
'text' => 'Max Mustermann',
'textStyle' => ['color' => [255, 200, 0]],
]

Slides read back from a .pro file expose getTextElementBounds(), getTextElementAlign() and getTextElementVerticalAlign(), which resolve the first plain text element (skipping clock, timer and image elements).

The colour is read back with Slide::getTextColor() (first plain text element) and Slide::getTimerColor() (timer element), both returning an [r, g, b] triple with 0..255 components, or null when the slide carries no such element. TextElement::getTextColor() exposes the same value per element. All three parse the second colour table entry — the one the RTF body references via \cf2.

Text outline (textStyle.outline)

outline draws a stroke around the glyphs, which keeps light text readable on a bright background:

[
'text' => 'Max Mustermann',
'textStyle' => [
'color' => [255, 255, 255],
'outline' => ['color' => '#000000', 'width' => 2],
],
]
KeyTypeDefaultDescription
outline.colorstring|arrayblack#RRGGBB or [r, g, b], same contract as textStyle.color.
outline.widthfloat2.0Outline width in points. 0 or a missing width means no outline.

The outline is written twice, and the two representations always agree: as the RTF stroke traits ProPresenter paints from (\outl0\strokewidthN \strokecN, with the colour appended as a further \colortbl entry) and as the proto text attributes the editor reads back (stroke_width / stroke_color). The RTF \strokewidth is emitted negative, which is what ProPresenter itself writes and means outline and fill — a positive value would drop the fill.

outline also applies to the two elements of a translated slide and to the timer element (timer.style.outline). Omitting it — or passing false — keeps the output byte-identical to previously generated files.

Read it back with Slide::getTextOutline() (first plain text element), Slide::getTimerOutline() (timer element) or TextElement::getOutline(). All return ['color' => [r, g, b], 'width' => float] with 0..255 colour components and the width in points, or null when the element carries no outline.

image keys

Unlike background — which emits a media action on the background layer — image emits a real slide content element whose fill is the given image.

ProPresenter paints a slide's element stack front-to-back: the lowest index is the frontmost layer, the highest index is the backmost layer. The image element is therefore appended LAST to the slide's element array, i.e. it is the backmost layer, so text, translation, subtitle, clock and timer elements — all emitted before it — are painted on top of it. Combine image with imageOnly => true for an image-only slide, or with text for text over an image.

The image is referenced bundle-relative by its bare filename (path is reduced to basename()), so it resolves against the bytes embedded in the .pro / .probundle archive — never by an absolute path.

KeyTypeDefaultDescription
pathstring''Bare filename, referenced bundle-relative.
formatstring'JPG'Media format, e.g. JPG, PNG.
widthint1920Natural image width.
heightint1080Natural image height.
boundsarrayx:0, y:0, width:1920, height:1080['x','y','width','height'] in slide coordinates.
scaleBehaviorstring'fill'fill, fit or stretch.
opacityfloat1.0Element opacity.
namestring''Name of the graphics element.
// Uploaded info slide image with text rendered on top of it
['text' => 'Herzlich willkommen', 'image' => ['path' => 'INFO_1.jpg', 'format' => 'JPG']]
// Image-only slide (no text layer)
['imageOnly' => true, 'image' => ['path' => 'INFO_2.jpg']]

Slides read back from a .pro file expose hasImageElement(), getImageElementUrl() and getImageElementFormat() (mirroring hasBackgroundMedia() / getBackgroundMediaUrl() / getBackgroundMediaFormat() for the background media action).

clock keys
KeyTypeDefaultDescription
formatstring'HH:mm'Clock format; drives Clock.Format, never written verbatim (see note below).
military24booltrue24-hour time.
textstringderived from formatStatic placeholder text shown in the editor.
boundsarrayx:60, y:40, width:600, height:200['x','y','width','height'] in slide coordinates.
stylearrayText styling, see below.
timer keys
KeyTypeDefaultDescription
timerUuidstringUUID of the timer in the ProPresenter Timers library. Omit to leave unbound.
timerNamestring''Timer name (fallback lookup when the UUID is unknown).
formatstring'mm:ss'Format string; alias formatString. Components present in the string (H/h, m, s, S) are shown (Style LONG), the rest hidden (Style NONE). Drives Timer.Format, never written verbatim (see note below).
textstringderived from formatStatic placeholder text shown in the editor.
namestring'Timer'Name of the graphics element.
boundsarrayx:60, y:40, width:1800, height:1000['x','y','width','height'] in slide coordinates.
stylearrayText styling, see below.
military24boolfalseMaps to Timer.Format.is_24_hour_time.
wallClockboolfalseMaps to Timer.Format.is_wall_clock_time.
millisecondsUnderMinuteOnlyboolfalseMaps to Timer.Format.show_milliseconds_under_minute_only.
visibleWhenstringOptional visibility condition bound to the same timer: hasTimeRemaining, hasExpired, isRunning or notRunning. Emitted as an additional VisibilityLink DataLink so ProPresenter hides the element once the condition no longer holds. Omit to keep the element always visible.
style keys (shared by clock and timer)
KeyTypeDefaultDescription
fontNamestring'HelveticaNeue'Font family.
fontSizeint42Font size in points.
boldboolfalseBold text run.
colorarraywhite[r, g, b] as 0..255 ints or 0..1 floats.
alignstring'center'left, center or right.
verticalAlignstring'middle'top, middle or bottom.

Omitting style keeps the default RTF template byte-identical to previously generated files.

// Big centred countdown bound to a timer from the Timers library
['timer' => [
'timerUuid' => '0E45D0AF-BCC2-4A31-BCFD-0F5A3358E225',
'timerName' => 'Gottesdienst',
'format' => 'mm:ss',
'bounds' => ['x' => 60, 'y' => 40, 'width' => 1800, 'height' => 1000],
'style' => ['fontName' => 'HelveticaNeue', 'fontSize' => 300, 'bold' => true, 'color' => [255, 255, 255]],
]]
// Countdown that disappears once it has run out
['timer' => [
'timerUuid' => '0E45D0AF-BCC2-4A31-BCFD-0F5A3358E225',
'timerName' => 'Gottesdienst',
'format' => 'mm:ss',
'visibleWhen' => 'hasTimeRemaining',
]]

Format strings are never written verbatim. In real ProPresenter files TimerText.timer_format_string always carries the literal token ${timer} (and ClockText.clock_format_string the literal ${clock}): that field is the RTF body template, not a time pattern. Writing "mm:ss" there makes ProPresenter print the literal text mm:ss. The real format lives in the structured Timer.Format message (.rv.data.Timer.Format), whose per-component Style enum is only ever NONE (0, hidden) or LONG (2, shown) in real files. The generator therefore emits ${timer} / ${clock} as the format string, derives Timer.Format from the format key, and keeps the element's RTF body a static placeholder.

Slides read back from a .pro file expose hasTimer(), getTimerFormat() (the raw ${timer} token), getTimerFormatMessage() (the structured Timer.Format), getTimerName() and getTimerUuid() (mirroring hasClock() / getClockFormat()).

When visibleWhen is set, the slide additionally exposes hasTimerVisibilityCondition(), getTimerVisibilityCriterion() (returns the same string that was passed in) and getTimerVisibilityTimerUuid().

4. Read a playlist (.proplaylist)

useProPresenter\Parser\ProPlaylistReader;
$archive = ProPlaylistReader::read('Sunday Service.proplaylist');
echo$archive->getName() . "\n";
foreach ($archive->getEntries() as$entry) {
echomatch ($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 filesif ($entry->getType() === 'presentation') {
$song = $archive->getEmbeddedSong($entry);
if ($song !== null) {
echo"" . count($song->getSlides()) . " slides\n";
}
}
}

5. Generate a playlist

useProPresenter\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.

useProPresenter\Parser\ProBundleReader;
useProPresenter\Parser\ProBundleWriter;
useProPresenter\Parser\PresentationBundle;
useProPresenter\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 = newPresentationBundle(
$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:

useProPresenter\Parser\MacrosFileReader;
useProPresenter\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

TopicDocument
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 librarydoc/api/macros.md
Labels librarydoc/api/labels.md
Groups librarydoc/api/groups.md
ClearGroups librarydoc/api/clear-groups.md
CCLI settingsdoc/api/ccli.md
Messages librarydoc/api/messages.md
Timers librarydoc/api/timers.md
Stage layoutsdoc/api/stage.md
Workspacedoc/api/workspace.md
Props librarydoc/api/props.md
TestPatternsdoc/api/test-patterns.md
Calendardoc/api/calendar.md
KeyMappingsdoc/api/key-mappings.md
CommunicationDevicesdoc/api/communication-devices.md

Binary format specifications

FormatDocument
.pro (songs)doc/formats/pp_song_spec.md
.proplaylistdoc/formats/pp_playlist_spec.md
.probundledoc/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 (495 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

ClassPurpose
ProPresenter\Parser\SongTop-level song wrapper (groups + slides + arrangements)
ProPresenter\Parser\GroupSong part (verse, chorus, …)
ProPresenter\Parser\SlideSingle slide with text, label, macro, media
ProPresenter\Parser\TextElementText element with RTF + plain-text accessors
ProPresenter\Parser\ArrangementGroup order for a performance
ProPresenter\Parser\PlaylistArchive.proplaylist ZIP wrapper
ProPresenter\Parser\PresentationBundle.probundle ZIP wrapper
ProPresenter\Parser\ThemeBundleTheme folder wrapper
ProPresenter\Parser\ProFileReader / Writer / Generator.pro IO
ProPresenter\Parser\ProPlaylistReader / Writer / Generator.proplaylist IO
ProPresenter\Parser\ProBundleReader / Writer.probundle IO
ProPresenter\Parser\Zip64FixerRepairs ProPresenter's broken ZIP64 EOCD headers
ProPresenter\Parser\RtfExtractorStandalone 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 (495 tests, 1723 assertions)

The test suite includes:

  • Unit tests — every wrapper class
  • Integration tests — readers + writers round-tripping reference files
  • Mass validation — parses every .pro fixture in doc/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 .proplaylist and .probundle files with a 98-byte ZIP64 header offset bug. Zip64Fixer patches this in memory before parsing. Files written by this library use clean standard ZIPs.
  • RTF — slide text is stored as CocoaRTF (Windows-1252 with \'xx hex 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' => true on media slides (this sets ROOT_CURRENT_RESOURCE so PP7 resolves media relative to the archive).

Contributing

Contributions are welcome! Please:

  1. Open an issue describing the change before sending a PR for anything non-trivial.
  2. Follow the documentation guidelines in doc/CONTRIBUTING.md.
  3. Add a test for any new behavior — TDD is the convention here.
  4. Run composer test before submitting.
  5. 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.

About

PHP library to read, modify, and generate ProPresenter 7 files (.pro songs, .proplaylist, .probundle, themes, and global library files).

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages