The initial reviews of TP4 said it was possible to drag the stem files created in traktor into a DAW to work on them as individual stems.
I have located the mp4 files but am unable to drag them into ableton. Any ideas how to make this work?
You have to get ffmpeg first https://support.audacityteam.org/basics/installing-ffmpeg
If you import to Audacity you can see all the individual parts, including the original.
Maschine 3.0 will create stems that you can import into Ableton.
It didn’t work for me in audacity either
Yes, I guess this is the way to go. Thanks
A bash script to use ffmpeg to split .stem.mp4 files into individual stream files:
#!/bin/bash
for f in *.stem.mp4; do ffmpeg -i "$f" -map 0:1 "drums.wav" -map 0:2 "bass.wav" -map 0:3 "other.wav" -map 0:4 "vox.wav" done