top of page
import sys
sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")
from AZSTOKE_BRONZE_python import *
def Msg(parm):
RPR_ShowConsoleMsg(str(parm) + "\n")
retval = AZ_SetMediaFade(0,3,2,0.2,3,0.5)
- SCRIPT -
retval = AZ_SetMediaFade(projID, itemID, inTypeOut,inLenOut,outTypeOut,outLenOut)
- API -
ID
MEDIA
AZ_SetMediaFade
対応バージョン:
1.0.1
以降
Set the fade type and length for the specified media
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
itemID(integer): Item ID
inType(integer): Type of start fade (0 to 6)
inLen(number): Length of the start fade (in seconds)
outType(integer): End fade type (0 to 6)
outLen(number): Length of the end fade (in seconds)
▼Output value
retval(boolean): Success or failure of API execution
bottom of page