当前位置: 首页 > news >正文

OBS 日期时间.毫秒时间脚本 date-and-time.lua

文章目录

    • OBS 日期时间.毫秒时间脚本:
    • 效果

OBS 日期时间.毫秒时间脚本:

obs           = obslua
source_name   = ""last_text     = ""
format_string = ""
activated     = false-- 此函数用于获取精确的毫秒级时间戳,适用于 Linux 系统
local function getMillisTimestamp()local sec, usec = os.time(), os.clock()local millis = math.floor((sec + usec) * 1000)return millis
end-- Function to set the time text
function set_time_text()-- local text = os.date(format_string)-- local date_table = os.date("*t")-- local ms = string.format("%.3f", os.clock()) -- local hour, minute, second = date_table.hour, date_table.min, date_table.sec-- local year, month, day = date_table.year, date_table.month, date_table.day   -- local text = string.format("%s", ms)local date_table = os.date("*t")local hour, minute, second = date_table.hour, date_table.min, date_table.seclocal year, month, day = date_table.year, date_table.month, date_table.day-- 获取毫秒级时间戳local millisTimestamp = getMillisTimestamp()-- 提取毫秒部分local ms = millisTimestamp % 1000-- 格式化时间字符串local text = string.format("%04d-%02d-%02d %02d:%02d:%02d.%03d", year, month, day, hour, minute, second, ms)if text ~= last_text thenlocal source = obs.obs_get_source_by_name(source_name)if source ~= nil thenlocal settings = obs.obs_data_create()obs.obs_data_set_string(settings, "text", text)obs.obs_source_update(source, settings)obs.obs_data_release(settings)obs.obs_source_release(source)endendlast_text = text
endfunction timer_callback()set_time_text()
endfunction activate(activating)if activated == activating thenreturnendactivated = activatingif activating thenset_time_text()obs.timer_add(timer_callback, 1)elseobs.timer_remove(timer_callback)end
end-- Called when a source is activated/deactivated
function activate_signal(cd, activating)local source = obs.calldata_source(cd, "source")if source ~= nil thenlocal name = obs.obs_source_get_name(source)if (name == source_name) thenactivate(activating)endend
endfunction source_activated(cd)activate_signal(cd, true)
endfunction source_deactivated(cd)activate_signal(cd, false)
endfunction reset(pressed)if not pressed thenreturnendactivate(false)local source = obs.obs_get_source_by_name(source_name)if source ~= nil thenlocal active = obs.obs_source_active(source)obs.obs_source_release(source)activate(active)end
end------------------------------------------------------------ A function named script_properties defines the properties that the user
-- can change for the entire script module itself
function script_properties()local props = obs.obs_properties_create()local p = obs.obs_properties_add_list(props, "source", "Text Source", obs.OBS_COMBO_TYPE_EDITABLE, obs.OBS_COMBO_FORMAT_STRING)local sources = obs.obs_enum_sources()if sources ~= nil thenfor _, source in ipairs(sources) dosource_id = obs.obs_source_get_id(source)if source_id == "text_gdiplus" or source_id == "text_ft2_source" thenlocal name = obs.obs_source_get_name(source)obs.obs_property_list_add_string(p, name, name)endendendobs.source_list_release(sources)obs.obs_properties_add_text(props, "format_string", "Format String", obs.OBS_TEXT_DEFAULT)return props
end-- A function named script_description returns the description shown to
-- the user
function script_description()return "Sets a text source to act as a date/time text when the source is active.\n\nMade by Ragowit"
end-- A function named script_update will be called when settings are changed
function script_update(settings)activate(false)source_name = obs.obs_data_get_string(settings, "source")format_string = obs.obs_data_get_string(settings, "format_string")reset(true)
end-- A function named script_defaults will be called to set the default settings
function script_defaults(settings)obs.obs_data_set_default_string(settings, "format_string", "%Y-%m-%d %X")
end-- a function named script_load will be called on startup
function script_load(settings)-- Connect activation/deactivation signal callbacks---- NOTE: These particular script callbacks do not necessarily have to-- be disconnected, as callbacks will automatically destroy themselves-- if the script is unloaded.  So there's no real need to manually-- disconnect callbacks that are intended to last until the script is-- unloaded.local sh = obs.obs_get_signal_handler()obs.signal_handler_connect(sh, "source_activate", source_activated)obs.signal_handler_connect(sh, "source_deactivate", source_deactivated)
end

效果

在这里插入图片描述

相关文章:

  • 《软件设计师》复习笔记(14.1)——面向对象基本概念、分析设计测试
  • 欣佰特携数十款机器人相关前沿产品,亮相第二届人形机器人和具身智能行业盛会
  • 网络编程 - 2
  • 阿里AI模型获FDA“突破性”认证,胰腺癌早筛实现关键突破|近屿智能邀你入局AIGC大模型
  • WordPress自定义页面与文章:打造独特网站风格的进阶指南
  • java 设计模式之模板方法模式
  • 「数据可视化 D3系列」入门第十一章:力导向图深度解析与实现
  • 【IDEA2020】 解决开发时遇到的一些问题
  • Echart 地图放大缩小
  • 2025年MathorCup数学应用挑战赛【B题成品论文第二版】(免费分享)
  • 互联网大厂Java面试:微服务与分布式系统挑战
  • 人脸扫描黑科技:多相机人脸扫描设备,打造你的专属数字分身
  • C++ STL编程-vector概念、对象创建
  • 在 PDF.js 的 viewer.html 基础上进行改造,实现同一个 PDF 文件在网页中上下拆分显示,并且两部分的标注数据能够实时同步
  • 五款小众工作软件
  • PDF.js 生态中如何处理“添加注释\添加批注”以及 annotations.contents 属性
  • 2025TGCTF Web WP复现
  • “星睿O6” AI PC开发套件评测 - 部署PVE搭建All in One NAS服务器
  • Web三漏洞学习(其三:rce漏洞)
  • MQTTClient.c的线程模型与异步事件驱动
  • 甘肃省政府原副省长赵金云严重职务违法被开除公职
  • 朱守科已任西藏自治区政府党组成员、自治区公安厅党委书记
  • 复旦大学校友夫妇一次性捐赠10亿元,成立学敏高等研究院
  • “低头捡星光”,艺术创作直面三江源生态保护
  • 涡虫首上太空,神舟二十号任务将开展3项生命科学实验
  • 【社论】上海车展40年,见证了什么