What is the emojiwall?

The first question you might have, is: โ€œWhat the hell is an emojiwallโ€œ. Just have a look at the background. Can you see these emojis bubbling up from the bottom of your screen to the top in the background? Yes? Congratulations, you see an emojiwall in action. In a nutshell, an emojiwall takes a source of emojis (e.g., hardcoded, or from chat-messages that contain emojis) and makes them fly through your screen.

What would I need this for?

If youโ€™re a streamer, then emojiwall is a powerful tool to increase the engagement of your community. You make it a lot more fun for people to write-chat messages with emojis. Especially if youโ€™re using Owncast with custom emotes.

The emojiwall can even be helpful to you if youโ€™re not a streamer. Are you looking for a small gimmick on your website? Maybe spice it up a little bit for a special event, or maybe for an April Foolโ€™s joke? For whatever reason you want an emojiwall on your website (just like I wanted on this site), the emojiwall got your back.

How does an emojiwall work?

emojiwall with smol.stream overview

Sounds complicated? No, not at all. Let me explain.

  • activate a browser overlay in your OBS that points to an emojiwall-server.
  • configure Owncast webhooks to notify the emojiwall-server of new messages with emojis
  • let your community engage in the chat and make them write silly emojis
  • and voilรก - emojis everywhere on the screen

Introducing smol.stream

smol.stream logo

smol.stream is one of the awesome projects of Le fractal. smol.stream's mission is to provide various services and resources for โ€œsmolโ€ streamers, the first one being the emojiwall. While you can host the emojiwall by yourself (see Self-Hosting the emojiwall), smol.stream makes it a lot easier for you to get started with it. When visiting the site, youโ€™ll be greeted with instructions on how to configure an OBS browser overlay bound to your Owncast Server. This is by far the easiest way to get you started straight away. The heavy lifting for setting up the emojiwall-server is done for you already, so you can just enjoy all the benefits of a fully managed emojiwall on your stream. However, a little bit of configuration - to integrate the emojiwall into your streaming-setup - is still necessary.

Getting an emojiwall-URL

First we need to get ourselves a secret emoji-token by visiting smol.stream. In my example I got ๐Ÿ ๐Ÿ‘ฉโ€๐Ÿš€๐Ÿšœโ˜ข๏ธ๐ŸŽฟ๐Ÿคถ๐Ÿ‡ฐ๐Ÿ‡ต๐Ÿฎ๐Ÿ›ต๐Ÿง as secret emoji-token. Donโ€™t share this token with anyone. Please also make sure NOT to copy the token I have used in this example - it wonโ€™t work for you. Next, enter your hostname/fqdn (the address where your Owncast-Server) is hosted/reachable. Since I host my Owncast-Instance at https://live.rtrace.io, I entered https://live.rtrace.io. This is important if you want your emojiwall to also show custom-emotes of your Owncast server. Either way, make sure to include https:// or http:// as scheme-prefix, as well as any non-standard TCP-Portnumber if necessary.

Owncast Browser Overlay URL

Configuring OBS

Now itโ€™s time to go ahead and configure OBS to use smol.stream through our freshly generated token. So weโ€™ll fire up OBS and add a new Source with the โž• symbol in the sources section. Heavily simplified the emojiwall is just a website, so to allow OBS to show the emojiwall, we just need to add a โ€œBrowserโ€ as source.

adding a browser source in OBS

Now we copy the URL generated from smol.stream into the URL field of our Browser Source. Donโ€™t worry if the URL you pasted does look slightly different than in your browser. OBS might not support all emojis on your operating system yet. Even though the URL does look broken, itโ€™s fine - trust me.

configuring the browser source in OBS

In case the Custom CSS is not set for you, make sure to set it yourself. Simply copy-paste the following CSS lines, that make the browser overlays background transparent.

body {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px auto;
  overflow: hidden;
}

Thatโ€™s it. OBS is configured and ready to rock some emojis. Half of the hard work is done. Now itโ€™s time to configure Owncast to notify the emojiwall when new chat-messages arrive.

