Change Audio output in mAirlist with a script

Short script that changes the audio output

January 23, 2025 · Thomas Mongstad

Regex Aviation

How to match a movement message with regex?

December 19, 2024 · Thomas Mongstad

Its Been a While

Just a brief note on packages on my Mac..

December 9, 2024 · Thomas Mongstad

Open Browser from mAirlist

Set your desired URL in the variables. Find path to your browser. Add this file as script to start or end of file, cartwall, button or whatever in mAirlist Voilá, you are opening your desired web page directly from mArilist in your preferred browser. const URL = 'https://www.yr.no/nb/v%C3%A6rvarsel/timetabell/1-72837/Norge/Oslo/Oslo/Oslo?i=0'; BROWSER = 'C:\Program Files\Google\Chrome\Application\chrome.exe'; begin ShellExecute(BROWSER, URL); end.

October 1, 2023 · Thomas Mongstad

Create Virtual Audio Cable in Ubuntu

A quick guide on how to set up virtual audio cables in linux

March 25, 2022 · Thomas Mongstad

Downloading from FTP with a script

Our newsprovider are uploading every hour to their FTP server for us to download and use. At their server the filename is: Nyheter_2022-03-25_20 (News_year-month-date_hour) const URL = 'ftp://**username**:**password**@*ftp1.newsprovider.dev*/*Filename_*'; var TIME: string; begin SystemLog('Downloading news.'); // Adding approx. 15 minutes to the current time, as we are downloading at 10 minutes to the hour. TIME := FormatDateTime('yyyy-mm-dd_hh', Now + 0.00555555); ShellExecuteHidden('curl', URL + TIME +'.wav --output M:\Database\Nyheter\nyheter.wav'); end. Just add this to your mAirlist event edior :) ...

March 25, 2022 · Thomas Mongstad

Yamaha MW12CX Faderstart

Bought a new - used - mixer for my personal radio studio… And made a mess!

February 10, 2022 · Thomas Mongstad

Ableton Launchpad vs Mairlist

This script makes your Launchpad MIDIcontroller interact with mAirlist.. Inspired by Thomas Kloppholzs’ Launchpad Script. Changed for our current need.

October 28, 2021 · Thomas Mongstad

Radio Studio Monitor

This small app is intended for use on LAN, hence the low - to non existing - security features. Currently running on a Raspberry Pi in our local radio studio. All services hosted on the Raspberry Pi itself, running alongside mAirlist Radio Automation. Please find repo on github: https://github.com/Mongstaen/RadioStudioMonitor Installation Clone this repository Create your pusher user and app. https://pusher.com Create .env based on the example, update with your pusher details npm install node index Feel free to use and contribute to this small project! This is my first project using JS and Node. And there are some known errors. ...

October 24, 2021 · Thomas Mongstad