Metadata.proto 582 B

1234567891011121314151617181920212223
  1. syntax = "proto3";
  2. package sys.metadata;
  3. import "Artwork.proto";
  4. import "nanopb.proto";
  5. message config {
  6. option (nanopb_msgopt).packed_struct = true;
  7. option (nanopb_msgopt).msgid = 10036;
  8. // Optional parameters controlling bluetooth and airplay
  9. // Display format with optional keywords %artist%, %album%, %title%
  10. string format = 1 [(nanopb).max_length= 50];
  11. // Scrolling speed in ms
  12. uint32 speed = 2 ;
  13. // Pause time between scrolls in ms
  14. uint32 pause = 3;
  15. // Cover art display configuration
  16. artwork.config artwork = 4;
  17. }