Promise GameRecorder.resume()
基础库 2.8.0 开始支持,低版本需做兼容处理。
恢复录制游戏画面。
返回值
Promise
录制恢复的 Promise
错误
错误码 | 错误信息 | 说明 |
---|---|---|
wx.error.GameRecorder_UnknownError | unknown error | 未知错误,没有被归纳到的错误 |
wx.error.GameRecorder_InternalFailed | internal failed | 游戏画面录制 SDK 内部错误 |
wx.error.GameRecorder_NotSupported | frame not supported | 当前设备不支持录制游戏画面 |
wx.error.GameRecorder_StartDurationInvalid | duration invalid | duration 参数不合法 |
wx.error.GameRecorder_StartBitRateInvalid | bitrate invalid | bitrate 参数不合法 |
wx.error.GameRecorder_StartFPSInvalid | fps invalid | fps 参数不合法 |
wx.error.GameRecorder_StartGOPInvalid | gop invalid | gop 参数不合法 |
wx.error.GameRecorder_StartWhileAlreadyStartRecording | start while already start recording | 在已经开始录制的情况下调用 start |
wx.error.GameRecorder_StartWhilePaused | start while already paused | 在已经暂停录制的情况下调用 start,此时只能调用 resume 恢复录制 |
wx.error.GameRecorder_PauseWhileNotStartRecording | pause while not start recording | 在还没有开始录制的情况下调用 pause |
wx.error.GameRecorder_PauseWhileAlreadyPaused | pause while already paused | 在已经暂停录制的情况下调用 pause |
wx.error.GameRecorder_ResumeWhileNotStartRecording | resume while not start recording | 在还没有开始录制的情况下调用 resume |
wx.error.GameRecorder_ResumeWhileRecording | resume while recording | 在录制中调用 resume,调用 resume 只能在暂停状态下 |
wx.error.GameRecorder_AbortWhileNotStartRecording | abort while not start recording | 在还没有开始录制的情况下调用 abort |
wx.error.GameRecorder_StopWhileNotStartRecording | stop while not start recording | 在还没有开始录制的情况下调用 stop |
wx.error.GameRecorder_NoVideo | no recorded video | 在还没有一个录制好的对局回放的情况下发起分享 |
wx.error.GameRecorder_BGMNotFound | bgm not found | share.bgm 指定的额背景音乐不存在 |
wx.error.GameRecorder_TimeRangeInvalid | time range invalid | share.timeRange 不合法 |
wx.error.GameRecorder_EditDurationOutOfLimit | duration out of limit | share.timeRange 的所有片段的总和超出上限 |
wx.error.GameRecorder_TimeRangeTooShort | time range too short.It should be longer than 2s | share.timeRange 太短 |