$mp3 » History » Revision 5
« Previous |
Revision 5/9
(diff)
| Next »
Per Amundsen, 12/17/2018 07:33 PM
Added in 1.9.0
$mp3(filename)
Returns ID3 tag 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 version.
.variable - $true if the song is variable bitrate, otherwise $false.
.sample - MPEG frequency rate.
.mode - MPEG mode.
.layer - MPEG layer.
.copyright - $true if copyright field is enabled, otherwise $false.
.private - $true if private field is enabled, otherwise $false.
.crc - $true if protected field is enabled, otherwise $false.
.vbr - $true if the song bitrate is variable, otherwise $false.
Example
; Print artist - title - album for 'song.mp3' //echo -ag $mp3(song.mp3).artist- $mp3(song.mp3).title - $mp3(song.mp3).album
Updated by Per Amundsen almost 6 years ago · 5 revisions