npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mediasemantics/character-api-client

v1.0.1

Published

Standard HTML client module for the Character API.

Downloads

145

Readme

Media Semantics Character API Reference Implementation (HTML Client)

HTML 5 Talking Avatar using Character API and AWS Polly.

Overview

This module is part of the Reference Implementation for the Character API, a cloud-based Character Animation API available on the Amazon AWS Marketplace.

You can see the Reference Implementation running here.

The module does not call the Character API directly. Instead, it calls a "caching server" that, in turn, calls the Character API and a Text-To-Speech API. To get started, please see the charapi github project.

Installation

npm i @mediasemantics/character-api-client

Usage

<div id="myDiv" style="width:250px; height:200px;"></div>

<script type="module">

import CharacterApiClient from './node_modules/@mediasemantics/character-api-client/character-api-client.js';

// Initialize your character in a div
var character;
document.addEventListener("DOMContentLoaded", function() {
    character = CharacterApiClient.setupDiv("myDiv", {
        character: "SusanHead",
        animateEndpoint: "http://localhost:3000/animate", 
        catalogEndpoint: "http://localhost:3000/catalog"
    });
})

</script>

In the charapi project we show you how to create a simple server with endpoints 'animate' and 'catalog' on your local machine, at the endpoints shown above. When you deploy this to production, you will pass your new production endpoints to the module.

By building the caching server endpoints for your application, you gain the highest level of flexibility, security, and control over costs. If you are uncomfortable with building and maintaining server infrastructure, you can also use the Agent module in the People Builder service, also from Media Semantics. The Agent module has a very similar API.

The character works like a puppet. Without any input, it exhibits an "idle" behavior. You can prompt it to say different things by invoking the dynamicPlay() function. Each call to dynamicPlay consists of one line - typically a sentence. A line takes the form of a do/say pair representing a string to be spoken and a manner in which to speak it. You can also use a do by itself to perform a silent action, or a say by itself to speak with no deliberate action.

character.dynamicPlay({do:'look-right', say:'Look over here.'})

You can use the stop() method to smoothly stop any ongoing play. It's a good idea to do this before a dynamicPlay() if you want to interrupt any lines that may be playing:

character.stop();
character.dynamicPlay({say: "Goodbye"});

Without the stop(), the "Goodbye" line would simply be queued up, and would play as soon as the current line is finished.

See the character catalog for examples of different do commands.

Parameters

The required parameters are as follows:

| Parameter | Description | |-----------------|------------------------------------------------------------------------------------------------------------| | width | Width of the div. | | height | Height of the div. | | character | The id of the character - see character catalog. | | animateEndpoint | The base url of the animate endpoint that you will build using the Character API Reference Implementation. | | catalogEndpoint | Similarly, this is the base url of your catalog endpoint.

Reacting to events

Listen to events on the div object:

document.getElementById("myDiv").addEventListener("characterLoaded", function() {console.log("characterLoaded")});

The characterLoaded event indicates that the character is loaded, that it's about to be displayed, and that it's ready to receive dynamicPlay() commands.

Longer texts

Maybe you have a paragraph of text to speak. You can use the following code to break it down into a series of dynamicPlay() calls:

function speakParagraph(paragraph) {
     character.stop();
     let records = character.scriptFromText(paragraph); // breaks into sentences
     for (let record of records)
          character.dynamicPlay(record);
}

Breaking the paragaph down into sentences is necessary in order to lower the latency and to avoid limits on the length of the "say" field.

Preloading lines

You can preload any line by using the preloadDynamicPlay() API. This works just like the regular dynamicPlay() API, but simply ensures that any required resources are cached in the local browser cache.

Timing UI changes

You can attach an application command using the optional 'and' and 'value' fields.

character.dynamicPlay({do:'look-right', say:'Look over here.', and:'command', value:'show someDiv'})

The value is surfaced in the scriptCommand event as the event.detail field.

document.getElementById("myDiv").addEventListener("scriptCommand", function() {processCommand(e.detail)});

You often use commands with "do" actions such as "Look" and "Point". When you do, the event occurs at a "natural" point in the action, in this case when the character's head finishes turning in the given direction. The 'value' parameter is just a string, and you can apply your own rules on how to interpret it.

function processCommand(s) {
    let command = s.split(" ")[0];
    let arg = s.split(" ")[1];
    if (command == "show") show(arg);
}

Additional API

This Readme covers the basics, but please visit our documentation for a full description of the API.