PHP 8.4 library and CLI tools to read, modify, and generate ProPresenter 7 files: songs (.pro), playlists (.proplaylist), bundles (.probundle), themes, and the global library files (Macros, Labels, Groups, ClearGroups, CCLI, Messages, Timers, Stage, Workspace, Props, TestPatterns, Calendar, KeyMappings, CommunicationDevices). Built on the MIT-licensed ProPresenter7-Proto schema by greyshirtguy (v7.16.2). Includes 18 CLI parsers, comprehensive API docs in doc/, binary-format specs, and a synthetic 369-test PHPUnit suite covering RTF extraction, translation slides, ZIP64 repair, round-trip fidelity, and end-to-end generation.
43 lines
1.2 KiB
Protocol Buffer
Executable file
43 lines
1.2 KiB
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.analytics;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData.Analytics";
|
|
option swift_prefix = "Analytics_";
|
|
|
|
import "analyticsApi.proto";
|
|
import "analyticsCapture.proto";
|
|
import "analyticsCreate.proto";
|
|
import "analyticsImport.proto";
|
|
import "analyticsPlaybackMarker.proto";
|
|
import "analyticsProContent.proto";
|
|
import "analyticsStartup.proto";
|
|
import "analyticsSync.proto";
|
|
import "analyticsTimecode.proto";
|
|
import "analyticsTimeline.proto";
|
|
import "analyticsTrigger.proto";
|
|
import "analyticsUI.proto";
|
|
import "analyticsUpdate.proto";
|
|
import "analyticsWHMStore.proto";
|
|
|
|
message Event {
|
|
oneof Interaction {
|
|
.rv.analytics.UI ui = 1;
|
|
.rv.analytics.Startup startup = 2;
|
|
.rv.analytics.Trigger trigger = 3;
|
|
.rv.analytics.Create create = 4;
|
|
.rv.analytics.Import import = 5;
|
|
.rv.analytics.Timeline timeline = 6;
|
|
.rv.analytics.Sync sync = 7;
|
|
.rv.analytics.API api = 8;
|
|
.rv.analytics.Timecode timecode = 9;
|
|
.rv.analytics.PlaybackMarker playback_marker = 10;
|
|
.rv.analytics.Update update = 11;
|
|
.rv.analytics.WHMStore whm_store = 12;
|
|
.rv.analytics.ProContent proContent = 13;
|
|
.rv.analytics.Capture capture = 14;
|
|
}
|
|
}
|
|
|