top of page
- API -

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("File not found in main voice:"..value)

end

end

end

- API Detail-

  • Volume adjustment for the primary language is complete

  • There is a specific language file that you want to adjust.

  • The main language file and the language you want to adjust have the same name.


- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


・Make Silver available


retval,pathList = reaper.AZ_GetUserInputList("GetPath",3,"basePath:,sujectPath:,trackList:","D://,D://,3")


- You can enter the base language path, the specified language path, and the number of tracks you want to divide.


if retval then


・If you click OK, execute the following


retval,trackList = reaper.AZ_GetUserInputList("TrackList",tonumber(pathList[3]),"track1,track2,track3,track4,track5","PL0000,PL0001,PL0002,PL0003,PL0004,PL0005")


-Enter the number of minutes you want to split the track

if retval then

unmatchedPathList = reaper.AZ_TALKTRON_InsertMediaItems(pathList[2],pathList[1], 0, 1, 0, true, true, 2, trackList)


・Run TALKTRON and it will operate fully automatically.


for i, value in pairs(unmatchedPathList) do

Msg("File not found in main voice:"..value)

- List files that are not in the main voice in the console


end

end

end

- SCRIPT -

reaper.AZ_GetUserInputList

reaper.AZ_TALKTRON_InsertMediaItems

TALKTRON

AZSTOKE_TALKTRON_1

"TALKTRON" -Part1- Multilingual volume automatic adjustment function 1

01_BRONZE_ss_edited.png
01_SILVER_edited_edited.png
03_GOLD_edited_edited.png
bottom of page