namespace Funique
{
///
/// Audio source
/// ------------------------------------------------
/// 音效來源
///
public enum AudioMode
{
///
/// Video does not provide any audio
/// ------------------------------------------------
/// 影片不包含任何音效
///
NONE,
///
/// Play audio that in the video file
/// ------------------------------------------------
/// 播放影片檔案中的音效資源
///
NORMAL,
///
/// Play audio separately
/// ------------------------------------------------
/// 分開播放播放
///
TBE
}
}