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