Skip to content

Commit

Permalink
Added a speech part to the proto
Browse files Browse the repository at this point in the history
  • Loading branch information
dtracers authored Jul 20, 2017
1 parent 8824e1b commit 0fdccf3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/proto/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ enum CommandType {
CREATE_EMBEDDED_HTML = 21; // Creates an image
CREATE_TTSBOX = 22; // Creates a ttsbox for use in tutorial or lecture slides
CREATE_HIGHLIGHT_TEXT = 23; // Creates highlightText element for use in tutorial or lecture slides
START_SPEECH = 24; // Creates a voice recording
}

/**
Expand Down Expand Up @@ -141,3 +142,11 @@ enum SketchType {
TEXT = 2;
DOMAIN_SPECIFIC = 3;
}

/**
* Adds a voice recording
*/
message ActionStartSpeech {
optional string text = 1;
required bytes recording = 2;
}

0 comments on commit 0fdccf3

Please sign in to comment.