enum RemiAudio::Cue::Track::Flags
Overview
A set of FLAGS
for a Track
instance.
Defined in:
remiaudio/cue.crEnum Members
-
DigitalCopyPermitted =
1
-
Digital copy permitted
-
FourChannel =
2
-
4-channel audio
-
PreEmphasis =
4
-
Pre-emphasis enabled (for audio tracks only)
-
Scms =
8
-
Serial copy management system
-
None =
0
-
All =
15
Class Method Summary
-
.names : Array(String)
Similar to
::Enum.names
, except that the returned values match those generated with#to_s
. -
.parse?(string : String) : self | Nil
Similar to
::Enum.parse?
, except that this expects the strings to match those in a CUE file (e.g.
Instance Method Summary
- #digital_copy_permitted?
- #four_channel?
- #none?
- #pre_emphasis?
- #scms?
-
#to_s : String
Similar to
::Enum#to_s
, except that the returned values are usable in a CUE file.
Class Method Detail
Similar to ::Enum.names
, except that the returned values match those
generated with #to_s
.
def self.parse?(string : String) : self | Nil
#
Similar to ::Enum.parse?
, except that this expects the strings to
match those in a CUE file (e.g. "DCP"
, "4CH"
, etc.), and is case
insensitive.
Instance Method Detail
def to_s : String
#
Similar to ::Enum#to_s
, except that the returned values are usable in
a CUE file.