import sys
sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")
from AZSTOKE_BRONZE_python import *
def Msg(parm):
RPR_ShowConsoleMsg(str(parm) + "\n")
_,_,inType,inLen,outType,outLen = AZ_GetMediaFade(0,0,0,0,0,0)
Msg(inType)
Msg(inLen)
Msg(outType)
Msg(outLen)
- SCRIPT -
_,_,inType,inLen,outType,outLen = AZ_GetMediaFade(projID, itemID, inTypeOut,inLenOut,outTypeOut,outLenOut)
- API -
ID
MEDIA
AZ_GetMediaFad
対応バージョン:
1.0.1
以降
Gets the fade type and length of the specified media.
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
itemID(integer) : Item ID
inTypeOut(integer): Any number (0 is OK)
inLenOut(number): Any number (0 is OK)
outTypeOut(integer): Any number (0 is OK)
outLenOut(number): Any number (0 is OK)
▼Output value
retval(boolean): Success or failure of API execution
projID (ReaProject): Project ID
itemID(integer): Item ID
inTypeOut(integer): Start fade type (0 to 6)
inLenOut(float): Length of the start fade (seconds)
outTypeOut(integer): End fade type (0 to 6)
outLenOut(float): End fade length (seconds)