Class: TagLib::FLAC::Properties
- Inherits:
-
AudioProperties
- Object
- AudioProperties
- TagLib::FLAC::Properties
- Defined in:
- docs/taglib/flac.rb
Overview
FLAC audio properties.
Constant Summary
Constants inherited from AudioProperties
AudioProperties::Accurate, AudioProperties::Average, AudioProperties::Fast
Instance Attribute Summary collapse
-
#bits_per_sample ⇒ Integer
readonly
Number of bits per audio sample.
-
#sample_frames ⇒ Integer
readonly
Number of sample frames.
-
#signature ⇒ binary String
readonly
MD5 signature of uncompressed audio stream (binary data).
Attributes inherited from AudioProperties
#bitrate, #channels, #length_in_milliseconds, #length_in_seconds, #sample_rate
Instance Attribute Details
#bits_per_sample ⇒ Integer (readonly)
Returns Number of bits per audio sample.
144 145 146 |
# File 'docs/taglib/flac.rb', line 144 def bits_per_sample @bits_per_sample end |
#sample_frames ⇒ Integer (readonly)
Returns Number of sample frames.
149 150 151 |
# File 'docs/taglib/flac.rb', line 149 def sample_frames @sample_frames end |
#signature ⇒ binary String (readonly)
Returns MD5 signature of uncompressed audio stream (binary data).
153 154 155 |
# File 'docs/taglib/flac.rb', line 153 def signature @signature end |