The page below display Now Playing info and Track History of audio stream.
I am interested to know how they parse metadata from stream. As I see, they use API to fetch data. What's not clear what is a purpose of a few scripts on this page:
<script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script> and its corresponding code right before the body closing tag.
This is Real user monitoring (RUM) script that collects timing information: does it involved in parsing stream metadata, or it have another purpose?
And these two scripts:
script src="/assets/modernizr-2f0c525027ca1ae88a69b5315a71aa63.js" type="text/javascript"></script>
<script src="/assets/application-8f8a7524175424a898bee63adddfe284.js" type="text/javascript"></script>
Are these two scripts somewhat related to metadata parsing or track list processing? Can someone check the source code and define this with Firebug?