2014-10-18 13:50:07 +00:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/parsers/audioparser.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: parser
|
|
|
|
|
|
|
|
The audio parser parses an audio tiddler into an embeddable HTML element
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var AudioParser = function(type,text,options) {
|
|
|
|
var element = {
|
|
|
|
type: "element",
|
|
|
|
tag: "audio",
|
|
|
|
attributes: {
|
|
|
|
controls: {type: "string", value: "controls"}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
src;
|
|
|
|
if(options._canonical_uri) {
|
|
|
|
element.attributes.src = {type: "string", value: options._canonical_uri};
|
|
|
|
} else if(text) {
|
|
|
|
element.attributes.src = {type: "string", value: "data:" + type + ";base64," + text};
|
|
|
|
}
|
|
|
|
this.tree = [element];
|
|
|
|
};
|
|
|
|
|
2014-10-19 20:09:17 +00:00
|
|
|
exports["audio/ogg"] = AudioParser;
|
2014-10-18 13:50:07 +00:00
|
|
|
exports["audio/mpeg"] = AudioParser;
|
|
|
|
exports["audio/mp3"] = AudioParser;
|
|
|
|
exports["audio/mp4"] = AudioParser;
|
|
|
|
|
|
|
|
})();
|
|
|
|
|