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
930 B
Protocol Buffer
Executable file
43 lines
930 B
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.data;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
|
|
option swift_prefix = "RVData_";
|
|
|
|
message MusicKeyScale {
|
|
enum MusicKey {
|
|
MUSIC_KEY_A_FLAT = 0;
|
|
MUSIC_KEY_A = 1;
|
|
MUSIC_KEY_A_SHARP = 2;
|
|
MUSIC_KEY_B_FLAT = 3;
|
|
MUSIC_KEY_B = 4;
|
|
MUSIC_KEY_B_SHARP = 5;
|
|
MUSIC_KEY_C_FLAT = 6;
|
|
MUSIC_KEY_C = 7;
|
|
MUSIC_KEY_C_SHARP = 8;
|
|
MUSIC_KEY_D_FLAT = 9;
|
|
MUSIC_KEY_D = 10;
|
|
MUSIC_KEY_D_SHARP = 11;
|
|
MUSIC_KEY_E_FLAT = 12;
|
|
MUSIC_KEY_E = 13;
|
|
MUSIC_KEY_E_SHARP = 14;
|
|
MUSIC_KEY_F_FLAT = 15;
|
|
MUSIC_KEY_F = 16;
|
|
MUSIC_KEY_F_SHARP = 17;
|
|
MUSIC_KEY_G_FLAT = 18;
|
|
MUSIC_KEY_G = 19;
|
|
MUSIC_KEY_G_SHARP = 20;
|
|
}
|
|
|
|
enum MusicScale {
|
|
MUSIC_SCALE_MAJOR = 0;
|
|
MUSIC_SCALE_MINOR = 1;
|
|
}
|
|
|
|
.rv.data.MusicKeyScale.MusicKey music_key = 1;
|
|
.rv.data.MusicKeyScale.MusicScale music_scale = 2;
|
|
}
|
|
|