OnSoundUpdateMeta
From Onset Developer Wiki
Description
Called received new metadata from a network stream. (.pls playlist streams) This can be the name of the station, song, and artist.
Syntax
OnSoundUpdateMeta(sound, meta)
Parameters
- sound
The sound identifier. - meta
The metadata received.
Example
AddEvent("OnSoundUpdateMeta", function(sound, meta)
AddPlayerChat("Sound ID " .. sound .. " is now playing: " .. meta .. "!")
end)