enum RemiAudio::Cue::Track::Flags

Overview

A set of FLAGS for a Track instance.

Defined in:

remiaudio/cue.cr

Enum 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

Instance Method Summary

Class Method Detail

def self.names : Array(String) #

Similar to ::Enum.names, except that the returned values match those generated with #to_s.


[View source]
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.


[View source]

Instance Method Detail

def digital_copy_permitted? #

[View source]
def four_channel? #

[View source]
def none? #

[View source]
def pre_emphasis? #

[View source]
def scms? #

[View source]
def to_s : String #

Similar to ::Enum#to_s, except that the returned values are usable in a CUE file.


[View source]