8000 GitHub - JustAman62/undercut-f1: F1 Live Timing TUI for all F1 sessions with variable delay to sync to your TV. Supports replaying previously recorded sessions.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

F1 Live Timing TUI for all F1 sessions with variable delay to sync to your TV. Supports replaying previously recorded sessions.

License

Notifications You must be signed in to change notification settings

JustAman62/undercut-f1

Repository files navigation

undercut-f1

undercut-f1 is an open source F1 Live Timing client.

undercutf1 is a TUI application which uses UndercutF1.Data to show a Live Timing screen during sessions, and records the data for future session replays. F1 live broadcasts are usually delayed by some undeterminable amount (usually 30-60 seconds), so the TUI allows you to delay the data being displayed so that you can match up what you see on your screen to what you see on your TV.

The UndercutF1.Data library is provided to facilitate connectivity with the F1 Live Timing data stream, and handle all the processing of the incoming data. It also allows for "simulated" streams, where previously recorded data streams can be played back to allow for easy development/testing.

Feature Highlights:

Timing Tower during a Race

  • Timing Tower showing for each driver:
    • Live sector times, with colouring for personal/overall fastest
    • Last & Best Lap
    • Current tyre
    • Age of current tyre
    • Interval to driver in front
    • Gap to leader
    • Gap between a selected driver and all other drivers (useful for monitoring pit windows)
  • Pit Stop Strategy gives you at-a-glance information about all the drivers strategies
  • Race Control messages including investigations, penalties, lap deletions, and weather
  • Driver Tracker shows the position of selected drivers on a live track map
  • Lap-by-lap Timing History to observe gaps over time

Table of Contents

Inspiration

This project is heavily inspired by the FastF1 project by theOehrly. They did a lot of the work understanding the SignalR stream coming from the F1 Live Timing service. Visit their project if you'd like to do any sort of data analysis on past F1 events, or gather live timing data using their module.

UndercutF1 in Action

Timing Tower during a Race

Monitor sector times and gaps, see recent race control messages, capture position changes, observe pit strategies, and more with the standard Timing Tower view.

Timing Tower during a Race

Using a Cursor to Display Relative Gap for a Specific Driver

Use the cursor controlled by the / Cursor actions in the O Timing Tower screen to select a specific driver (in this case Norris) to see the relative interval between that driver and all other. This is useful for determining where a driver will fall to after a pit stop, or looking at pit windows during under cuts.

Additionally, the gap between the selected drivers and those around them over the last four laps will be displayed at the bottom of the screen. This allows you to easily see evolving gaps over time and evaluate how soon a driver may catch up or pull away.

Relative gaps for a specific driver

Timing Tower during Practice/Qualifying

Monitor live/best sector times, gaps, tyres, and lap deletions easily with the specialized timing tower for non-race sessions.

Timing Tower during Practice/Qualifying

Race Control Page

The Race Control page shows all Race Control Messages for the session, along with other session data such as the Weather.

Race Control Page

Driver Tracker

The Driver Tracker page shows a track map overlaid with selected drivers. Use the / Cursor actions to choose drivers, then use the Toggle Select action to toggle the inclusion of the driver on the track map. The driver under the current cursor position will also be highlighted on the map, and timing gaps will switch to interval between that driver and all other drivers.

Driver Tracker Page

Note

Currently the track map is only supported in terminal which support euther the Kitty Graphics Protocol or the iTerm2 Inline Image Protocol. I personally try to test on iTerm2, Ghostty, WezTerm, and Kitty. If the terminal you use doesn't work, please raise an issue and I'll try to implement support!

Tyre Stint / Strategy

The Tyre Stint page shows the tyre strategy for all the drivers. At a glance, see what tyres the drivers have used, how old they are, and if they are on an offset strategy to any other drivers. Each stint contains the pit stop time and pit lane time for the pit stop at the start of the stint.

Use the / Cursor actions to view more information for a particular drivers strategy.

Tyre Stint

Using a Cursor to View Timing History by Lap

