mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-20 10:15:23 -04:00
Add support for Tidal video links #53
This commit is contained in:
parent
8bfa7bc10d
commit
c115eae15f
4 changed files with 14 additions and 5 deletions
|
@ -100,6 +100,12 @@ class TrackMetadata:
|
|||
self.add_album_meta(album)
|
||||
|
||||
def update(self, meta):
|
||||
"""Given a TrackMetadata object (usually from an album), the fields
|
||||
of the current object are updated.
|
||||
|
||||
:param meta:
|
||||
:type meta: TrackMetadata
|
||||
"""
|
||||
assert isinstance(meta, TrackMetadata)
|
||||
|
||||
for k, v in meta.asdict().items():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue