- Script Code -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
retval,pathList = reaper.AZ_GetUserInputList("GetPath",3,"basePath:,sujectPath:,trackList:","D://,D://,3")
if retval then
retval,trackList = reaper.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
- Warm Up -
主言語の音量調整対応が完了している
調整したい指定言語ファイルがある
主言語と調整したい言語のファイルは同名になっている
- Script Detail -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
・Silverを利用可能にする
retval,pathList = reaper.AZ_GetUserInputList("GetPath",3,"basePath:,sujectPath:,trackList:","D://,D://,3")
・ベース言語パス、指定言語パス、トラックを分けたい数を入力できるように設定
if retval then
・OKを押した場合は以下を実行
retval,trackList = reaper.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