This is a template for Smarts Broadcast Skylla (http://www.smartsbroadcast.com/skylla/).
Use the 'RBDS Device Type' 'ASCII', and then input the XML template as supplied here.
This is a template for Smarts Broadcast Skylla (http://www.smartsbroadcast.com/skylla/).
Use the 'RBDS Device Type' 'ASCII', and then input the XML template as supplied here.
This template allow you to send data from MegaSeg to MetaRadio.
Either template can be used, but users of MegaSeg 6.2.3 or later should use the JSON format.
To set this up, go to MegaSeg > Settings > Logging, select 'Telnet' from the dropdown, paste the template into the "Server URL field" and check the box next to "Send track info to server". All other fields can be left empty.
Ensure you change the IP Address "127.0.0.1" to the IP Address of your computer running MetaRadio, and make sure you use the same port number (e.g. 23901) in both MegaSeg and MetaRadio.
{ | |
"generated": "Tue, 12 Apr 2022 06:37:18 GMT", | |
"guide": [ | |
{ | |
"programId": "1", | |
"name": "Anthony's Music", | |
"presenter": "Mr Eden", | |
"image_600": "https://amrap-pages-image.s3.amazonaws.com/profile/8773.jpg?cacbeb=3703307", | |
"image_post_featured": null, | |
"image_post_featured_square": null, |
This template is designed to work with the Generic File/IP listeners in MetaRadio, and the PlayIt Live Now Playing plugin (https://www.playitsoftware.com/Plugins/View/NowPlaying).
{ | |
"station": { | |
"name": "Test Station", | |
"shortName": "test-station", | |
"playerUrl": "https://example-com-10.mediarealm.dev/radioplayer/test-station/", | |
"programguideUrl": "https://example-com-10.mediarealm.dev/guide/", | |
"streams": [ | |
{ | |
"url": "https://stream1.hopemedia.com.au/hope-mp3", | |
"format": "audio/mp3", |
/***************** | |
ESP32 Tally Light for Q-SYS | |
Version 1.0 | |
A wireless (WiFi) tally light for Q-SYS, based on the M5StickC ESP32 development board and the Arduino IDE. | |
Based on: https://github.com/oneguyoneblog/tally-light-esp32-for-blackmagic-atem-switcher/blob/master/tally-light-esp32-for-blackmagic-atem-switcher.ino | |
******************/ | |
#include <M5StickC.h> | |
#include <WiFi.h> |
<span id="metaradio-now-title"></span> | |
<span id="metaradio-now-artist"></span> | |
<span id="metaradio-now-artwork"></span> | |
<script> | |
// Setup our HTTP request | |
var xhr_metaradio_now = new XMLHttpRequest(); | |
// Setup our listener to process completed requests | |
xhr_metaradio_now.onload = function () { |
<?xml version="1.0"?> | |
<MetaRadioNow> | |
<Title><OCP_NOW_ITEMTITLE></Title> | |
<Artist><OCP_NOW_ARTISTNAMES></Artist> | |
<Duration><OCP_NOW_DURATIONSECS></Duration> | |
<StartTimestamp><OCP_SPECIAL_NOW_yyyy-mm-dd hh:nn:ss></StartTimestamp> | |
<Type><OCP_NOW_ITEMTYPEDESCRIPTION_1></Type> | |
<PlayoutId><OCP_NOW_ITEMNUMBER></PlayoutId> | |
</MetaRadioNow> |
<?xml version="1.0"?> | |
<MetaRadioNow> | |
<Type><![CDATA[SONG]]></Type> | |
<StartTimestamp><![CDATA[YYYY-MM-DD HH:MM:SS]]></StartTimestamp> | |
<Duration>240</Duration> | |
<Title><![CDATA[Song Title]]></Title> | |
<Artist><![CDATA[Artist Name]]></Artist> | |
<Album><![CDATA[Album Name]]></Album> | |
<PlayoutId><![CDATA[Unique ID / Filename]]></PlayoutId> | |
<ExternalId><![CDATA[Scheduling system ID - optional]]></ExternalId> |
This script allows you to scrape a Facebook page for live videos, and generate a iframe embed code for your website. It uses Selenium Firefox web driver. You may get banned if you run this too often - this is yet to be seen. | |
The file `livestream-data.json` will be updated with extra fields if/when a live video is found. |