Class: TagLib::WavPack::Properties
- Inherits:
-
AudioProperties
- Object
- AudioProperties
- TagLib::WavPack::Properties
- Defined in:
- lib/TagLib_doc.rb
Overview
An implementation of audio property reading for WavPack. .</b>
This reads the data from an WavPack stream found in the AudioProperties API.
Instance Method Summary collapse
-
#bitrate ⇒ Object
Returns the most appropriate bit rate for the file in kb/s.
-
#bitsPerSample ⇒ Object
Returns number of bits per sample.
-
#channels ⇒ Object
Returns the number of audio channels.
-
#length ⇒ Object
Returns the length of the file in seconds.
-
#sampleRate ⇒ Object
Returns the sample rate in Hz.
-
#version ⇒ Object
Returns WavPack version.
Instance Method Details
#bitrate ⇒ Object
Returns the most appropriate bit rate for the file in kb/s. For constant bitrate formats this is simply the bitrate of the file. For variable bitrate formats this is either the average or nominal bitrate.
2329 2330 |
# File 'lib/TagLib_doc.rb', line 2329 def bitrate() end |
#bitsPerSample ⇒ Object
Returns number of bits per sample.
2319 2320 |
# File 'lib/TagLib_doc.rb', line 2319 def bitsPerSample() end |
#channels ⇒ Object
Returns the number of audio channels.
2314 2315 |
# File 'lib/TagLib_doc.rb', line 2314 def channels() end |
#length ⇒ Object
Returns the length of the file in seconds.
2324 2325 |
# File 'lib/TagLib_doc.rb', line 2324 def length() end |
#sampleRate ⇒ Object
Returns the sample rate in Hz.
2304 2305 |
# File 'lib/TagLib_doc.rb', line 2304 def sampleRate() end |
#version ⇒ Object
Returns WavPack version.
2309 2310 |
# File 'lib/TagLib_doc.rb', line 2309 def version() end |