Skip to content

Instantly share code, notes, and snippets.

@cjcolvar
Created May 24, 2013 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjcolvar/5645190 to your computer and use it in GitHub Desktop.
Save cjcolvar/5645190 to your computer and use it in GitHub Desktop.
Make audio be video in flash mediaelement.js when not mp3
+ //Force audio that isn't mp3s to video because the flash.media.Sound only handles mp3s
+ if (!_isVideo && _mediaUrl.indexOf("mp3") == -1)
+ _isVideo = true;
+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment