menu
 
버전
2024.1.4.8780

2024.1.4.8780

2023.1.12.8706

2022.1.18.8567

2021.1.14.8108

2019.2.15.7667

2019.1.11.7296

2018.1.11.6987

2017.2.10.6745

2017.1.9.6501

2016.2.6.6153

2015.1.9.5624


menu_open
Wwise SDK 2024.1.4
ak.wwise.cli.generateSoundbank 옵션 스키마

스키마

{
"properties": {
"verbose": {
"type": "boolean",
"description": "Enables extra console text output.",
"synopsis": [
"--verbose"
]
},
"quiet": {
"type": "boolean",
"description": "Disables all non-error console text output.",
"synopsis": [
"--quiet"
]
},
"license": {
"type": "string",
"description": "사용할 라이선스를 설정합니다. The license is not saved in the project.",
"synopsis": [
"--license LICENSE"
]
},
"save": {
"type": "boolean",
"description": "SoundBank를 생성하기 전에 프로젝트를 저장합니다. If a tab-delimited import file was provided, the imported content is saved as well. Saving also migrates the project first, if required. This option does not save the project for other instances of Wwise that are currently running.",
"synopsis": [
"--save"
]
},
"platform": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "생성되는 SoundBank를 위한 플랫폼을 지정합니다. This option must be followed by the platform identifiers.",
"synopsis": [
"--platform PLATFORM",
"--platform PLATFORM1 PLATFORM2 ...",
"--platform PLATFORM1 --platform PLATFORM2 ..."
]
},
"abort-on-load-issues": {
"type": "boolean",
"description": "프로젝트 로드 이슈가 감지되면 작업을 중단합니다. 로그된 모든 프로젝트 문제가 화면에 출력됩니다.",
"synopsis": [
"--abort-on-load-issues"
]
},
"bank": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "생성할 SoundBank를 지정합니다. 이 작업 후 반드시 SoundBank 이름을 생성해줘야 합니다. 복수의 SoundBank를 지정할 수 있습니다. 아무 SoundBank도 지정되지 않으면 모든 SoundBank가 생성됩니다. Alternatively, a text file containing a list of SoundBank names can be specified, by specifying the full path to the text file, including the extension '.txt'.",
"synopsis": [
"--bank SOUNDBANK",
"--bank SOUNDBANK1 SOUNDBANK2 ...",
"--bank FILE"
]
},
"cache": {
"type": "string",
"description": "Overrides the project's cache directory path and instead uses the (relative) path specified in the command.",
"synopsis": [
"--cache PATH"
]
},
"clear-audio-file-cache": {
"type": "boolean",
"description": "Deletes the content of the Wwise audio file cache directory prior to converting source files and generating SoundBanks, which ensures that all source files are reconverted. Note that the whole cache is cleared, for all platforms, regardless of the --platform option.",
"synopsis": [
"--clear-audio-file-cache"
]
},
"continue-on-error": {
"type": "boolean",
"description": "Use this option if you want to continue even if an error occurred.",
"synopsis": [
"--continue-on-error"
]
},
"custom-global-closing-cmd": {
"type": "string",
"description": "Wwise에 정의된 전역적 종료 단계를 오버라이드합니다. 이 옵션은 반드시 새로운 명령줄(공백이 있을 경우 인용 부호 사용)이 뒤따라야 합니다. An empty string (\"\") specified for the command-line means no global closing step is executed.",
"synopsis": [
"--custom-global-closing-cmd CMD"
]
},
"custom-global-opening-cmd": {
"type": "string",
"description": "Wwise에 정의된 전역적 시작 단계를 오버라이드합니다. 이 옵션은 반드시 새로운 명령줄(공백이 있을 경우 인용 부호 사용)이 뒤따라야 합니다. An empty string (\"\") specified for the command-line means no global opening step is executed.",
"synopsis": [
"--custom-global-opening-cmd CMD"
]
},
"custom-post-gen-cmd": {
"oneOf": [
{
"type": "array",
"description": "Association between a platform and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
},
{
"type": "array",
"description": "Array of associations between a platform name and a value.",
"items": {
"type": "array",
"description": "Association between a platform name and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
}
}
],
"description": "Wwise의 해당 플랫폼에 대해 정의된 사용자 지정 생성 직후 단계(post-generation)를 오버라이드합니다. 이 옵션 뒤에는 플랫폼 식별자(위 상세 목록 참고)가 와야 하며, 그 후 새로운 명령줄(공백이 있을 경우 인용 부호 사용)이 뒤따라야 합니다. 다른 플랫폼의 사용자 지정 생성 직후 단계 명령을 오버라이드하려면 --custom-post-gen-cmd 옵션을 반복하고 원하는 다른 플랫폼의 식별자와 해당 명령줄을 새로 입력합니다. An empty string (\"\") specified for the command-line means no post-generation step is executed.",
"synopsis": [
"--custom-post-gen-cmd PLATFORM CMD",
"--custom-post-gen-cmd PLATFORM1 CMD1 --custom-post-gen-cmd PLATFORM2 CMD2 ..."
]
},
"custom-pre-gen-cmd": {
"oneOf": [
{
"type": "array",
"description": "Association between a platform and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
},
{
"type": "array",
"description": "Array of associations between a platform name and a value.",
"items": {
"type": "array",
"description": "Association between a platform name and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
}
}
],
"description": "Wwise의 해당 플랫폼에 대해 정의된 사용자 지정 생성 직전 단계(pre-generation)를 오버라이드합니다. 이 옵션 뒤에는 플랫폼 식별자(위 상세 목록 참고)가 와야 하며, 그 후 새로운 명령줄(공백이 있을 경우 인용 부호 사용)이 뒤따라야 합니다. 다른 플랫폼의 사용자 지정 생성 직전 단계 명령을 오버라이드하려면 --custom-pre-gen-cmd 옵션을 반복하고 원하는 다른 플랫폼의 식별자와 해당 명령줄을 새로 입력합니다. An empty string (\"\") specified for the command-line means no pre-generation step is executed.",
"synopsis": [
"--custom-pre-gen-cmd PLATFORM CMD",
"--custom-pre-gen-cmd PLATFORM1 CMD1 --custom-pre-gen-cmd PLATFORM2 CMD2 ..."
]
},
"header-file": {
"type": "boolean",
"description": "Generates the header file Wwise_IDs.h, even if this option is not specified in the project settings.",
"synopsis": [
"--header-file"
]
},
"header-file-path": {
"type": "string",
"description": "(DEPRECATED) Use root-output-path instead. 프로젝트 설정에 지정된 헤더 파일 경로를 오버라이드합니다. 이 옵션은 헤더 파일(Wwise_IDs.h)이 작성될 곳을 나타내는 경로(절대 또는 상대)가 반드시 뒤따라야 합니다. 헤더 파일의 생성이 필요할 경우에만 유효합니다.",
"synopsis": [
"--header-file-path"
]
},
"root-output-path": {
"type": "string",
"description": "Overrides the root output path specified in the SoundBank settings. This option must be followed by the path (absolute or relative) in which the project level, platform agnostic files will be written. Examples of such files are Wwise_IDs.h and ProjectInfo.(xml|json).",
"synopsis": [
"--root-output-path"
]
},
"readable-soundbanks": {
"type": "boolean",
"description": "Generates readable SoundBanks (.rbnk), even if this option is not specified in the project settings.",
"synopsis": [
"--readable-soundbanks"
]
},
"import-definition-file": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "SoundBank 정의 파일을 가져옵니다. 이 옵션은 반드시 불러올 뱅크 정의 파일의 전체 경로가 뒤따라야 합니다. 복수의 파일을 지정할 수 있습니다. If the option --save is not specified, the changes made to the project as a result of the imported definition file do not persist.",
"synopsis": [
"--import-definition-file FILE",
"--import-definition-file FILE1 FILE2 ...",
"--import-definition-file FILE1 --import-definition-file FILE2 ..."
]
},
"language": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "생성되는 SoundBank를 위한 언어를 지정합니다. 이 옵션 후에는 반드시 프로젝트에서 정의한 언어 식별자가 뒤따라야 합니다. Each specified language must be prefixed with this option.",
"synopsis": [
"--language LANGUAGE",
"--language LANGUAGE1 --language LANGUAGE2 ..."
]
},
"skip-languages": {
"type": "boolean",
"description": "Will not generate any localized SoundBank in the project.",
"synopsis": [
"--skip-languages"
]
},
"use-stable-guid": {
"type": "boolean",
"description": "Give the SoundBank a stable GUID across multiple builds if you don't want to save the project.",
"synopsis": [
"--use-stable-guid"
]
},
"no-decode": {
"type": "boolean",
"description": "Avoids generating DECODED files in the .cache directory, which saves CPU and disk space for your Wwise project. 또한 SoundBank 생성 시간을 줄이는 역할도 합니다. 주의: DECODED 파일을 생성하지 않을 경우, Wwise Authoring에서 이 사운드를 재생할 때 재생이 업데이트되지 않거나 아예 아무런 재생이 일어나지 않을 수 있습니다. 이 옵션 실행 후 파일 캐시를 삭제할 것을 권합니다.",
"synopsis": [
"--no-decode"
]
},
"no-source-control": {
"type": "boolean",
"description": "Skip the Source Control operations, even it is was enabled in the SoundBank Project Settings.",
"synopsis": [
"--no-source-control"
]
},
"use-user-overrides": {
"type": "boolean",
"description": "Use user overrides for Project Settings and SoundBank Settings.",
"synopsis": [
"--use-user-overrides"
]
},
"soundbank-path": {
"oneOf": [
{
"type": "array",
"description": "Association between a platform and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
},
{
"type": "array",
"description": "Array of associations between a platform name and a value.",
"items": {
"type": "array",
"description": "Association between a platform name and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
}
}
],
"description": "이 플랫폼에 대해 지정된 SoundBank 경로를 오버라이드합니다. 이 옵션 뒤에는 플랫폼 식별자(위 상세 목록 참고)와 새로운 경로(절대 또는 상대, 공백이 있을 경우 인용 부호 사용)가 뒤따라야 합니다. To override the path of another platform, repeat the option --soundbank-path followed by the other platform's specifier and its new path.",
"synopsis": [
"--soundbank-path PLATFORM PATH",
"--soundbank-path PLATFORM1 PATH1 --soundbank-path PLATFORM2 PATH2 ..."
]
},
"audio-source-from-original": {
"type": "boolean",
"description": "탭으로 구분된 가져오기를 할 때, 불러오는 파일과 동일한 이름의 오디오 음원 파일이 이미 프로젝트 있는 경우가 있습니다. By adding this option, the operation uses those instead of replacing them with those described by the tab-delimited file.",
"synopsis": [
"--audio-source-from-original"
]
},
"import-language": {
"type": "string",
"description": "탭으로 구분된 불러오기 작업을 통해 보이스를 불러올 수 있습니다. 이 옵션은 불러오는 보이스의 언어를 정의하는 데 사용합니다. 이 옵션 후 반드시 --language 옵션으로 언어 식별자 중 하나를 정의해줘야 합니다. Note that only audio files are added for this operation; any attempt to concurrently perform other operations, such as volume adjustments, is ignored.",
"synopsis": [
"--import-language LANGUAGE"
]
},
"tab-delimited-operation": {
"type": "string",
"enum": [
"createNew",
"useExisting",
"replaceExisting"
],
"description": "생성된 오브젝트 각각에 대해 오브젝트를 불러올 때의 생성 방식을 결정합니다. \"createNew\": 새로운 오브젝트를 생성합니다. 여기에 원하는 이름을 별도로 부여하세요. 그렇지 않으면 새로운 고유 이름을 사용합니다. \"useExisting\": 기존 오브젝트가 있으면 해당 지정 속성을 업데이트해 사용합니다. 그렇지 않으면 새로운 새로운 오브젝트를 생성합니다. 이는 기본값입니다. \"replaceExisting\": creates a new object; if an existing object has the same name then the existing object is destroyed.",
"synopsis": [
"--tab-delimited-operation createNew",
"--tab-delimited-operation useExisting",
"--tab-delimited-operation replaceExisting"
]
},
"tab-delimited-import-file": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "불러오게 될 탭으로 구분된 파일. Multiple files to import can be specified after this option.",
"synopsis": [
"--tab-delimited-import-file FILE",
"--tab-delimited-import-file FILE1 FILE2 ...",
"--tab-delimited-import-file FILE1 --tab-delimited-import-file FILE2 ..."
]
},
"source-file": {
"oneOf": [
{
"type": "string",
"description": "A single value provided for the option."
},
{
"type": "array",
"description": "Several values provided for the option.",
"items": {
"type": "string",
"description": "A value for the option."
}
}
],
"description": "Specifies the WSOURCES files to use for external source conversion. Those WSOURCES files are used for all platforms.",
"synopsis": [
"--source-file FILE",
"--source-file FILE1 FILE2 ..."
]
},
"source-by-platform": {
"oneOf": [
{
"type": "array",
"description": "Association between a platform and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
},
{
"type": "array",
"description": "Array of associations between a platform name and a value.",
"items": {
"type": "array",
"description": "Association between a platform name and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
}
}
],
"description": "Specifies the WSOURCES files to use by platform for external source conversion. 특정 플랫폼이 지정된 경우, 이 플랫폼의 프로젝트 설정에서 WSOURCES 파일을 오버라이드합니다. 특별히 지정된 내용이 없는 플랫폼의 경우, 프로젝트 설정을 사용합니다. Specify the platform first, then the WSOURCES files to use for this platform. Repeat the operation for each platform and WSOURCES file.",
"synopsis": [
"--source-by-platform PLATFORM FILE",
"--source-by-platform PLATFORM1 FILE1 --source-by-platform PLATFORM2 FILE2 ..."
]
},
"output": {
"oneOf": [
{
"oneOf": [
{
"type": "array",
"description": "Association between a platform and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
},
{
"type": "array",
"description": "Array of associations between a platform name and a value.",
"items": {
"type": "array",
"description": "Association between a platform name and a value.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"description": "Platform name for index 0, value for index 1."
}
}
}
]
},
{
"type": "string"
}
],
"description": "Allows you to follow this option with a platform and an output path to override the output path of this platform for external source conversion. 이 옵션을 다른 플랫폼에 대해서도 반복합니다. If only a directory is specified, sources for all platforms are generated in that directory.",
"synopsis": [
"--output PLATFORM PATH",
"--output PLATFORM1 PATH1 --output PLATFORM2 PATH2 ...",
"--output PATH"
]
}
}
}

이 페이지가 도움이 되었나요?

지원이 필요하신가요?

질문이 있으신가요? 문제를 겪고 계신가요? 더 많은 정보가 필요하신가요? 저희에게 문의해주시면 도와드리겠습니다!

지원 페이지를 방문해 주세요

작업하는 프로젝트에 대해 알려주세요. 언제든지 도와드릴 준비가 되어 있습니다.

프로젝트를 등록하세요. 아무런 조건이나 의무 사항 없이 빠른 시작을 도와드리겠습니다.

Wwise를 시작해 보세요