mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Also move Lua scripts to share subfolder
This commit is contained in:
parent
bf649cd68a
commit
180843f9bd
129 changed files with 2 additions and 2 deletions
21
share/scripts/s_timecode.lua
Normal file
21
share/scripts/s_timecode.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
ardour { ["type"] = "Snippet", name = "Timecode" }
|
||||
|
||||
function factory () return function ()
|
||||
|
||||
local samplerate = 48000 -- samples per second
|
||||
|
||||
-- generic convert, explicitly provide Timecode (fps) and sample-rate
|
||||
-- http://manual.ardour.org/lua-scripting/class_reference/#Timecode.TimecodeFormat
|
||||
hh, mm, ss, ff = ARDOUR.LuaAPI.sample_to_timecode (Timecode.TimecodeFormat.TC25, samplerate, 1920)
|
||||
print (ARDOUR.LuaAPI.sample_to_timecode (Timecode.TimecodeFormat.TC25, samplerate, 1920))
|
||||
|
||||
-- generic convert, explicitly provide Timecode (fps) and sample-rate
|
||||
local s = ARDOUR.LuaAPI.timecode_to_sample (Timecode.TimecodeFormat.TC25, samplerate, 10, 11, 12, 13)
|
||||
assert (25 * (10 * 3600 + 11 * 60 + 12 ) + 13 == s * 25 / samplerate)
|
||||
|
||||
-- use session-settings: sample-rate and timecode format is taken from the
|
||||
-- current session. Note that the sample-rate includes pull-up/down
|
||||
print (Session:sample_to_timecode_lua (12345))
|
||||
print (Session:timecode_to_sample_lua (10, 11, 12, 13))
|
||||
|
||||
end end
|
||||
Loading…
Add table
Add a link
Reference in a new issue