How to to support audio on webnodes sites?
I found IsVideo() and GetVideoPlayer() methods, but what would be the easiest way to include audio in sites. What I have in mind could be along the lines:
Basic setup:
- source files mostly 128k mp3
- range support in IIS handler would be cool (for bigger files, if it is not there already)
Player:
- basically audio tag is enough,
- targeting native support in Chrome and IE, and if needed flash plugin supported playback on Firefox (of course automatic conversion to support ogg for ff would be even better)
- interesting feature would be the ability to stream somehow from single page (with iframe?), so that you can play continuously ("podcast") sound and change soudfile from ajax loaded content pages.
Soundcloud.com integration would be cool alternative, too, but maybe a bit of work to integrate if audio is not the main theme of the site.
I also wonder what would be the easiest way to handle audio file language version management and selection on demand. Maybe just language specific filename part - and then substitute the file on the page template with the correct language spesific version if that can be found from file library ?
Or would it be feasible just to support audio via video, and try to hide the image part in video player ?