پودمان:Audio
از ولایت حضرت علی و حضرت زهرا
p = {}
p.main = function(frame)
local audioUrl = "https://www.velayateali.com/Resource/audio/" .. frame.args[1]
local out = {}
local audioElement = '<audio controls="true"><source src="' .. audioUrl .. '" type="audio/mpeg"></audio>'
table.insert(out, tostring(audioElement))
return tostring(audioElement)
end
return p