GetSoundMetaTags

From Multi Theft Auto: Wiki
Revision as of 16:53, 9 August 2010 by Gamesnert (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Used to get the meta tags attached to a sound. These provide information about the sound, for instance the title or the artist.

Syntax

table getSoundMetaTags ( element sound )

Required Arguments

Returns

Returns a table with all data available (keys are listed below) for the sound if successful, false otherwise.

  • title
  • artist
  • album
  • genre
  • year
  • comment
  • track
  • composer
  • copyright
  • subtitle
  • album_artist
  • stream_name
  • stream_title

Example

-- TODO

See Also