In the Timing by Lap page, you can use the cursor controlled by the / Cursor actions to view historical snapshots of the timing tower at the end of every lap. This view will show position changes during that lap, and relative changes in Gap and Interval. Scrolling through laps allows you to build a picture of how the race is unfolding.

Charts on the right display how Gap to Leader and Lap Time for all selected drivers over the last 15 laps, letting you see trends and catch strategies unfolding.

Using a Cursor to View Timing History by Lap

Listen to and Transcribe Team Radio

Listen to team radio clips from anytime in the session, and use a local ML model (Whisper) to transcribe the audio on demand. Transcription accuracy is fairly low, depending on the that days audio quality and driver. Suggestions welcome for improving this!

See Prerequisites to ensure you are able to playback audio.

Listen to and Transcribe Team Radio

Getting Started with undercutf1

Installation

Prerequisites

UndercutF1 tries to statically link as many dependencies as possible to make installation and usage easy. There are however some utilities that may need to be installed for some functionality:

  • Team Radio audio playback uses platform-specific command-line executables to play audio files.
    • On Linux, you need mpg123 available on the PATH. For apt-based systems, you can install with apt install mpg123
    • On Mac, you need afplay available on the PATH. This should be installed by default.
    • On Windows, we only support audio playback via FFmpeg (ffplay) - see below for installation instructions.
    • On Linux/Mac, you can use the preferFfmpegPlayback configuration to use ffplay instead of mpg123/afplay
  • Team Radio transcription relies on FFmpeg and Whisper. Whisper models are downloaded on demand (after user confirmation) in the app. See the [FFmpeg download page](See https://www.ffmpeg.org/download.html) for details on how to install.
    • On Linux apt-based systems, you can install with apt install ffmpeg
    • On Mac with brew, you can install with brew install ffmpeg
    • On Windows with WinGet, you can install with winget install ffmpeg
  • Terminal graphics rely on SkiaSharp. I've statically linked all the skia libs, so you shouldn't need to download skia. However, skia does rely on libfontconfig which may not be installed on your system by default.
    • On Linux apt-based systems, you can install with apt install libfontconfig
    • On Mac with brew, you can install with brew install fontconfig

Install and run as a dotnet tool

undercutf1 is available as a dotnet tool from NuGet, which means it can be installed system-wide simply by running:

# Install globally using the -g flag
dotnet tool install -g undercutf1

# Assuming the dotnet tools directory is on your path, simply execute undercutf1
undercutf1

This method is recommended as it is easy to keep the app updated using dotnet tool update -g undercutf1. You'll need the .NET 9 SDK installed to use this installation method. If you'd rather not install the SDK, try the standalone installation option below.

Install from Homebrew

undercutf1 is available as a formula from brew which means it can be installed system-wide (on Mac and Linux) simply by running:

brew install undercutf1

# Execute undercutf1 to start the TUI
undercutf1

This method is recommended as it is easy to keep the app updated using brew upgrade. Note that installing using brew will also install the dotnet formula. If you develop on your machine using the dotnet-sdk, and have the sdk installed through a non-brew method (e.g. directly from MS or via VSCode), I would recommend avoiding this installation method as the brew dotnet installation can conflict with your own installation due to differences in how dotnet is signed via brew. Alternatively, you can install the dotnet cask (which is signed correctly) brew install --cash dotnet-sdk, and then install undercutf1. This way, your system will still have a signed version of the SDK on its $PATH.

The brew installation method will also install all the mentioned prerequisites for you.

Install and run the standalone executable

Standalone executables are attached to each GitHub release. Download the executable for your system OS/architecture and simply run it directly. The list of artifacts are available on the release page for the latest release. These executables are static builds so don't require the dotnet runtime to be present.

# Download the latest executable (in this case for osx-arm64)
curl https://github.com/JustAman62/undercut-f1/releases/latest/download/undercutf1-osx-arm64 -o ./undercutf1 -L

# Execute undercutf1 to start the TUI
./undercutf1

Run using the docker image

Docker images are pushed to Dockerhub containing the executable. The image expects a volume to be mounted at /data to store/read session recordings. If this is not provided, the application will only work for live sessions and you'll lose recorded data.

If provided, the directory you are mapping must already exist, as the docker image will not have the required permissions to create it for you.

If you are using Wezterm or iTerm as your terminal, you'll need to pass through the TERM_PROGRAM environment variable to make sure that your terminal graphics work correctly (e.g. driver tracker).

docker run -it -e TERM_PROGRAM -v $HOME/undercut-f1/data:/data justaman62/undercutf1

# Arguments can still be passed to the executable as normal
# for example:
docker run -it -v $HOME/undercut-f1/data:/data justaman62/undercutf1 import 2025
Known Issues with Docker
  • Audio playback of Team Radio may not work when using Docker. This is due to difficulties in using audio devices in a cross-platform way, which I haven't managed to figure out yet.

Run directly from Source

# Checkout the git repository
git clone git@github.com:JustAman62/undercut-f1.git
cd undercut-f1

# Run the console project with `dotnet run`
dotnet run --project UndercutF1.Console/UndercutF1.Console.csproj

# Arguments can be provided after the -- argument, for example
dotnet run --project UndercutF1.Console/UndercutF1.Console.csproj -- import 2025

Start Timing for a Live Session

  1. Start undercutf1 as described above
  2. Navigate to the S Session Screen
  3. Start a Live Session with the L Start Live Session action

During the session, streamed timing data will be written to the configured data directory. This will allow for future replays of this recorded data.

Start Timing for a Pre-recorded Session

Data for pre-recorded sessions should be stored in the <data-directory>/<session-name> directory. Sample data can be found in this repos Sample Data folder. To use this sample data, copy one of the folders to the configured data directory and then it will be visible in step 4 below.

  1. OPTIONAL: Download sample data to the configured data directory. If you already have data, or have checked out the repository, skip to the next step.

    # Import data from the 2025 race in Suzuka
    undercutf1 import 2025 --meeting-key 1256 --session-key 10006
  2. Start undercutf1 as described above

  3. Navigate to the S Session Screen

  4. Start a Simulated Session with the F Start Simulation action.

  5. Select the session to start using the Up/Down arrows, then pressing Enter

  6. Skip forward in time a bit by decreasing the delay with N (or ⇧ Shift + N to decrease by 30 seconds).

Download a previous session data for replay

F1 provides static timing data files for already completed sessions. This data can be downloaded and converted into the same format undercutf1 uses to save live recorded data. You can then replay the old session using the steps above.

  1. List the meetings that have data available to import with undercutf1 import <year>
  2. Review the list of meetings returned from the command, and list the available sessions inside the chosen meeting with undercutf1 import <year> --meeting-key <meeting-key>
  3. Review the list of sessions, and select one to import: undercutf1 import <year> --meeting-key <meeting-key> --session-key <session-key>
  4. Data that is imported will be saved to the configured data directory. See Configuration for information on how to change this.

During the Session

Managing Delay

All session data, whether live or pre-recorded, is sent to a Channel that acts as a delayed-queue. After your currently configured delay delay, data points are pulled from the queue and processed, leading to updates on the timing screens. The amount of this delay can be changed with the M/N Delay actions whilst on the timing screens. Hold ⇧ Shift to change the delay by 30 seconds instead of 5. Use the ,/. keys to change by 1 second. When using undercutf1 during a live session, you may wish to increase this delay to around ~50 seconds (actual number may vary) to match with the broadcast delay and avoid being spoiled about upcoming action.

Simulated sessions start with a calculated delay equal to the amount of time between the start of the actual session and now. This means you can decrease the delay with the N Delay action to fast-forward through the session.

Data processing, and therefore the "session clock" can be paused using the P Pause Clock action. This allows you to easily synchronize prerecorded sessions by pausing the session in UndercutF1, then resuming at the perfect time when, for example, the formation lap starts.

Using the Cursor

There is a global cursor that is controlled with the / Cursor actions. What this cursor does depends on the screen, for example is can be used in the Timing Tower screen to scroll through Race Control Messages, or to select a driver on the Tower to see comparative intervals. Hold the ⇧ Shift key to move the cursor by five positions instead of one.

Configuration

UndercutF1 can be configured using either a simple config.json file, through the command line at startup, or using environment variables. JSON configuration will be loaded from the appropriate config file path, if it exists.

To view what configuration is currently being used, open the I Info screen when the app starts up.

JSON Path Command Line Environment Variable Description
dataDirectory --data-directory UNDERCUTF1_DATADIRECTORY The directory to which JSON timing data is read or written from. This directory is also where Whisper models will be stored (if downloaded) for team radio transcription.
logDirectory --log-directory UNDERCUTF1_LOGDIRECTORY The directory to which logs are written to.
verbose -v|--verbose UNDERCUTF1_VERBOSE Whether verbose logging should be enabled. Default: false. Values: true or false.
apiEnabled --with-api UNDERCUTF1_APIENABLED Whether the app should expose an API at http://localhost:61937. Default: false. Values: true or false.
notify --notify UNDERCUTF1_NOTIFY Whether the app should sent audible BELs to your terminal when new race control messages are received. Default: true. Values: true or false.
preferFfmpegPlayback --prefer-ffmpeg UNDERCUTF1_PREFERFFMPEGPLAYBACK Prefer the usage of ffplay for playing Team Radio on Mac/Linux, instead of afplay/mpg123 respectively. ffplay is always used on Windows. Default: false. Values: true or false.

Default Directories

UndercutF1 tries to adhere the Windows and XDG standards as much as possible. By default, timing data and logs are written/read at the following directories:

Type Windows Linux/Mac Linux/Mac Fallback
Config File $env:APPDATA/undercut-f1/config.json $XDG_CONFIG_HOME/undercut-f1/config.json ~/.config/undercut-f1/config.json
Data $env:LOCALAPPDATA/undercut-f1/data $XDG_DATA_HOME/undercut-f1/data ~/.local/share/undercut-f1/data
Logs $env:LOCALAPPDATA/undercut-f1/logs $XDG_STATE_HOME/undercut-f1/logs ~/.local/state/undercut-f1/logs

Data and Logs paths can be configured as described above. The config file location cannot be modified, and will always be read from the above location.

Logging

UndercutF1.Data writes logs using the standard ILogger implementation. SignalR client logs are also passed to the standard ILoggerProvider.

When running undercutf1 logs are available in two places:

  • Logs are stored in memory and viewable the L Logs screen. Logs can be scrolled on this screen, and the minimum level of logs shown can be changed with the M Minimum Log Level action.
  • Log files are written to the configured log directory.

Default log level is set to Information. More verbose logging can be enabled with the verbose config option.

Alternate Key Binds

undercutf1 displays the keys associated with each action that is applicable for the current screen. However, the shown keys aren't the only keys which can trigger the action, there are alternative keys which may be more intuitive for users of other TUIs.

  • H,J,K,L can be used in place of arrow keys.
  • Backspace can be used in place of the Escape key.
  • ^ Control+C can always be used to go back a screen, or exit the app. You may need to press multiple times to completely exit the app.
  • ⇧ Shift can be held for certain actions to modify the action. For example, hold shift to change delay by 30 seconds instead of 5, or to move the cursor by 5 positions instead of 1.

Data Recording and Replay

All events received by the live timing client will be written to the configured Data Directory, see see Configuration for details. Files will be written to a subdirectory named using the current sessions name, e.g. <data-directory>/2025_Jeddah_Race/. In this directory, two files will be written:

  • subscribe.txt contains the data received at subscription time (i.e. when the live timing client connected to the stream)
  • live.txt contains an append-log of every message received in the stream

Both of these files are required for future simulations/replays. The IJsonTimingClient supports loading these files and processing them in the same way live data would be. Data points will be replayed in real time, using an adjustable delay.

Notice

undercut-f1 is unofficial and are not associated in any way with the Formula 1 companies. F1, FORMULA ONE, FORMULA 1, FIA FORMULA ONE WORLD CHAMPIONSHIP, GRAND PRIX and related marks are trade marks of Formula One Licensing B.V.

0