Configuring Owncast Webhooks

Owncast luckily supports โ€œCustom Integrationsโ€. Such integrations make Owncast fire events when certain things happen. These events are often called โ€œWebhooksโ€. And with such a webhook we now can notify the emojiwall, that a new messagearrived in the Owncast chat.

Head over to your Owncast administration panel, navigate to โ€œIntegrationsโ€ > โ€œWebhooksโ€ (alternatively click the /admin/webhooks-link in the smol.stream insructions) and then click the โ€œCreate webhookโ€œ-button. Now all thatโ€™s left to do is to paste the URL that smol.stream gave us, into the webhook settings. Make sure to activate the webhook to only fire โ€œWhen a user sends a chat messageโ€. Finally, click โ€œOkโ€ and youโ€™re ready to use the emojiwall.

Owncast Browser Overlay URL

Time to toy around with your emojiwall

Start your stream and smash some emojis into the chat! If you have configured everything as described above, youโ€™ll immediately see the emojis youโ€™ve typed flying through your stream! Congratulations ๐Ÿฅณ๐Ÿฅณ๐Ÿฅณ! The only thing left to say here is โ€œHave fun with smol.stream and your own emojiwallโ€, unless of course you prefer to host the emojiwall yourself. Then please continue reading.

Self-Hosting the emojiwall

If you prefer to self-host the emojiwall-server, your options are either running it containerized with podman (or optionally docker) or installing it natively on your server. The following architectural diagram shows you the required components to get started.

emojiwall self-hosting overview

containerized emojiwall

The emojiwall is published as container-image to quay.io. It is built from the original repository. If you prefer, you can build your own container image from the Dockerfile in the repository.

podman container run \
    --name "mycoolemojiwall"
    --detach \
    -p 5000:5000 \
    -e HOSTNAME='smol.stream' \
    -e PREFIX='/emojiwall' \
    -e SCHEME='http' \
    -e PORT='5000' \
    -e PUBLIC_PORT='5000' \
    quay.io/smolstream/emojiwall

The container can be configured with environment-variables. The following environment variables are configurable.

  • HOSTNAME sets a publicly exposed hostname

    • if you want to test it locally, set it to localhost
    • if you want to host it accessible from the public, set it to your FQDN (fully qualified domain name)
  • PREFIX (optional) sets a path prefix for the URL (e.g., /myAwesomeEmojiWall)

    • if you want to access the emojiwall directly without prefix, leave it empty
    • if you want the emojiwall to be accessible from a subdirectory set it to /<YourSubdirectoryName>
  • SCHEME whether the emojiwall is shipped via TLS/SSL-secured HTTPS or via plain HTTP

    • set it to โ€˜httpsโ€™, if you expose the emojiwall through a reverse-proxy that terminates TLS
    • set it to โ€˜httpโ€™, if you directly access the emojiwall (e.g. from localhost)
    • if you run a public/shared instance please consider utilizing a proper HTTPS setup
    • the emojiwall does not support HTTPS directly. This can be done through reverse-proxy
  • PORT sets the (TCP-) port the emojiwall is listening on

  • PUBLIC_PORT sets the (TCP-) port the emojiwall is served through (e.g. public port of a reverse-proxy)

    • if the emojiwall is served through a reverse-proxy the listen is not directly exposed
    • the emojiwall is using this port to rewrite URLs for static content to the public facing port
    • most likely (tcp/80 and/or tcp/443 - however can be a custom port as well)
    • if youโ€™re directly accessing the emojiwall, just use the same port entered previously at โ€œPORTโ€œ

Installation from sources

The emojiwall can easily be installed manually from sources, by simply cloning the repository to your machine. The project is written with node.js and the awesome express web-framework. So the only prequisite is npm and node pre-installed. The emojiwall does not require a specific node.js version - so installing node from your distribution package manager is possible too.

Installation

git clone https://framagit.org/owncast-things/owncast-emojiwall.git
cd ./owncast-emojiwall
npm install

Configuration

