blob: 8e8f27f4fb2062aedefc542e1ef352c22d447812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
Get live room basic status.
This is used to check initially if it is streaming or not.
*/
package bilibili
import (
"fmt"
"github.com/keuin/slbr/types"
)
func (b *Bilibili) GetRoomPlayInfo(roomId types.RoomId) (resp types.RoomPlayInfoResponse, err error) {
url := fmt.Sprintf("https://api.live.bilibili.com/xlive/web-room/v2/index/getRoomPlayInfo"+
"?room_id=%d&protocol=0,1&format=0,1,2&codec=0,1&qn=0&platform=web&ptype=8&dolby=5&panorama=1", roomId)
return callGet[types.RoomPlayInfoResponse](b, url)
}
|