A library that provides simple, clear access to the Web Speech and Speech Recognition APIs, allowing for the easy creation of sketches that can talk and listen.
See Synthesis Example and
Recognition Example
“Transkription2Spreadsheet” by Theresa
https://openprocessing.org/sketch/2076438
License CreativeCommons Attribution ShareAlike
https://creativecommons.org/licenses/by-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
A fork of Transkription by Theresa
CC Attribution ShareAlike
Transkription2Spreadsheet
xxxxxxxxxx
let speech;
let input = "...";
let bg;
let table;
let out;
let c = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
background(250);
speech = new p5.SpeechRec('de-DE'); // speech recognition object (will prompt for mic access)
speech.onResult = showResult; // bind callback function to trigger when speech is recognized
speech.continuous = true; // do continuous recognition
speech.interimResults = false;
speech.start(); // start listening
textAlign(CENTER, CENTER);
textSize(200);
table = new p5.Table();
table.addColumn('time');
table.addColumn('text');
createCanvas(1080, 1920);
frameRate(1)
//bg = color(255);
}
function draw() {
let newRow = table.addRow();
newRow.setString('time', Date());
newRow.setString('text', input);
//background(255);
text(input, 20, 20+c*20);
c++;
}
function showResult()
{
input = speech.resultString;
out += input;
}
function keyPressed() {
if (key == "c") {
save(out, 'Transcript.txt');
}
}
See Synthesis Example and Recognition Example
See More Shortcuts
Please verify your email to comment
Verify Email