Class: TagLib::FileRef
- Inherits:
-
Object
- Object
- TagLib::FileRef
- Defined in:
- docs/taglib/base.rb
Overview
This class allows to read basic tagging and audio properties from files, without having to know what the file type is. Thus, it works for all tagging formats that taglib supports, but only provides a minimal API.
Should you need more, use the file type specific classes, see subclasses of File.
Instance Method Summary collapse
-
#audio_properties ⇒ TagLib::AudioProperties
The audio properties.
-
#close ⇒ void
Closes the file and releases all objects that were read from the file.
-
#initialize(filename, read_audio_properties = true, audio_properties_style = TagLib::AudioProperties::Average) ⇒ FileRef
constructor
Create a FileRef from a file name.
-
#null? ⇒ Boolean
If the file is null (i.e. it could not be read).
-
#save ⇒ Boolean
Saves the file.
-
#tag ⇒ TagLib::Tag
The tag.
Constructor Details
permalink #initialize(filename, read_audio_properties = true, audio_properties_style = TagLib::AudioProperties::Average) ⇒ FileRef
Create a FileRef from a file name.
43 44 45 |
# File 'docs/taglib/base.rb', line 43 def initialize(filename, read_audio_properties=true, audio_properties_style=TagLib::AudioProperties::Average) end |
Instance Method Details
permalink #audio_properties ⇒ TagLib::AudioProperties
Returns the audio properties.
48 49 |
# File 'docs/taglib/base.rb', line 48 def audio_properties end |
permalink #close ⇒ void
This method returns an undefined value.
Closes the file and releases all objects that were read from the file.
71 72 |
# File 'docs/taglib/base.rb', line 71 def close end |
permalink #null? ⇒ Boolean
Returns if the file is null (i.e. it could not be read).
52 53 |
# File 'docs/taglib/base.rb', line 52 def null? end |
permalink #save ⇒ Boolean
Saves the file
58 59 |
# File 'docs/taglib/base.rb', line 58 def save end |
permalink #tag ⇒ TagLib::Tag
Returns the tag.
62 63 |
# File 'docs/taglib/base.rb', line 62 def tag end |