Better Programming

Advice for programmers.

Follow publication

Member-only story

Building an AI-Powered Football Commentator

Michael J. Fordham
Better Programming
Published in
4 min readApr 10, 2023

Photo by Gustavo Ferreira

If you’ve ever played a game like FIFA or PES, you’ll know that sometimes the pre-recorded commentary leaves you less immersed than you’d like.

A commentator could be reading the team sheet, and suddenly they interrupt themselves by screaming a player’s name.

Or maybe you’ve just heard the same match summary one too many times over the course of a few seasons.

These tiny annoyances made me wonder if there could be a way to improve that experience.

So I decided to try my hand at building a proof of concept which solves these problems.

The flow I wanted was:

  1. Input some largely unstructured football data (e.g. match stats)
  2. Have a commentary script generated using those stats, in the style of an experienced commentator
  3. Then have a realistic-sounding voice read out the generated script

I selected a few different technologies for this project:

  • React/Next.js for the frontend and some APIs (I had never built with React before, I am firmly an Angular dev so I wanted to see what all the fuss was about)
  • GPT 3.5 Turbo for the commentary generation, as it is both impressive in its generations and cheap per token generated
  • ElevenLabs text-to-voice service, to generate a realistic-sounding voice rather than a synthetic robotic voice

The build was actually surprisingly straightforward, especially considering I was a novice with React/Next.js. I managed to get a full, working proof of concept built in around a day and a half of tinkering.

I have made the project open-source if you’re interested in exploring the code. To run it yourself, you’ll need to create a .env.local file with API keys OpenAI’s and ElevenLabs’ tools…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Michael J. Fordham
Michael J. Fordham

Written by Michael J. Fordham

UX Designer and Software Engineer, interested in the future of innovative UX. I mainly write about design, development, data and AI. www.lightningux.design

Responses (8)

Write a response

So inspiring

--

Nice! Great that ChatGPT works well without structured data, but imagine how much better it'd be if you provided detailed info!! Keep experimenting, this is an awesome project to build on. Thanks for writing and sharing your code! 🤓

--

Brilliant concept. I'm envious of your rapid implementation with unfamiliar tools - well done!
FOSS - over the top, thanks.
Go earn yourself a fortune with ongoing development of this. You deserve it. I think you're onto something great that will resonate.

--