dklann / metadata

Spinitron metadata receiver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

metadata

Overview

metadata is an experimental hack to mess with extracting data from the spinitron.com metadata push mechanism.

metadata listens on a TCP port (default: 52341) for connection requests for metadata push requests in XML format from spinitron.com (or, really anywhere).

metadata extracts the relevant data from the XML and writes it to a MariaDB database.

WARNING

This code employs ZERO encryption, authentication, authorization or security. Use at your own peril.

Example Spinitron Channel Configuration

See the template spec for complete details.

tcp://metadata.example.com:52341
<?xml version="1.0" encoding="utf-8" ?>
<nowplaying>
    <time>%now%</time>
    <artist>%an%</artist>
    <title>%sn%</title>
    <album>%dn%</album>
</nowplaying>

Database Schema

CREATE TABLE `m` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `time` datetime NOT NULL,
  `artist` varchar(128) DEFAULT NULL,
  `title` varchar(128) DEFAULT NULL,
  `album` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5190 DEFAULT CHARSET=utf8mb4

About

Spinitron metadata receiver

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 100.0%