• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 音视频播放开发指导
2
3
4## 使用场景
5
6音视频播放是将音视频文件或音视频流数据进行解码并通过输出设备进行播放的过程,同时对播放任务进行管理。
7
8
9## 接口说明
10
11音视频播放API接口功能如下,具体的API详见接口文档。
12
13  **表1** 音视频播放API接口
14
15| 类名 | 接口名 | 描述 |
16| -------- | -------- | -------- |
17| Player | int32_t SetSource(const Source &source); | 设置播放源 |
18| Player | int32_t Prepare(); | 准备播放 |
19| Player | int32_t Play(); | 开始播放 |
20| Player | bool IsPlaying() | 判断是否播放中 |
21| Player | int32_t Pause(); | 暂停播放 |
22| Player | int32_t Stop(); | 停止播放 |
23| Player | int32_t Rewind(int_64 mSeconds, int32_t mode); | 改变播放位置 |
24| Player | int32_t SetVolume(float leftVolume, float rightVolume); | 设置音量,包括左声道和右声道。 |
25| Player | int32_t SetVideoSurface(Surface \*surface) | 设置播放窗口 |
26| Player | int32_t EnableSingleLooping(bool loop) | 设置循环播放 |
27| Player | bool IsSingleLooping(); | 判断是否循环播放 |
28| Player | int32_t GetCurrentTime(int64_t &time) const; | 获取当前播放时长 |
29| Player | int32_t GetDuration(int64_t &duration) const; | 获取总播放时长 |
30| Player | int32_t GetVideoWidth(int32_t &videoWidth); | 获取视频源宽度 |
31| Player | int32_t GetVideoHeight(int32_t &videoHeight); | 获取视频源高度 |
32| Player | int32_t Reset(); | 重置播放器 |
33| Player | int32_t Release(); | 释放播放器资源 |
34| Player | void SetPlayerCallback(const std::shared_ptr<PlayerCallback> &cb); | 设置播放回调函数 |
35| Source | Source(const std::string& uri); | 基于uri创建Source实例 |
36| Source | Source(const std::shared_ptr<StreamSource> &stream, const Format &formats); | 基于流创建Source实例 |
37| Source | SourceType GetSourceType() const; | 获取源类型 |
38| Source | const std::string &GetSourceUri() const; | 获取音视频uri |
39| Source | const std::shared_ptr<StreamSource> &GetSourceStream() const; | 获取音视频流 |
40| Source | const Format &GetSourceStreamFormat() const; | 获取音视频流格式 |
41| Format | bool PutIntValue(const std::string &key, int32_t value); | 设置整数类型的元数据 |
42| Format | bool PutLongValue(const std::string &key, int64_t value); | 设置长整数类型的元数据 |
43| Format | bool PutFloatValue(const std::string &key, float value); | 设置单精度浮点类型的元数据 |
44| Format | bool PutDoubleValue(const std::string &key, double value); | 设置双精度浮点类型的元数据 |
45| Format | bool PutStringValue(const std::string &key, const std::string &value); | 设置字符串类型的元数据 |
46| Format | bool GetIntValue(const std::string &key, int32_t &value) const; | 获取整数类型的元数据值 |
47| Format | bool GetLongValue(const std::string &key, int64_t &value) const; | 获取长整数类型的元数据值 |
48| Format | bool GetFloatValue(const std::string &key, float &value) const; | 获取单精度浮点类型的元数据值 |
49| Format | bool GetDoubleValue(const std::string &key, double &value) const; | 获取双精度浮点类型的元数据值 |
50| Format | bool GetStringValue(const std::string &key, std::string &value) const; | 获取字符串类型的元数据值 |
51| Format | const std::map<std::string, FormatData \*> &GetFormatMap() const; | 获取元数据映射表 |
52| Format | bool CopyFrom(const Format &format); | 用输入Format设置所有元数据 |
53
54
55## 约束与限制
56
57输入源为音视频流时,不支持播放进度控制和获取文件时长。
58
59
60## 开发步骤
61
621. 实现PlayerCallback回调,通过SetPlayerCallback函数进行绑定,用于事件处理。
63
64   ```
65   class TestPlayerCallback : public PlayerCallback{
66       void OnPlaybackComplete() override
67       {
68           //此处实现代码用于处理文件播放完成的事件
69       }
70       void OnError(int32_t errorType, int32_t errorCode) override
71       {
72           //此处实现代码处理错误事件
73       }
74       void OnInfo(int type, int extra) override
75       {
76           //此处实现代码处理普通事件
77       }
78       void OnRewindToComplete() override
79       {
80           //此处实现代码处理进度控制完成的事件
81       }
82   };
83
84   ```
85
862. 创建Player实例,设置播放源并开始播放。
87
88   ```
89   Player *player = new Player();
90   std::shared_ptr<PlayerCallback> callback = std::make_shared<TestPlayerCallback>();
91   player->SetPlayerCallback(callback);//设置player回调
92   std::string uri(filePath);//此处filePath为本地文件路径
93   Source source(uri);//保存uri到source实例
94   player->SetSource(source);//将source设置到player
95   player->Prepare();//准备播放
96   player->SetVideoSurface(surface);//设置播放窗口
97   player->Play();//开始播放
98   ```
99
1003. 根据场景需要进行播放控制。
101
102   ```
103   player->SetVolume(lvolume, rvolume);//设置左右声道声音
104   player->EnableSingleLooping(true);//设置循环播放
105   player->Pause();//暂停
106   player->Play();//继续播放
107   ```
108
1094. 播放任务结束后,进行资源释放。
110
111   ```
112   player->Stop(); //停止播放
113   player->Release();//释放资源
114   ```
115