Skip to content

Commit 17410cd

Browse files
authored
Merge branch 'master' into deezer-paginate
2 parents ba3569a + 11ad35d commit 17410cd

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

beets/library.py

+3
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,9 @@ class Item(LibModel):
531531

532532
'length': DurationType(),
533533
'bitrate': types.ScaledInt(1000, 'kbps'),
534+
'bitrate_mode': types.STRING,
535+
'encoder_info': types.STRING,
536+
'encoder_settings': types.STRING,
534537
'format': types.STRING,
535538
'samplerate': types.ScaledInt(1000, 'kHz'),
536539
'bitdepth': types.INTEGER,

beetsplug/spotify.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,16 @@ def album_for_id(self, album_id):
194194
)
195195
)
196196

197+
tracks_data = album_data['tracks']
198+
tracks_items = tracks_data['items']
199+
while tracks_data['next']:
200+
tracks_data = self._handle_response(requests.get,
201+
tracks_data['next'])
202+
tracks_items.extend(tracks_data['items'])
203+
197204
tracks = []
198205
medium_totals = collections.defaultdict(int)
199-
for i, track_data in enumerate(album_data['tracks']['items'], start=1):
206+
for i, track_data in enumerate(tracks_items, start=1):
200207
track = self._get_track(track_data)
201208
track.index = i
202209
medium_totals[track.medium] += 1

docs/changelog.rst

+4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ New features:
1010

1111
* :doc:`/plugins/kodiupdate`: Now supports multiple kodi instances
1212
:bug:`4101`
13+
* Add the item fields ``bitrate_mode``, ``encoder_info`` and ``encoder_settings``.
1314

1415
Bug fixes:
1516

1617
* :doc:`/plugins/deezer`: Fix auto tagger pagination issues (fetch beyond the
1718
first 25 tracks of a release).
19+
* :doc:`/plugins/spotify`: Fix auto tagger pagination issues (fetch beyond the
20+
first 50 tracks of a release).
1821
* :doc:`/plugins/lyrics`: Fix Genius search by using query params instead of body.
1922
* :doc:`/plugins/unimported`: The new ``ignore_subdirectories`` configuration
2023
option added in 1.6.0 now has a default value if it hasn't been set.
@@ -30,6 +33,7 @@ For packagers:
3033

3134
* We fixed a version for the dependency on the `Confuse`_ library.
3235
:bug:`4167`
36+
* The minimum required version of :pypi:`mediafile` is now 0.9.0.
3337

3438

3539
1.6.0 (November 27, 2021)

docs/reference/pathformat.rst

+3
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ Audio information:
235235

236236
* length (in seconds)
237237
* bitrate (in kilobits per second, with units: e.g., "192kbps")
238+
* bitrate_mode (e.g., "CBR", "VBR" or "ABR", only available for the MP3 format)
239+
* encoder_info (e.g., "LAME 3.97.0", only available for some formats)
240+
* encoder_settings (e.g., "-V2", only available for the MP3 format)
238241
* format (e.g., "MP3" or "FLAC")
239242
* channels
240243
* bitdepth (only available for some formats)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def build_manpages():
8888
'unidecode',
8989
'musicbrainzngs>=0.4',
9090
'pyyaml',
91-
'mediafile>=0.2.0',
91+
'mediafile>=0.9.0',
9292
'confuse>=1.5.0',
9393
'munkres>=1.0.0',
9494
'jellyfish',

0 commit comments

Comments
 (0)