ZegoLiveRoom
zego-api-audio-player.h
Go to the documentation of this file.
1//
2// 音频播放器
3//
4//
5// Copyright © 2019年 Zego. All rights reserved.
6//
7
8#ifndef zego_api_audio_player_h
9#define zego_api_audio_player_h
10
11#include "zego-api-defines.h"
12
13namespace ZEGO
14{
15namespace AUDIOPLAYER
16{
17
19{
20public:
21 /*
22 * 播放音效
23 *
24 * @param nSoundID 音效 ID
25 * @param nErrorCode 0 成功,-1 失败
26 */
27 virtual void OnPlayEffect(unsigned int nSoundID, int nErrorCode) {};
28
34 virtual void OnPlayEnd(unsigned int nSoundID) {};
35
36 /*
37 * 预加载音效
38 *
39 * @param nSoundID 音效 ID
40 * @param nErrorCode 0 成功,-1 失败
41 */
42 virtual void OnPreloadEffect(unsigned int nSoundID, int nErrorCode) {};
43
49 virtual void OnPreloadComplete(unsigned int nSoundID) {};
50};
51
56
61
69
80ZEGOAVKIT_API void PlayEffect(const char *pszPath, unsigned int nSoundID, int nLoopCount, bool bPublish);
81
87ZEGOAVKIT_API void StopEffect(unsigned int nSoundID);
88
94ZEGOAVKIT_API void PauseEffect(unsigned int nSoundID);
95
101ZEGOAVKIT_API void ResumeEffect(unsigned int nSoundID);
102
111ZEGOAVKIT_API void SetVolume(unsigned int nSoundID, int nVolume);
112
121ZEGOAVKIT_API void SetPublishVolume(unsigned int nSoundID, int nVolume);
122
131ZEGOAVKIT_API void SetPlayVolume(unsigned int nSoundID, int nVolume);
132
140ZEGOAVKIT_API void SetVolumeAll(int nVolume);
141
150
159
166ZEGOAVKIT_API void SetPlaySpeed(unsigned int nSoundID, float speed);
167
172
177
182
189ZEGOAVKIT_API void PreloadEffect(const char *pszPath, unsigned int nSoundID);
190
196ZEGOAVKIT_API void UnloadEffect(unsigned int nSoundID);
197
205ZEGOAVKIT_API int SeekTo(unsigned int nSoundID, long timestamp);
206
213ZEGOAVKIT_API long GetDuration(unsigned int nSoundID);
214
221ZEGOAVKIT_API long GetCurrentDuration(unsigned int nSoundID);
222
232ZEGOAVKIT_API void UpdatePosition(unsigned int nSoundID, const float position[3]);
233}
234}
235
236#endif /* zego_api_audio_player_h */
Definition: zego-api-audio-player.h:19
virtual void OnPreloadComplete(unsigned int nSoundID)
Definition: zego-api-audio-player.h:49
virtual void OnPreloadEffect(unsigned int nSoundID, int nErrorCode)
Definition: zego-api-audio-player.h:42
virtual void OnPlayEffect(unsigned int nSoundID, int nErrorCode)
Definition: zego-api-audio-player.h:27
virtual void OnPlayEnd(unsigned int nSoundID)
Definition: zego-api-audio-player.h:34
ZEGOAVKIT_API void SetPublishVolumeAll(int nVolume)
ZEGOAVKIT_API void ResumeAll()
ZEGOAVKIT_API void PauseEffect(unsigned int nSoundID)
ZEGOAVKIT_API void SetVolumeAll(int nVolume)
ZEGOAVKIT_API void ResumeEffect(unsigned int nSoundID)
ZEGOAVKIT_API long GetDuration(unsigned int nSoundID)
ZEGOAVKIT_API void DestroyAudioPlayer()
ZEGOAVKIT_API long GetCurrentDuration(unsigned int nSoundID)
ZEGOAVKIT_API void StopEffect(unsigned int nSoundID)
ZEGOAVKIT_API bool SetAudioPlayerCallback(IZegoAudioPlayerCallback *pCallback)
ZEGOAVKIT_API void SetPlaySpeed(unsigned int nSoundID, float speed)
ZEGOAVKIT_API void SetPlayVolumeAll(int nVolume)
ZEGOAVKIT_API void UpdatePosition(unsigned int nSoundID, const float position[3])
更新音效播放器(音频源)位置
ZEGOAVKIT_API void PreloadEffect(const char *pszPath, unsigned int nSoundID)
ZEGOAVKIT_API void PlayEffect(const char *pszPath, unsigned int nSoundID, int nLoopCount, bool bPublish)
ZEGOAVKIT_API void SetVolume(unsigned int nSoundID, int nVolume)
ZEGOAVKIT_API void UnloadEffect(unsigned int nSoundID)
ZEGOAVKIT_API void CreateAudioPlayer()
ZEGOAVKIT_API void SetPlayVolume(unsigned int nSoundID, int nVolume)
ZEGOAVKIT_API void SetPublishVolume(unsigned int nSoundID, int nVolume)
ZEGOAVKIT_API void PauseAll()
ZEGOAVKIT_API void StopAll()
ZEGOAVKIT_API int SeekTo(unsigned int nSoundID, long timestamp)
Definition: AVDefines.h:17
#define ZEGOAVKIT_API
Definition: zego-api-defines.h:59