top of page
- API -

allCount,typeCount = reaper.AZ_GetMediaTypeCount(projID,mediaType)

- API Detail -

▼入力値

  • proj (integer):プロジェクトID

  • mediaType(char):タイプ名("WAV","MP4","MP3"etc)

  • ※medeiaTypeを無記名にすると全てとなります。

▼出力値

  • allCount(integer):指定プロジェクト全てのメディア数

  • typeCount(integer):指定形式のメディア数

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())


allCount,typeCount = reaper.AZ_GetMediaTypeCount(0,"WAV")

Msg(allCount)

Msg(typeCount)

MEDIA

AZ_GetMediaTypeCount

対応バージョン:

1.0.3

以降

全てのメディアの数(形式指定を含む)

bottom of page