Skip to content

Commit

Permalink
add supported file types for Engine DJ (#4463)
Browse files Browse the repository at this point in the history
* add supported file types for Engine DJ
  • Loading branch information
toszlanyi committed Oct 21, 2021
1 parent 11fcfcd commit 625cebd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/library/export/engineprimeexportjob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,16 @@ constexpr int kMaxHotCues = 8;

constexpr uint8_t kDefaultWaveformOpacity = 127;

const QStringList kSupportedFileTypes = {"mp3", "flac", "ogg"};
const QStringList kSupportedFileTypes = {
"aac",
"m4a",
"aiff",
"alac",
"flac",
"mp3",
"mp4",
"ogg",
"wav"};

std::optional<djinterop::musical_key> toDjinteropKey(
track::io::key::ChromaticKey key) {
Expand Down

0 comments on commit 625cebd

Please sign in to comment.