當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing Sound.outputDevice()用法及代碼示例


Processing, 類Sound中的outputDevice()用法介紹。

用法

  • .outputDevice(deviceId)

參數

  • deviceId (int) 從list()獲取的設備id

返回

  • void

說明

選擇聲音庫的音頻輸出應發送到的設備(聲卡)。輸出設備應支持立體聲輸出(2 聲道)。

例子

import processing.sound.*;

void setup() {
  // Create a Sound object and select the second sound device (device ids start at 0) for output
  Sound s = new Sound(this);
  s.outputDevice(1);
}

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 Sound.outputDevice()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。