top of page
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
allCount,typeCount = reaper.AZ_GetSelectedMediaTypeCount(0,"WAV")
Msg(allCount)
Msg(typeCount)
- SIMPLE SCRIPT -
allCount,typeCount = reaper.AZ_GetSelectedMediaTypeCount(projID,mediaType)
- API -
対応バージョン:
以降
MEDIA
reaper.AZ_GetSelectedMediaTypeCount
選択中の全てのメディアの数(形式指定を含む)
Python
- API Detail -
▼入力値
proj (integer):プロジェクトID
mediaType(char):タイプ名("WAV","MP4","MP3"etc)
※medeiaTypeを無記名にすると全てとなります。
▼出力値
allCount(integer):指定プロジェクト全てのメディア数
typeCount(integer):指定形式のメディア数
bottom of page