1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 10:46:57 +00:00

Merge ba6d62e6e9220ad8a561f61f0a8be71a8dd97dae into c3695765ad8b3e46b4dcc89496a2daa331215a81

This commit is contained in:
well-noted 2025-03-10 19:01:48 +09:00 committed by GitHub
commit f531f86bf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,40 +1,48 @@
/*\
title: $:/core/modules/parsers/videoparser.js
type: application/javascript
module-type: parser
The video parser parses a video tiddler into an embeddable HTML element
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var VideoParser = function(type,text,options) {
var element = {
type: "element",
tag: "video",
attributes: {
controls: {type: "string", value: "controls"},
style: {type: "string", value: "width: 100%; object-fit: contain"}
}
},
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];
this.source = text;
this.type = type;
};
exports["video/ogg"] = VideoParser;
exports["video/webm"] = VideoParser;
exports["video/mp4"] = VideoParser;
exports["video/quicktime"] = VideoParser;
})();
/*\
title: $:/core/modules/parsers/videoparser.js
type: application/javascript
module-type: parser
The video parser parses a video tiddler into an embeddable HTML element
\*/
(function () {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var VideoParser = function (type, text, options) {
var element = {
type: "element",
tag: "$video", // Changed to $video to enable widget interception
attributes: {
controls: { type: "string", value: "controls" },
style: { type: "string", value: "width: 100%; object-fit: contain" }
}
};
// Pass through source information
if (options._canonical_uri) {
element.attributes.src = { type: "string", value: options._canonical_uri };
element.attributes.type = { type: "string", value: type };
} else if (text) {
element.attributes.src = { type: "string", value: "data:" + type + ";base64," + text };
element.attributes.type = { type: "string", value: type };
}
// Pass through tiddler title if available
if (options.title) {
element.attributes.tiddler = { type: "string", value: options.title };
}
this.tree = [element];
this.type = type;
};
exports["video/ogg"] = VideoParser;
exports["video/webm"] = VideoParser;
exports["video/mp4"] = VideoParser;
exports["video/quicktime"] = VideoParser;
})();