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.
50 lines
1.1 KiB
Protocol Buffer
Executable file
50 lines
1.1 KiB
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.data;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
|
|
option swift_prefix = "RVData_";
|
|
|
|
import "testPattern.proto";
|
|
import "uuid.proto";
|
|
|
|
message TestPatternRequest {
|
|
message GetDefinitions {
|
|
}
|
|
|
|
message GetCurrentState {
|
|
}
|
|
|
|
message GetThumbnail {
|
|
.rv.data.TestPatternDefinition pattern = 1;
|
|
int32 width = 2;
|
|
int32 height = 3;
|
|
}
|
|
|
|
oneof Request {
|
|
.rv.data.TestPatternRequest.GetDefinitions get_definitions = 1;
|
|
.rv.data.TestPatternState set_current_state = 2;
|
|
.rv.data.TestPatternRequest.GetCurrentState get_current_state = 3;
|
|
.rv.data.TestPatternRequest.GetThumbnail get_thumbnail = 4;
|
|
}
|
|
}
|
|
|
|
message TestPatternResponse {
|
|
message GetDefinitions {
|
|
repeated .rv.data.TestPatternDefinition patterns = 1;
|
|
}
|
|
|
|
message GetThumbnail {
|
|
.rv.data.UUID pattern = 1;
|
|
bytes image = 2;
|
|
}
|
|
|
|
oneof Response {
|
|
.rv.data.TestPatternResponse.GetDefinitions get_definitions = 1;
|
|
.rv.data.TestPatternState get_current_state = 2;
|
|
.rv.data.TestPatternResponse.GetThumbnail get_thumbnail = 3;
|
|
}
|
|
}
|
|
|