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

gif-talkr

v1.0.1

Published

Turn gif files into talking avatars for use with TTS or audio.

Downloads

16

Readme

Overview

Forked from the excelent libgif-js project, which is a general-purpose gif parsing and playback framework.

This is an attempt to animate a GIF file in sync with the SpeechSynthesis web API. The following tricks are used to improve results:

  • The SpeechSynthesis start event is used to start the gif animation.

  • speech duration is estimated using the length of the text to be spoken and passed to the the play_with_duration() function

  • the gif "ping-pongs" while there is talking, and always starts and ends at frame 0. (the direction of playback is reversed at the correct time such that playback ends at frame zero)

  • speech synthesis is broken up into punctuation-deliminated [.,?!] utterances, and each utterance is animated with its own call to play_with_duration. Pauses in the utterances are then automatically aligned with periods of non-movement in the GIF file.

GIF Selection

Here are some tips for selecting an optimal GIF file (in rough order of importance)

  • The GIF should feature something talking (obviously)

  • Frame 0 should have the mouth closed

  • The mouth should open relatively quickly in the early frames

  • For several frames after the initial opening, avoid frames that completely close the mouth. This can result in an overly flappy mouth.

  • Avoid large gestures or movements in the early frames which will be repeated very frequently.

  • More than a second or two of animation is overkill, the early frames are more important that what comes later.

TALKRAPP Gif App Extension

A new GIF app extension was created to specify animation channels that could be layered on top of the lipsync animation. The app extension is similar to the popular NETSCAPE looping extension. The extension does not alter how the GIF is played back in browsers where there is no support for it.

Eyebrows and Blinks

The app extension is used to determine which frames (if any) should be used to create eyebrow and blink animations. These are not looped as part of the normal animation, and instead are layered on top at random intervals. This can bring movement to the upper part of the face with out making the gif overly repetitive or predictable.

The Premium version ($2.99) of the iOS app Talkr (www.talkrapp.com) supports outputing .GIF files with this extension, but a selection of examples is available from imgur . You can find some regular gif files without the TALKRAPP extension here.

Extension Definition

    +---------------+
 0  |     0x21      |  Extension Label
    +---------------+
 1  |     0xFF      |  Application Extension Label
    +---------------+
 2  |     0x0B      |  Block Size
    +---------------+
 3  |               | 
    +-             -+
 4  |               | 
    +-             -+
 5  |               | 
    +-             -+
 6  |               | 
    +-  TALKRAPP   -+  Application Identifier (8 bytes)
 7  |               | 
    +-             -+
 8  |               | 
    +-             -+
 9  |               | 
    +-             -+
10  |               | 
    +---------------+
11  |               | 
    +-             -+
12  |      COM      |  Application Authentication Code (3 bytes)
    +-             -+
13  |               | 
    +===============+                      --+
14  |     0x03      |  Sub-block Data Size   |
    +---------------+                        |
15  |               |                        |
    +- FRAME INDEX -+                        | 
16  |               |                        |
    +---------------+                        |
17  |               | Application Data Sub-block
    +- NUM  FRAMES -+                        |
18  |               |                        |  
    +---------------+                        |							
19  |  CHANNEL IDX  | ('0'=Blink,'1'=Eyebrow)|
    +---------------+                        | 
20  |               |                        | 
    +-             -+                        |
21  |               |                        | 
    +-  RESERVED   -+                        |
22  |               |                        | 
    +-             -+                        |
23  |               |                        | 
    +===============+                      --+
24  |     0x00      |  Block Terminator
    +---------------+

Example

Please see example.html for, you know, an example. It allows you to change the voice and text and watch it talk on various GIFs.

Please note: this example must be loaded via a webserver, not directly from disk. I.e. http://localhost/libgif-js/example.html NOT file:///libgif-js/example.html. See the same-domain origin caveat at the bottom of this document for more information.

For a hosted example, check out this post on talkrapp.com

Technical Details

Of note to the developer, libjs.gif contains a class SuperGif, which can be used to manipulate animated gifs. For more information on how to use the SuperGif class, check out the original libgif project.

Performance

Prior to playing, the frames of the GIF file must be extracted and stored in memory. This can take several seconds on a slow device and consume around 10 MB of memory for GIF files exported from talkr which have a width of 480 pixels. Non-talkr GIF files may consume significantly more memory depending on the number of frames and pixels, and the cropping of the frames (talkr GIF files are optimized and aggressivly cropped to keep memory use low). In a real-world implementation, you will want to pre-load your GIF file before it talks, and avoid storing too many GIF files in memory simultaneously. You must call the destroy method on the SuperGif object to free the memory when you are finished.

Caveat: same-domain origin

The gif has to be on the same domain (and port and protocol) as the page you're loading.

The library works by parsing gif image data in js, extracting individual frames, and rendering them on a canvas element. There is no way to get the raw image data from a normal image load, so this library does an XHR request for the image and forces the MIME-type to "text/plain". Consequently, using this library is subject to all the same cross-domain restrictions as any other XHR request.