Running the emojiwall requires you to have a look into its configuration. The configuration can be found in the file ./config/default.json. Hereโ€™s an example configuration.

{
  "webhooks": {
    "host": "emojiwall.rtrace.io",
    "prefix": "",
    "scheme": "http",
    "port": "5000",
    "public_port": "443"
  }
}
  • host sets a publicly exposed hostname

    • if you want to test it locally, set it to localhost
    • if you want to host it accessible from the public, set it to your FQDN (fully qualified domain name)
  • prefix (optionally) sets a path prefix for the URL (e.g. /myAwesomeEmojiWall)

    • if you want to access the emojiwall directly without prefix, leave it empty
    • if you want the emojiwall to be accessible from a subdirectory set it to /<YourSubdirectoryName>
  • scheme whether the emojiwall is shipped via TLS/SSL-secured HTTPS or via plain HTTP

    • set it to โ€˜httpsโ€™, if you expose the emojiwall through a reverse-proxy that terminates TLS
    • set it to โ€˜httpโ€™, if you directly access the emojiwall (e.g. from localhost)
    • if you run a public/shared instance please consider utilizing a proper HTTPS setup
    • the emojiwall does not support HTTPS directly. This can be done through reverse-proxy
  • port sets the (TCP-) port the emojiwall is listening on

    • the only requirement is that this port is accessible
    • be aware that for privileged ports (e.g., tcp/80, tcp/443), the emojiwall requires to be run as root
  • public_port sets the (TCP-) port the emojiwall is served through (e.g. public port of a reverse-proxy)

    • if the emojiwall is served through a reverse-proxy the listen is not directly exposed
    • the emojiwall is using this port to rewrite URLs for static content to the public facing port
    • most likely (tcp/80 and/or tcp/443 - however can be a custom port as well)
    • if youโ€™re directly accessing the emojiwall, just use the same port entered previously at โ€œportโ€œ

Starting

After all the dependencies of the emojiwall were installed, itโ€™s time to start our emojiwall. Navigate into the root-directory of the repository and invoke node.

node index.js

Your emojiwall is now successfully started and is listening on the configured TCP-port. When you see log-output that the emojiwall is now listening on the configured port, the emojiwall is ready to be tested. Fire up your browser of choice, and visit http://localhost:5000 (assuming you configured the listening port to port 5000 and kept the prefix setting empty).

Manually sending emojis to your emojiwall

The emojiwall is open enough, to not require you to use Owncast at all. You may also manually send emojis to an emojiwall, which makes it perfectly suitable for usage in non-live setups (e.g. OBS recordings). Since the emojiwall just listens for incoming webhooks, we can just manually invoke such webhooks ourselves.

The most lightweight webhook body that is HTTP POSTโ€˜ed from Owncast to the emojiwall looks like this:

{
  "eventData": {
    "body": "โค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธโค๏ธ"
  }
}

This allows you to send emojis to the emojiwall from anywhere.
Here an example with curl that allows you to send emojis right from your terminal.

curl -X POST --header "Content-Type: application/json" \
     --data '{"eventData":{"body":"๐Ÿ˜€๐Ÿ’™"}}' $EMOJIWALL_URL

Alternatively you can also use graphical REST-Clients like Insomnia REST-Client

Final Words

If you run into troubles and need help, please feel free to ask for support either via mail support@smol.stream or use the comment-section below. Additionally, if youโ€™re a fan of the emojiwall (and/or smol.stream) make sure to send a smol โ€œThank Youโ€ to Le fractal. He invested lots of time and effort into the emojiwall. But even more important, please share smol.stream and the emojiwall with your friends and people that might be interested - letโ€™s make the web a little brighter with funny emojis flying through screens of people.


Thank you for reading โค

I hope you enjoyed reading this article. Maybe it was helpful to you, maybe it was not? Maybe you learned something new? You disliked the article? I'd be glad to hear your opinions. Your feedback is much appreciated and very welcome. Either (anonymously) write a comment in the section below, or send a mail to blog@rtrace.io