Skip to content

Commit

Permalink
Add more audio formats
Browse files Browse the repository at this point in the history
  • Loading branch information
fadils committed Apr 27, 2015
1 parent 5d17c56 commit 706c116
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ public static boolean isAudio(String url) {
if (url == null) {
return false;
}
return url.endsWith(".mp3") || url.endsWith(".ogg") || url.endsWith(".wav");
return url.endsWith(".mp3") || url.endsWith(".ogg") || url.endsWith(".wav") || url.endsWith(".wma") ||
url.endsWith(".aiff") || url.endsWith(".aif") || url.endsWith(".aac") || url.endsWith(".m4a");
}

/**
Expand Down

0 comments on commit 706c116

Please sign in to comment.