Different shapes of track.stems depending in DB(is_wav)
See original GitHub issueAfter decoding, I ran into what feels like a bug (if not, sorry!):
mus = musdb.DB()
tracks = mus.load_mus_tracks()
print(tracks[0].stems.shape)
(5, 7552000, 2)
mus = musdb.DB(is_wav=True)
tracks = mus.load_mus_tracks('train')
print(tracks[0].stems.shape)
(7552000, 2)
Also, when is_wav=True
, load_mus_tracks
returns an empty list if subsets=''
.
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (7 by maintainers)
Top Results From Across the Web
WAVs or stems? What's best for your mix? - YouTube
This video explains the difference between raw WAV files and stems, and gives useful advice on how best to export your recording to...
Read more >Music Stems: All You Need to Know - eMastered
Ever struggled to decode the difference between stems, multi tracks, stripes, and bouncing tracks? In this article, we'll break down each ...
Read more >Mp3, Wav, Trackouts, Stems, Multitracks: What's The Difference?
For example: Vocals Stem = all the vocals grouped together in one audio file. Drums Stem = all the drums elements grouped together...
Read more >What is the best format to send a beat to a rapper, WAV, MP3 ...
It depends. If you think they might remix it and you don't know what software they use, send them STEMS. (Obviously this is...
Read more >Stems and Multitracks: What's the Difference? - iZotope
Multitracks consist of all the individual elements of an audio production, each with their own dedicated track (i.e. kick, snare, hats, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
probably fixed in v.0.2.1
we have some other participants using the docker decoded version because they either don’t use python or cannot easily install ffmpeg (hello windows users without anaconda)…
Therefore it would still be great to know if there is a bug.