$mp3 » History » Revision 4
Revision 3 (Per Amundsen, 08/12/2015 08:19 AM) → Revision 4/9 (Per Amundsen, 12/15/2018 09:22 PM)
_Added in 1.9.0_
*$mp3(filename)*
Returns "ID3 tag":https://en.wikipedia.org/wiki/ID3 information about a file/song.
_If file is not found, the default sound folder path is returned._
_Same as [[$sound]]._
*Parameters*
filename - Filename to check.
*Properties*
.album - Album name.
.title - Song title.
.artist - Song artist.
.year - Album/song year.
.comment - Comments field.
.genre - Song genre.
.track - Album track,
.length - Song length.
.bitrate - Song bitrate.
.version - "MPEG":https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group version.
.variable - [[$true]] if the song is "variable bitrate":https://en.wikipedia.org/wiki/Variable_bitrate, otherwise [[$false]].
.sample - "MPEG":https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group frequency rate.
.mode - "MPEG":https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group mode.
.layer - "MPEG":https://en.wikipedia.org/wiki/Moving_Picture_Experts_Group layer.
.copyright - [[$true]] if copyright field is enabled, otherwise [[$false]].
.private - [[$true]] if private field is enabled, otherwise [[$false]].
.crc - TODO
*Example*
<pre>
; Print artist - title - album for 'song.mp3'
//echo -ag $mp3(song.mp3).artist- $mp3(song.mp3).title - $mp3(song.mp3).album
</pre>