Subtivals, remote display ?

Recently I was asked to think about a new feature for Subtivals : allowing spectators to read subtitles on their mobile or tablet.

Usual setup

In a typical installation, Subtivals overlays the subtitles on top of the main image coming from the cinema projector. It allows to add captioning on any movie, especially when the physical copy (35mm or DCP) does not carry them. That's why most of Subtivals users are international film festivals, cultural centers or film libraries.

Another common use-case is live captionning, where subtitles are projected on a small screen below the scene. It allows to add captioning to concerts, theater, operas, conference talks, live shows... Surprisingly there was no tool for that, and most people were using Poweroint slides before discovering Subtivals.

Use-case

Overlaying subtitles requires a powerful projector (~4000 Lumens for white/yellow and ~5000 Lumens for the colors used in hard of hearing captioning).

When the scene is very large or the atmosphere very bright, such as open air events, it can be hard to obtain sharp subtitles on a screen, even with a powerful longthrow projector.

Also, when the venue is very big, such as operas, subtitles have to be projected with a very big text size for the spectators seated in the last rows. And those in the front raws won't read easily either.

Having remote display of subtitles for these situations makes sense. Subtitles should be shown synchronously on various screens.

Solution

We can imagine:

Technology

I have of course no intention to implement native mobile applications, relying on a specific communication protocol and struggling with obscure restricted application stores.

It has to be universal, fully open and follow well-known standards, it will thus be built on a Web stack.

We now have WebSockets, and Qt provides everything to use them! The remote display will then be a simple JavaScript Web page, receiving subtitles in real-time from the WebSocket server.

Funny hacks ahead :)

Prototype

I could build a very simple prototype in a few hours, with a minimalist JavaScript code for the display page and some idiot code for the Node.js server. The code is online.

The Qt code in Subtivals in charge of push the subtitles in real time is also very small.

It looks already fun and promising :)

Strategy #1: Global

We deploy a central server that is used by default in the application.

Pros

Cons

Strategy #2: local server

A variant of the first one, a server is deployed locally. A local wifi can be setup in case Internet is not available.

Pros

Cons

Strategy #3: Subtivals as server

We get rid of the local Web server, and the Subtivals software itself acts as a server, pushing subtitles itself to the audience.

Pros

Cons

Conclusion

We might go for the second strategy at first. We will provide some assistance to the festival organizers for setting up the stack. It will allow us to get started with a very small effort on the code implementation.

Later, we can undertake the first strategy. By the way, if someone is interested in implementing and running such a Web service 24/7, charging users or not, please contact me :)

The third strategy scares me, but the remote control idea is awesome! It means that an operator could control the subtitles projection from her smartphone, seating among the audience instead of from the booth!

#subtivals, #subtitles, #accessibility, #qt, #websockets - Posted in the Dev category