I am using apache tika for detecting the mime type of audio and video files. For some reason tika reports the mime type of the wma file (Windows Media Audio format owned by Microsoft) as application/octet-stream. Do you know a better way to find mime type of file in java? Or can I use tika itself to query this information?
|
feedback
|
|
Tika should be able to detect the files if you supply a filename for them, eg
I've opened https://issues.apache.org/jira/browse/TIKA-629 to track the lack of mime magic detection for if you don't have the filename to hand. | |||
feedback
|
|
As per Microsoft support: http://support.microsoft.com/kb/284094, the mime type of WMA should be
Have a look at the below links for finding out mime-types in Java: | |||
|
feedback
|