Coordinating the Superbowl's visual fidelity with Elixir

(elixir-lang.org)

Comments

laserbeam 26 March 2025
Of course! Of course you have to do color correction on all the different cameras pointed from different angles at a sports event.

I absolutely love reading about hard problems that are invisible to most people.

sschueller 26 March 2025
Someone tracked every single camera shot during the halftime show: https://www.youtube.com/watch?v=YXNWfFtgbNI
ZeWaka 26 March 2025
> Without any marketing, it earned a reputation among seasoned professionals and became a staple at the world’s top live events.

Sounds like the entertainment industry. Everyone truly knows everyone, especially when you're working on the same show with the same crew year after year.

It's definitely a family of sorts.

ram_rar 26 March 2025
Great to see Elixir gaining traction in mission-critical broadcast systems! I wonder, how much of Cyanview's reliability comes from Elixir specifically versus just good implementation of MQTT? and is there any specific Elixir features were essential that couldn't be replicated in other languages?
innocentoldguy 26 March 2025
I have implemented Elixir in critical financial applications, B2B growth intelligence applications, fraud detection applications, scan-and-go shopping applications, and several others.

In every case, like the engineering team in this article demonstrates, the developer experience and end results have exceeded expectations. If you haven’t used Elixir, you should give it a try.

Edit: Fixed an editing error.

eggy 26 March 2025
Would Gleam be practical for a similar application aside from the OTP/BEAM runtime? I am guessing you'd have to leverage Elixir libraries that are not present for Gleam yet, and you might have slower compile times due to static typing, but you'd catch runtime errors sooner. Would it be more of a debugging vs. fast dynamic iteration trade-off? I am looking to settle on either Gleam or Elixir. I liked Gleam's original ML syntax before, but I like static typing. Thoughts? I am replacing C with Zig, and I am brushing up on my assembly by adding ARM to my x64 skill set.
JSR_FDED 26 March 2025
It’s always surprised me how the world of digital video is a cousin of IT yet is impenetrable to people outside the video industry. How they refer to resolutions, colors, networking, storage is (almost deliberately?) different.
markb139 26 March 2025
30 odd years ago, part of my role was to colour balance cameras in a studio environment. We didn’t need computers - but at most there were only 5 cameras :)
frankfrank13 26 March 2025
Really cool piece, this jumped out to me:

> The devices in a given location communicate and coordinate on the network over a custom MQTT protocol. Over a hundred cameras without issue on a single Remote Control Panel (RCP), implemented on top of Elixir’s network stack.

Makes sense! MQTT is, if I understand right, built on TCP. Idk if I would have found the same solution, but its seemingly a good one

notepad0x90 26 March 2025
What is being used in similar broadcast setups outside of this Superbowl?
DerekL 26 March 2025
The title is misspelled, should be “Super Bowl”, two words.
xlii 26 March 2025
I won’t let a friend start development in Elixir.

Let me get it out: I love BEAM. OTP is awesome and one of the best systems in its kind. I was completely enamored with Elixir years ago as a modern Erlang which excited me to the bone.

It’s no longer the case. When you get into non-trivial things there are many sharp edges and paper cuts. Some from the top of my head:

- it’s impossible to disable warnings - test runs are often highly verbose because libraries ignore them and (as discussed somewhere in forums) warnings are deemed useful so they can’t be disable

- the only way to catch some, important ones, in CI is to use "warnings-as-errors" …

- so one cannot use deprecation flags because it’s also a warning

- when having non trivial ecosystem one cannot selectively deprecate and get errors, this has to be a human process (remember to replace…)

- when doing umbrella tests on non compiled code seed influences order of compilation

- this order of compilation influences outcome and can lead to buggy code

- dependency compilation is not parallelized - takes a lot of time and uses 10% of CPU

- compilation process can break and Elixir isn’t aware that it was interrupted - this means that it doesn’t try to compile properly app/dependency but instead tries to release crippled one

- documentation is hard to use - searching shows random versions and there isn’t even a link to „open newest”

- searching in docs often not finds the keywords you can actually see

- a lot of knowledge is implicit (try checking if you can dynamically add children to a Supervisor)

- sidebar with new ExDocs break for some reason so there is no navigation

- there is no way to browse navigation outside this broken ExDocs which outputs only HTML and LSP

- LSP is afterthought, there are few but neither works well

- Dialyzer/dialyxyr typespecs are useless most of the time

- Squiggly arrow works weird (i.e. ~0.3 might catch 0.99) - my colleague recently mentioned Renovate not picking it up

I could go on and on. I’m doing plenty of research so I’m working with various languages including „niche” ones like Prolog, OCaml, Clojure, Cuelang. Recently I’ve been developing tooling in Go and many core systems are developed in Rust in Elixir, and I work on the latter often.

In principle Elixir is awesome, but has the worst developer experience of all. Sometimes it takes 4h to prepare and push release. Tooling I’m working on can do the same in 5 minutes - I’m parallelizing processes in containers, making idempotent output artifacts and heuristic failure detection to retry on flakiness. When switching between Go and OCaml you can sense how tooling cares for me and my time. Often I bounce off forums where people’s need are shrugged off as non-essential, treating those who came as uneducated juniors (because who in sane mind would like to have a parallel dependencies compilation or disable compilation time warning).

There is nothing better than BEAM, but (for me) Elixir got much worse over the years.

brcmthrowaway 26 March 2025
Wait, is Elixir actually accessing color pixel data in realtime?