TALKTRON
AZSTOKE_TALKTRON_1
「TALKTRON」-Part1- 多言語音量自動調整機能1
RANK
os = reaper.GetOS()
if "Win" == string.match(os,"(Win)") then
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
else
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dylib"
end
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
retval,pathList = AZ_SILVER.AZ_GetUserInputList("GetPath",3,"basePath:,sujectPath:,trackList:","D://,D://,3")
if retval then
retval,trackList = AZ_SILVER.AZ_GetUserInputList("TrackList",tonumber(pathList[3]),"track1,track2,track3,track4,track5","PL0000,PL0001,PL0002,PL0003,PL0004,PL0005")
if retval then
_, unmatchedPathList = reaper.AZ_TALKTRON_InsertMediaItems(pathList[2],pathList[1], 0, 1, 0, true, true, 2, trackList)
for i, value in pairs(unmatchedPathList) do
Msg("主ボイスに存在しないファイル:"..value)
end
end
end
os = reaper.GetOS()
if "Win" == string.match(os,"(Win)") then
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
else
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dylib"
end
require("reaper_AZSTOKE_SILVER")
・Silverを利用可能にする
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
・デバック専用の関数を設定
retval,pathList = AZ_SILVER.AZ_GetUserInputList("GetPath",3,"basePath:,sujectPath:,trackList:","D://,D://,3")
・ベース言語パス、指定言語パス、トラックを分けたい数を入力できるように設定
if retval then
・OKを押した場合は以下を実行
retval,trackList = AZ_SILVER.AZ_GetUserInputList("TrackList",tonumber(pathList[3]),"track1,track2,track3,track4,track5","PL0000,PL0001,PL0002,PL0003,PL0004,PL0005")
・トラックを分けたい数分リストを入力
if retval then
_, unmatchedPathList = reaper.AZ_TALKTRON_InsertMediaItems(pathList[2],pathList[1], 0, 1, 0, true, true, 2, trackList)
・TALKTRONを実行 全自動で動きます。
for i, value in pairs(unmatchedPathList) do
Msg("主ボイスに存在しないファイル:"..value)
・主ボイスに存在しないファイルをコンソールにリストアップ
end
end
end
To use the API, you need to sign up for a plan.
Download the dedicated API
need to do it.
*SILVER is scheduled to be released in May.
主言語の音量調整対応が完了している
調整したい指定言語ファイルがある
主言語と調整したい言語のファイルは同名になっている
- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -
AZ_SILVER.AZ_GetUserInputList
reaper.AZ_TALKTRON_InsertMediaItems