Add Tizen.AIAvatar project (#6014)
[platform/core/csapi/tizenfx.git] / src / Tizen.AIAvatar / src / internal / Avatar / AIAvatar.cs
1 /*
2  * Copyright(c) 2023 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 using Tizen.Multimedia;
19
20 namespace Tizen.AIAvatar
21 {
22     internal static class AIAvatar
23     {
24         internal const string LogTag = "Tizen.AIAvatar";
25         internal static readonly string ApplicationResourcePath = "/usr/apps/org.tizen.default-avatar-resource/shared/res/";
26         internal static readonly string EmojiAvatarResourcePath = "/models/EmojiAvatar/";
27         internal static readonly string DefaultModelResourcePath = "/models/DefaultAvatar/";
28         internal static readonly string DefaultMotionResourcePath = "/animation/motion/";
29
30         internal static readonly string VisemeInfo = $"{ApplicationResourcePath}/viseme/emoji_viseme_info.json";
31         internal static readonly string DefaultModel = "DefaultAvatar.gltf";
32
33         internal static readonly string AREmojiDefaultAvatarPath = $"{ApplicationResourcePath}{DefaultModelResourcePath}{DefaultModel}";
34
35         internal static readonly string DefaultLowModelResourcePath = "/models/DefaultAvatar_Low/";
36         internal static readonly string ExternalModel = "model_external.gltf";
37         internal static readonly string AREmojiDefaultLowAvatarPath = $"{ApplicationResourcePath}{DefaultLowModelResourcePath}{ExternalModel}";
38
39         internal static AudioOptions DefaultAudioOptions = new AudioOptions(24000, AudioChannel.Mono, AudioSampleType.S16Le);
40         internal static AudioOptions CurrentAudioOptions = DefaultAudioOptions;
41     }
42 }