I’m trying to set up a podcast feed and the last issue I have is that the feed_enclosures plugin doesn’t add the proper “type” to the enclosure. I’m getting:
<enclosure url='http://www.smartpillweb.com/ee/images/uploads/sample.m4a' type='text/plain' length='407807' >where the “type” should be:
type="audio/x-m4a"I added this to mimes.php:
'm4a' => 'audio/x-m4a',but it didn’t help, and I cleared the cache.
Here’s the original code:
{exp:feed_enclosures type="rss" parse_list="y"}<a href="http://{episode_file}rel=enclosure">{episode_file}</a>{/exp:feed_enclosures}Anybody have any suggestions?