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,_,_,_,allCount,_ = AZ_GetSelectedTrackMediaTypeCount(0,1,"",0,0)
Msg(allCount)
- SIMPLE SCRIPT -
retval,projID,selectTrackID,mediaType,allCountOut,typeCountOut = AZ_GetSelectedTrackMediaTypeCount(projID,selectTrackID)mediaType,allCountOut,typeCountOut)
- API -
対応バージョン:
1.0.1
以降
MEDIA
AZ_GetSelectedTrackMediaTypeCount
指定選択トラックの全てのメディアの数(指定形式の数含む)
Python
- API Detail -
▼入力値
proj (integer):プロジェクトID
selectTrackID(integer) : 選択トラックID
mediaType(char):タイプ名("WAV","MP4","MP3"etc)
※medeiaTypeを無記名にすると全てとなります。
allCountOut(integer):「0」を入力しておく※out用の箱
typeCountOut(integer):「0」を入力しておく※out用の箱
▼出力値
retval(bool):APIの実行成功の有無
proj (int):プロジェクトID
selectTrackID(int) : 選択トラックID
mediaType(Str):タイプ名("WAV","MP4","MP3"etc)
allCountOut(integer):指定プロジェクト全てのメディア数
typeCountOut(integer):指定形式のメディア数
bottom of page