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.
33 lines
1 KiB
Protocol Buffer
Executable file
33 lines
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 "audio.proto";
|
|
import "digitalAudio.proto";
|
|
import "input.proto";
|
|
import "proAudienceLook.proto";
|
|
import "proscreen.proto";
|
|
import "proMask.proto";
|
|
import "recording.proto";
|
|
import "stage.proto";
|
|
|
|
message ProPresenterWorkspace {
|
|
repeated .rv.data.ProPresenterScreen pro_screens = 1;
|
|
repeated .rv.data.ProAudienceLook audience_looks = 2;
|
|
.rv.data.ProAudienceLook live_audience_look = 3;
|
|
repeated .rv.data.ProMask masks = 4;
|
|
repeated .rv.data.VideoInput videoInputs = 5;
|
|
repeated .rv.data.Stage.ScreenAssignment stage_layout_mappings = 6;
|
|
.rv.data.Audio.SettingsDocument audio_settings = 7;
|
|
string selected_library_name = 8;
|
|
.rv.data.Recording.SettingsDocument record_settings = 9;
|
|
.rv.data.DigitalAudio.Setup digital_audio_setup = 10;
|
|
repeated .rv.data.AudioInput audio_inputs = 11;
|
|
double audio_input_transition_time = 12;
|
|
}
|
|
|