Package brisa :: Package upnp :: Package didl :: Module didl_lite :: Class MusicTrack
[hide private]
[frames] | no frames]

Class MusicTrack

source code

object --+            
         |            
    Object --+        
             |        
          Item --+    
                 |    
         AudioItem --+
                     |
                    MusicTrack

A discrete piece of audio that should be interpreted as music.

Instance Methods [hide private]
 
__init__(self, id='', parent_id='', title='', restricted=False, creator='', write_status=WRITE_STATUS_NOT_WRITABLE, ref_id='', genres=[], description='', long_description='', publishers=[], language='', relations=[], rights=[], artists=[], albums=[], original_track_number='', playlists=[], storage_medium='', contributors=[], date='')
Constructor for the Item class.
source code
 
from_element(self, elt)
Set MusicTrack attributes from an element.
source code
 
to_didl_element(self)
Create Element from MusicTrack.
source code

Inherited from Item (private): _get_uri

Inherited from Object: add_resource, to_string

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]

Inherited from Object: from_string

Class Variables [hide private]
  upnp_class = '%s%s' %(AudioItem.upnp_class, '.musicTrack')

Inherited from Item: element_name, uri

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, id='', parent_id='', title='', restricted=False, creator='', write_status=WRITE_STATUS_NOT_WRITABLE, ref_id='', genres=[], description='', long_description='', publishers=[], language='', relations=[], rights=[], artists=[], albums=[], original_track_number='', playlists=[], storage_medium='', contributors=[], date='')
(Constructor)

source code 

Constructor for the Item class.

Parameters:
  • id (string) - unique identifier for the object
  • parent_id (string) - id of object's parent
  • title (string) - name of the object
  • restricted (bool) - True if only CDS can modify the object
  • creator (string) - content creator or owner
  • write_status (integer) - modifiability of the resources of this object. Integer parameter based on WRITE_STATUS_* constants
  • ref_id (string) - id property of the item being referred to
  • genres (list) - genres to which the object belongs
  • description (string) - description
  • long_description (string) - long description
  • publishers (list) - entities responsible for making the resource available
  • language (string) - language of the resource
  • relations (list) - related resources
  • rights (list) - rights held in and over the resource
  • artists (list) - artists to which the object belongs
  • albums (list) - albums to which the object belongs
  • original_track_number (int) - original track number on an Audio CD or other medium
  • playlists (list) - names of the playlists to which the item belongs
  • storage_medium (string) - indicates the type of storage used for the content. Possible values are enumerated on STORAGE_MEDIUM_* variables
  • contributors (list) - entities responsible for making contributions to the resource
  • date (string) - ISO 8601, form YYYY-MM-DD
Overrides: object.__init__

from_element(self, elt)

source code 

Set MusicTrack attributes from an element.

Overrides: Object.from_element

to_didl_element(self)

source code 

Create Element from MusicTrack.

Overrides: Object.to_didl_element