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.
30 lines
965 B
PHP
Executable file
30 lines
965 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use ProPresenter\Parser\TimersFileReader;
|
|
|
|
if ($argc < 2) {
|
|
echo "Usage: parse-timers.php <Timers>\n";
|
|
exit(1);
|
|
}
|
|
|
|
try {
|
|
$library = TimersFileReader::read($argv[1]);
|
|
} catch (Exception $e) {
|
|
echo 'Error: ' . $e->getMessage() . "\n";
|
|
exit(1);
|
|
}
|
|
|
|
$timers = $library->getTimers();
|
|
echo 'Timers (' . count($timers) . ') clock=' . $library->getClockFormat() . ":\n";
|
|
foreach ($timers as $index => $timer) {
|
|
$type = $timer->isCountdown() ? 'countdown' : ($timer->isCountdownToTime() ? 'countdown_to_time' : ($timer->isElapsedTime() ? 'elapsed_time' : 'unknown'));
|
|
$duration = $timer->getDurationSeconds();
|
|
$durationPart = $duration === null ? '' : sprintf(' :: %ds', $duration);
|
|
echo sprintf(" [%d] %s :: %s :: %s%s\n", $index + 1, $timer->getName() === '' ? '(unnamed)' : $timer->getName(), $timer->getUuid(), $type, $durationPart);
|
|
}
|