Class: TagLib::MPEG::XingHeader
- Inherits:
-
Object
- Object
- TagLib::MPEG::XingHeader
- Defined in:
- docs/taglib/mpeg.rb
Overview
Xing VBR header.
Constant Summary collapse
- Invalid =
0
- Xing =
1
- VBRI =
2
Instance Method Summary collapse
-
#total_frames ⇒ Integer
Total number of frames.
-
#total_size ⇒ Integer
Total size of stream in bytes.
-
#type ⇒ Integer
The type of the VBR header.
-
#valid? ⇒ true
If a valid Xing header is present.
Instance Method Details
#total_frames ⇒ Integer
Returns total number of frames.
175 176 |
# File 'docs/taglib/mpeg.rb', line 175 def total_frames end |
#total_size ⇒ Integer
Returns total size of stream in bytes.
179 180 |
# File 'docs/taglib/mpeg.rb', line 179 def total_size end |
#type ⇒ Integer
Returns the type of the VBR header.
185 186 |
# File 'docs/taglib/mpeg.rb', line 185 def type end |
#valid? ⇒ true
Returns if a valid Xing header is present.
171 172 |
# File 'docs/taglib/mpeg.rb', line 171 def valid? end |