Esempio n. 1
0
 public Audio() {
   this(AudioElement.create());
 }
Esempio n. 2
0
 /**
  * Determine if it's possible to play back the given audio type
  *
  * @param type The media type to test
  * @return [ "" | "maybe" | "probably" ]
  */
 public static String canPlayType(String type) {
   return AudioElement.create().canPlayType(type);
 }