diff --git a/extractor/openrec_extractor/openrec_extractor.go b/extractor/openrec_extractor/openrec_extractor.go index 4bd51df..b0c37d9 100644 --- a/extractor/openrec_extractor/openrec_extractor.go +++ b/extractor/openrec_extractor/openrec_extractor.go @@ -27,7 +27,7 @@ type UserLive struct { Title string `exp:"//h1[contains(@class,'MovieTitle__Title')]"` LiveStartTime string `exp:"//meta[@itemprop='uploadDate']/@content"` LiveEndTime string `exp:"//meta[@itemprop='duration']/@content"` - Tags []string `exp:"//a[contains(@class,'TagButton')]"` + Tags []string `exp:"//div[contains(@class,'MovieMetaContent__TagContainer')]//a[@role ='button']"` } // Execute 执行 @@ -135,8 +135,9 @@ func Execute() { streamer.Uid = source.StreamerId.Int64 streamer.UpdateTime = source.UpdateTime - streamer.Tags = clog.Tags - + if clog.Tags != nil { + streamer.Tags = clog.Tags + } clog.Platform = intimate.Popenrec clog.UserId = userId clog.UpdateTime = source.UpdateTime diff --git a/extractor/twitcasting_extractor/twitcasting_extractor.go b/extractor/twitcasting_extractor/twitcasting_extractor.go index 13f419e..c0b6a8e 100644 --- a/extractor/twitcasting_extractor/twitcasting_extractor.go +++ b/extractor/twitcasting_extractor/twitcasting_extractor.go @@ -113,42 +113,38 @@ func main() { clog.LiveTitle = sql.NullString{String: ldata.LiveTitle, Valid: true} clog.Tags = tags - // fl, err := intimate.ParseNumberEx(ldata.Follower) - // if err == nil { clog.Followers = sql.NullInt64{Int64: int64(ldata.Follower), Valid: true} switch { case ldata.Follower <= 100: - streamer.UpdateInterval = 360 + streamer.UpdateInterval = 720 case ldata.Follower <= 1000: + streamer.UpdateInterval = 320 + case ldata.Follower <= 10000: streamer.UpdateInterval = 240 - case ldata.Follower <= 100: - streamer.UpdateInterval = 120 default: - streamer.UpdateInterval = 60 + streamer.UpdateInterval = 120 } - streamer.UpdateInterval = 60 - // } else { - // log.Println(err) - // } clog.Views = sql.NullInt64{Int64: ldata.MaxViews, Valid: true} - // views, err := strconv.Atoi(ldata.MaxViews) - // if err == nil { - // clog.Views = sql.NullInt64{Int64: int64(views), Valid: true} - // } else { - // clog.Views = sql.NullInt64{Int64: int64(0), Valid: true} - // // log.Println(err, streamer.UserId) - // } - - // st, err := strconv.Atoi(ldata.LiveStart) if ldata.LiveStart != "" { st, err := time.Parse("Mon, 02 Jan 2006 15:04:05 -0700", ldata.LiveStart) if err == nil { startTime := st clog.LiveStartTime = sql.NullTime{Time: startTime, Valid: true} dt, err := strconv.Atoi(ldata.LiveDuration) - if time.Now().Sub(startTime) >= time.Hour*24*90 { + + liveduration := time.Now().Sub(startTime) + switch { + case liveduration >= time.Hour*24*240: streamer.Operator = 5 + case liveduration >= time.Hour*24*60: + streamer.UpdateInterval = 60 * 24 * 30 + case liveduration >= time.Hour*24*30: + streamer.UpdateInterval = 60 * 24 * 15 + case liveduration >= time.Hour*24*15: + streamer.UpdateInterval = 60 * 24 * 7 + case liveduration >= time.Hour*24*7: + streamer.UpdateInterval = 60 * 24 * 3 } if err == nil { diff --git a/extractor/twitch_extractor/tiwtch_extractor.go b/extractor/twitch_extractor/tiwtch_extractor.go index 187ae3e..c6173ba 100644 --- a/extractor/twitch_extractor/tiwtch_extractor.go +++ b/extractor/twitch_extractor/tiwtch_extractor.go @@ -22,21 +22,14 @@ func main() { wd := intimate.GetChromeDriver(3030) ps := intimate.NewPerfectShutdown() - counter := intimate.NewCounter() - counter.SetMaxLimit(200) - counter.SetMaxToDo(func(olist ...interface{}) error { - owd := olist[0].(*selenium.WebDriver) - (*owd).Close() - (*owd).Quit() - *owd = intimate.GetChromeDriver(3030) - return nil - }, &wd) + var count = 0 + var countlimt = 200 var lasterr error = nil // var err error for !ps.IsClose() { - streamer, err := estore.Pop(intimate.Ptwitch, 0) + streamer, err := estore.PopNoWait(intimate.Ptwitch, "tags is NULL", 15) if streamer == nil || err != nil { if err != lasterr { log.Println(err, lasterr) @@ -117,18 +110,23 @@ func main() { case fl > 100000: streamer.UpdateInterval = 120 case fl > 10000: - streamer.UpdateInterval = 240 + streamer.UpdateInterval = 240 * 2 case fl > 1000: - streamer.UpdateInterval = 360 + streamer.UpdateInterval = 360 * 2 case fl > 100: - streamer.UpdateInterval = 720 + streamer.UpdateInterval = 720 * 2 case fl > 0: - streamer.UpdateInterval = 1440 + streamer.UpdateInterval = 1440 * 4 } streamer.UpdateTime = clog.UpdateTime estore.UpdateStreamer(streamer) - counter.AddWithReset(1) + count++ + if count >= countlimt { + count = 0 + // wd.Quit() + wd = intimate.GetChromeDriver(3030) + } } wd.Close() diff --git a/go.mod b/go.mod index 7794c12..7848053 100644 --- a/go.mod +++ b/go.mod @@ -5,13 +5,14 @@ go 1.15 require ( github.com/474420502/extractor v0.9.6 github.com/474420502/focus v0.12.0 - github.com/474420502/gcurl v0.2.0 - github.com/474420502/requests v1.7.0 + github.com/474420502/gcurl v0.4.4 + github.com/474420502/requests v1.9.1 + github.com/davecgh/go-spew v1.1.1 github.com/go-sql-driver/mysql v1.5.0 github.com/lestrrat-go/libxml2 v0.0.0-20200215080510-6483566f52cb github.com/tebeka/selenium v0.9.9 github.com/tidwall/gjson v1.6.0 github.com/tidwall/pretty v1.0.1 // indirect - golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect + golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect gopkg.in/yaml.v2 v2.3.0 ) diff --git a/go.sum b/go.sum index 0ac5376..c7770c9 100644 --- a/go.sum +++ b/go.sum @@ -8,10 +8,28 @@ github.com/474420502/focus v0.12.0 h1:+icbmj7IEOefvTegHt5EpcHt6WFbe2miIrceUJx2Ev github.com/474420502/focus v0.12.0/go.mod h1:d0PMjtMxFz1a9HIhwyFPkWa+JF+0LgOrEUfd8iZka6s= github.com/474420502/gcurl v0.2.0 h1:m6+vw4NX4f5Tfp7c3nuaIgHUE/7zTX6K3xK+pTCBoCo= github.com/474420502/gcurl v0.2.0/go.mod h1:kJZDbgXn5wbAaR+hhBi4Sbw44P4igJ7qYXC6mejLuhQ= +github.com/474420502/gcurl v0.3.0 h1:j0YP55ANQUHDF86pL5rCqfC+dX887uL9GxHFE3Zj31k= +github.com/474420502/gcurl v0.3.0/go.mod h1:kJZDbgXn5wbAaR+hhBi4Sbw44P4igJ7qYXC6mejLuhQ= +github.com/474420502/gcurl v0.4.0 h1:HOnuYhZD2rwvAXdrF1tqS6gQYYcpnpcPVdOVbDsFT4E= +github.com/474420502/gcurl v0.4.0/go.mod h1:kJZDbgXn5wbAaR+hhBi4Sbw44P4igJ7qYXC6mejLuhQ= +github.com/474420502/gcurl v0.4.1 h1:js/s+w1yBkpSU5vo3kXLQs5F+NMwbNWI23Bcx3LDnnQ= +github.com/474420502/gcurl v0.4.1/go.mod h1:IOyP4j8lUCJaHqODzRyeZQcrQy9DGDalLc3z1gVuiJ4= +github.com/474420502/gcurl v0.4.3 h1:CwyKPrv8mzSL+pa7mrYpuVNEC7rst6MdHx0Enn+7cUk= +github.com/474420502/gcurl v0.4.3/go.mod h1:IOyP4j8lUCJaHqODzRyeZQcrQy9DGDalLc3z1gVuiJ4= +github.com/474420502/gcurl v0.4.4 h1:ZILu7RRjDBGHpTGmuWGKf1NZZbZsC7AHPlI8RHqs9As= +github.com/474420502/gcurl v0.4.4/go.mod h1:7w4knyVJa1ia4I1xd0krG51fKLGwMmNn5sfG2zPWbqM= github.com/474420502/htmlquery v1.2.4-0.20200812072201-e871dd09247a h1:E1T6CYQKsUn7fMvNbeKfISjBLfOJjZX4KpWwStT20Kc= github.com/474420502/htmlquery v1.2.4-0.20200812072201-e871dd09247a/go.mod h1:AoSN890esHwNKecV0tCs+W0ele1xgFL1Jqk6UcrdxgU= github.com/474420502/requests v1.7.0 h1:oaBwVrxZ7yZ+hDOKwHm2NflYib2y1geIUxBxQ2U48mw= github.com/474420502/requests v1.7.0/go.mod h1:SLXrQ5dL9c7dkIeKNUCBAjOIt3J9KFCS2RQjWJecNwo= +github.com/474420502/requests v1.8.1 h1:zR2PE97PY6qTfwCtUl7fJ2Sg7JEXcXZg2nxgxrOutFU= +github.com/474420502/requests v1.8.1/go.mod h1:SLXrQ5dL9c7dkIeKNUCBAjOIt3J9KFCS2RQjWJecNwo= +github.com/474420502/requests v1.8.2 h1:DiNLp8IlHjZKgNJbzLcwt89YosWBfkmjEMNmUXxF+Hs= +github.com/474420502/requests v1.8.2/go.mod h1:SLXrQ5dL9c7dkIeKNUCBAjOIt3J9KFCS2RQjWJecNwo= +github.com/474420502/requests v1.9.0 h1:c/oj1G4pGulIzljZ0WqoF8dkOCWjfJLmoyH+DCVRGH8= +github.com/474420502/requests v1.9.0/go.mod h1:x2T9l+e40R6kxxMvNm+YSZ9D6BHAXUDak4kQElIPJ9A= +github.com/474420502/requests v1.9.1 h1:gCDmBCW1ym8zOvKKBGjEG9wafMY7imYk2u28+Oy1WEc= +github.com/474420502/requests v1.9.1/go.mod h1:x2T9l+e40R6kxxMvNm+YSZ9D6BHAXUDak4kQElIPJ9A= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802 h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc= @@ -112,6 +130,8 @@ golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200707034311-ab3426394381 h1:VXak5I6aEWmAXeQjA+QSZzlgNrpq9mjcfDemuexIKsU= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202 h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= diff --git a/platform_list.go b/platform_list.go index 246e991..98ef433 100644 --- a/platform_list.go +++ b/platform_list.go @@ -12,4 +12,7 @@ const ( // Ptwitcasting twitcasting 平台 Ptwitcasting Platform = "twitcasting" + + // PNimo PNimo 平台 + PNimo Platform = "nimo" ) diff --git a/store.go b/store.go index 82918ad..d49df1e 100644 --- a/store.go +++ b/store.go @@ -228,15 +228,13 @@ func NewStoreExtractor() *StoreExtractor { return &StoreExtractor{db: db} } -// Pop 弹出一条未处理的数据 -func (store *StoreExtractor) Pop(platform Platform, operators ...int32) (*Streamer, error) { - +func (store *StoreExtractor) PopNoWait(platform Platform, condition string, operators ...int32) (*Streamer, error) { tx, err := store.db.Begin() if err != nil { return nil, err } var args = []interface{}{string(platform)} - selectSQL := `select uid, update_time, user_id, update_url, is_update_streamer, update_interval from ` + StreamerTable + ` where platform = ? and TIMESTAMPDIFF(MINUTE , update_time, CURRENT_TIMESTAMP()) >= update_interval` + selectSQL := `select uid, update_time, user_id, tags, live_url, update_url, is_update_streamer, update_interval from ` + StreamerTable + ` where platform = ? and ` + condition if len(operators) == 0 { selectSQL += " and operator = ?" args = append(args, 0) @@ -264,7 +262,52 @@ func (store *StoreExtractor) Pop(platform Platform, operators ...int32) (*Stream s := &Streamer{} // uid, url, target_type, source, ext, operator - err = row.Scan(&s.Uid, &s.UpdateTime, &s.UserId, &s.UpdateUrl, &s.IsUpdateStreamer, &s.UpdateInterval) + err = row.Scan(&s.Uid, &s.UpdateTime, &s.UserId, &s.Tags, &s.LiveUrl, &s.UpdateUrl, &s.IsUpdateStreamer, &s.UpdateInterval) + if err != nil { + return nil, err + } + s.Set("LastOperator", s.Operator) + _, err = tx.Exec("update "+StreamerTable+" set operator = ? where uid = ?", OperatorWait, s.Uid) + return s, nil +} + +// Pop 弹出一条未处理的数据 +func (store *StoreExtractor) Pop(platform Platform, operators ...int32) (*Streamer, error) { + + tx, err := store.db.Begin() + if err != nil { + return nil, err + } + var args = []interface{}{string(platform)} + selectSQL := `select uid, update_time, user_id, tags, live_url, update_url, is_update_streamer, update_interval from ` + StreamerTable + ` where platform = ? and TIMESTAMPDIFF(MINUTE , update_time, CURRENT_TIMESTAMP()) >= update_interval` + if len(operators) == 0 { + selectSQL += " and operator = ?" + args = append(args, 0) + } else { + for _, operator := range operators { + selectSQL += " and operator = ?" + args = append(args, operator) + } + } + + defer func() { + err := tx.Commit() + if err != nil { + log.Println(err) + err = tx.Rollback() + if err != nil { + log.Println(err) + } + } + store.popCount++ + }() + + // log.Println(selectSQL + ` limit 1 for update`) + row := tx.QueryRow(selectSQL+` limit 1 for update`, args...) + + s := &Streamer{} + // uid, url, target_type, source, ext, operator + err = row.Scan(&s.Uid, &s.UpdateTime, &s.UserId, &s.Tags, &s.LiveUrl, &s.UpdateUrl, &s.IsUpdateStreamer, &s.UpdateInterval) if err != nil { return nil, err } @@ -316,9 +359,9 @@ func (store *StoreExtractor) InsertStreamerList(streamerlist IGet) (isExists boo } // InsertStreamer Streamer表, 插入数据 -func (store *StoreExtractor) InsertStreamer(streamer IGet) (isExists bool) { +func (store *StoreExtractor) InsertStreamer(streamer *Streamer) (isExists bool) { // select uid from table where platform = ? and user_id = ? - selectSQL := "SELECT is_update_url, uid FROM " + StreamerTable + " WHERE platform = ? AND user_id = ?" + // selectSQL := "SELECT is_update_url, uid FROM " + StreamerTable + " WHERE platform = ? AND user_id = ?" tx, err := store.db.Begin() if err != nil { panic(err) @@ -335,18 +378,17 @@ func (store *StoreExtractor) InsertStreamer(streamer IGet) (isExists bool) { } }() - row := tx.QueryRow(selectSQL+` LIMIT 1 FOR UPDATE`, streamer.Get("Platform"), streamer.Get("UserId")) - var isUpdateUrl bool - var Uid int64 - if err = row.Scan(&isUpdateUrl, &Uid); err == nil { - if isUpdateUrl { - tx.Exec("UPDATE "+StreamerTable+" SET update_url = ?", streamer.Get("UpdateUrl")) - } - streamer.(ISet).Set("Uid", Uid) - return true - } + streamer.UpdateTime = sql.NullTime{Time: time.Now().Add(-time.Hour * 100000), Valid: true} + _, err = tx.Exec("INSERT IGNORE INTO "+StreamerTable+"(platform, user_id, user_name, live_url, update_url, tags, update_time) VALUES(?,?,?,?,?,?,?);", + streamer.Platform, + streamer.UserId, + streamer.UserName, + streamer.LiveUrl, + streamer.UpdateUrl, + streamer.Tags, + streamer.UpdateTime, + ) - _, err = tx.Exec("INSERT INTO "+StreamerTable+"(platform, user_id, update_url, tags, update_time) VALUES(?,?,?,?,?);", streamer.Get("Platform"), streamer.Get("UserId"), streamer.Get("UpdateUrl"), streamer.Get("Tags"), time.Now().Add(-time.Hour*100000)) if err != nil { panic(err) } diff --git a/supervisor_conf/.gitignore b/supervisor_conf/.gitignore new file mode 100644 index 0000000..2d29375 --- /dev/null +++ b/supervisor_conf/.gitignore @@ -0,0 +1 @@ +conf.d \ No newline at end of file diff --git a/supervisor_conf/clear_log.sh b/supervisor_conf/clear_log.sh new file mode 100644 index 0000000..1cce37f --- /dev/null +++ b/supervisor_conf/clear_log.sh @@ -0,0 +1,7 @@ +CURPATH=`pwd` +BINPATH=$(dirname "$CURPATH")/bin +find $BINPATH -type f -name 'log' -exec rm {} + + + + + diff --git a/supervisor_conf/createln.sh b/supervisor_conf/createln.sh index 1c092ed..7e5562e 100644 --- a/supervisor_conf/createln.sh +++ b/supervisor_conf/createln.sh @@ -1 +1,8 @@ -ln -sf `pwd`/*.conf /etc/supervisor/conf.d/ + +CURPATH=`pwd` +SUPPATH=$(dirname "$CURPATH") + +mkdir -p $CURPATH/conf.d +cp *.conf $CURPATH/conf.d/ +sed -i "s#MYPATH#$SUPPATH#g" $CURPATH/conf.d/*.conf +ln -sf $CURPATH/conf.d/*.conf /etc/supervisor/conf.d/ diff --git a/supervisor_conf/openrec_extractor.conf b/supervisor_conf/openrec_extractor.conf index 0b7f9de..da7c539 100644 --- a/supervisor_conf/openrec_extractor.conf +++ b/supervisor_conf/openrec_extractor.conf @@ -2,9 +2,9 @@ nodaemon=true [program:openrec_extractor] -directory = /home/eson/test/intimate/bin/openrec_extractor/ -command= /home/eson/test/intimate/bin/openrec_extractor/openrec_extractor +directory = MYPATH/bin/openrec_extractor/ +command= MYPATH/bin/openrec_extractor/openrec_extractor autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/openrec_extractor/log +stderr_logfile=MYPATH/bin/openrec_extractor/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/openrec_task1.conf b/supervisor_conf/openrec_task1.conf index b011692..15829c2 100644 --- a/supervisor_conf/openrec_task1.conf +++ b/supervisor_conf/openrec_task1.conf @@ -2,9 +2,9 @@ nodaemon=true [program:openrec_ranking] -directory = /home/eson/test/intimate/bin/openrec_task1 -command= /home/eson/test/intimate/bin/openrec_task1/openrec_task1 +directory = MYPATH/bin/openrec_task1 +command= MYPATH/bin/openrec_task1/openrec_task1 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/openrec_task1/log +stderr_logfile=MYPATH/bin/openrec_task1/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/openrec_task2.conf b/supervisor_conf/openrec_task2.conf index 99c65c3..1da544f 100644 --- a/supervisor_conf/openrec_task2.conf +++ b/supervisor_conf/openrec_task2.conf @@ -2,11 +2,11 @@ nodaemon=true [program:openrec_source] -directory = /home/eson/test/intimate/bin/openrec_task2/ -command= /home/eson/test/intimate/bin/openrec_task2/openrec_task2 +directory = MYPATH/bin/openrec_task2/ +command= MYPATH/bin/openrec_task2/openrec_task2 process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=4 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/openrec_task2/log +stderr_logfile=MYPATH/bin/openrec_task2/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/test.conf b/supervisor_conf/test.conf deleted file mode 100644 index fb815c7..0000000 --- a/supervisor_conf/test.conf +++ /dev/null @@ -1,12 +0,0 @@ -# [supervisord] -# nodaemon=true - -# [program:openrec_extractor] -# directory = /home/eson/test/intimate/extractor/openrec_extractor -# command= /home/eson/test/intimate/extractor/openrec_extractor/openrec_extractor -# autorestart=true -# # stdout_logfile=/home/eson/test/intimate/extractor/openrec/stdout -# # stdout_logfile_maxbytes=0 -# stderr_logfile=/home/eson/test/intimate/extractor/openrec/log -# stderr_logfile_maxbytes=0 -# stopsignal=QUIT diff --git a/supervisor_conf/twitcasting_extractor.conf b/supervisor_conf/twitcasting_extractor.conf index 218b2b8..a4f55df 100644 --- a/supervisor_conf/twitcasting_extractor.conf +++ b/supervisor_conf/twitcasting_extractor.conf @@ -3,12 +3,12 @@ nodaemon=false [program:twitcasting_extractor] environment=DISPLAY=":99" -directory = /home/eson/test/intimate/bin/twitcasting_extractor/ -command= /home/eson/test/intimate/bin/twitcasting_extractor/twitcasting_extractor +directory = MYPATH/bin/twitcasting_extractor/ +command= MYPATH/bin/twitcasting_extractor/twitcasting_extractor process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=3 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitcasting_extractor/log +stderr_logfile=MYPATH/bin/twitcasting_extractor/log # stderr_logfile=%(supervisorctl.var.directory)s/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/twitcasting_task1.conf b/supervisor_conf/twitcasting_task1.conf index 23dda7b..cf8cbe5 100644 --- a/supervisor_conf/twitcasting_task1.conf +++ b/supervisor_conf/twitcasting_task1.conf @@ -3,11 +3,11 @@ nodaemon=false [program:twitcasting_task1] environment=DISPLAY=":99" -directory = /home/eson/test/intimate/bin/twitcasting_task1/ -command= /home/eson/test/intimate/bin/twitcasting_task1/twitcasting_task1 +directory = MYPATH/bin/twitcasting_task1/ +command= MYPATH/bin/twitcasting_task1/twitcasting_task1 # process_name=%(program_name)s_%(process_num)02d ;多进程名称 # numprocs=1 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitcasting_task1/log +stderr_logfile=MYPATH/bin/twitcasting_task1/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/twitch_extractor.conf b/supervisor_conf/twitch_extractor.conf index a8676a5..61b82ca 100644 --- a/supervisor_conf/twitch_extractor.conf +++ b/supervisor_conf/twitch_extractor.conf @@ -3,11 +3,11 @@ nodaemon=false [program:twitch_extractor] environment=DISPLAY=":99" -directory = /home/eson/test/intimate/bin/twitch_extractor -command= /home/eson/test/intimate/bin/twitch_extractor/twitch_extractor +directory = MYPATH/bin/twitch_extractor +command= MYPATH/bin/twitch_extractor/twitch_extractor process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=5 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitch_extractor/log +stderr_logfile=MYPATH/bin/twitch_extractor/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/twitch_extractor_p1.conf b/supervisor_conf/twitch_extractor_p1.conf index 36ac3fc..aea427e 100644 --- a/supervisor_conf/twitch_extractor_p1.conf +++ b/supervisor_conf/twitch_extractor_p1.conf @@ -3,11 +3,11 @@ nodaemon=true [program:twitch_extractor_p1] environment=DISPLAY=":99",pac_proxy=http://localhost:1090/pac -directory = /home/eson/test/intimate/bin/twitch_extractor -command= /home/eson/test/intimate/bin/twitch_extractor/twitch_extractor +directory = MYPATH/bin/twitch_extractor +command= MYPATH/bin/twitch_extractor/twitch_extractor process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=2 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitch_extractor/log +stderr_logfile=MYPATH/bin/twitch_extractor/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/twitch_extractor_p2.conf b/supervisor_conf/twitch_extractor_p2.conf index 095de77..4c47d15 100644 --- a/supervisor_conf/twitch_extractor_p2.conf +++ b/supervisor_conf/twitch_extractor_p2.conf @@ -3,11 +3,11 @@ nodaemon=false [program:twitch_extractor_p2] environment=DISPLAY=":99",pac_proxy=http://localhost:1090/pac1 -directory = /home/eson/test/intimate/bin/twitch_extractor -command= /home/eson/test/intimate/bin/twitch_extractor/twitch_extractor +directory = MYPATH/bin/twitch_extractor +command= MYPATH/bin/twitch_extractor/twitch_extractor process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=2 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitch_extractor/log +stderr_logfile=MYPATH/bin/twitch_extractor/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/twitch_task2.conf b/supervisor_conf/twitch_task2.conf index 7768d0e..8a12047 100644 --- a/supervisor_conf/twitch_task2.conf +++ b/supervisor_conf/twitch_task2.conf @@ -3,11 +3,11 @@ nodaemon=false [program:twitch_task2] environment=DISPLAY=":99" -directory = /home/eson/test/intimate/bin/twitch_task2 -command= /home/eson/test/intimate/bin/twitch_task2/twitch_task2 +directory = MYPATH/bin/twitch_task2 +command= MYPATH/bin/twitch_task2/twitch_task2 process_name=%(program_name)s_%(process_num)02d ;多进程名称 numprocs=6 ;启动多个进程 autorestart=true -stderr_logfile=/home/eson/test/intimate/bin/twitch_task2/log +stderr_logfile=MYPATH/bin/twitch_task2/log stderr_logfile_maxbytes=0 stopsignal=QUIT diff --git a/supervisor_conf/xvfb.conf b/supervisor_conf/xvfb.conf index 1ee51d6..d8da99a 100644 --- a/supervisor_conf/xvfb.conf +++ b/supervisor_conf/xvfb.conf @@ -3,11 +3,6 @@ nodaemon=true [program:xvfb-99] -# directory = /home/eson/test/intimate/extractor/openrec_extractor command=/usr/bin/Xvfb :99 -screen 0 1280x720x24 -ac -nolisten tcp -dpi 96 +extension RANDR -nolisten tcp autorestart=true -# # stdout_logfile=/home/eson/test/intimate/extractor/openrec/stdout -# # stdout_logfile_maxbytes=0 -# stderr_logfile=/home/eson/test/intimate/extractor/openrec/log -# stderr_logfile_maxbytes=0 -# stopsignal=QUIT + diff --git a/table_list.go b/table_list.go index cb12c70..1dc9545 100644 --- a/table_list.go +++ b/table_list.go @@ -12,4 +12,7 @@ const ( // STTwitcasting STTwitcasting源table名称 STTwitcasting SourceTable = "source_twitcasting" + + // STNimo nimo源table名称 + STNimo SourceTable = "source_nimo" ) diff --git a/tasks/nimo/nimo_task1/nimo_task1.go b/tasks/nimo/nimo_task1/nimo_task1.go new file mode 100644 index 0000000..d423e90 --- /dev/null +++ b/tasks/nimo/nimo_task1/nimo_task1.go @@ -0,0 +1,106 @@ +package main + +import ( + "database/sql" + "encoding/json" + "intimate" + "log" + "time" + + "github.com/474420502/gcurl" + "github.com/tidwall/gjson" +) + +// estore 解析存储连接实例 +var estore *intimate.StoreExtractor = intimate.NewStoreExtractor() + +// Execute 执行 +func Execute() { + + nimoapi := `curl 'https://api.nimo.tv/oversea/nimo/api/v2/liveRoom/liveRoomPage-1-100-/HK/1028/1000' \ + -H 'authority: api.nimo.tv' \ + -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36' \ + -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary3bCA1lzvhj4kBR4Q' \ + -H 'accept: */*' \ + -H 'origin: https://www.nimo.tv' \ + -H 'sec-fetch-site: same-site' \ + -H 'sec-fetch-mode: cors' \ + -H 'sec-fetch-dest: empty' \ + -H 'referer: https://www.nimo.tv/lives' \ + -H 'accept-language: zh-CN,zh;q=0.9' \ + --data-binary $'------WebKitFormBoundary3bCA1lzvhj4kBR4Q\r\nContent-Disposition: form-data; name="keyType"\r\n\r\n0\r\n------WebKitFormBoundary3bCA1lzvhj4kBR4Q\r\nContent-Disposition: form-data; name="body"\r\n\r\n{"deviceType":7,"requestSource":"WEB","iNetType":5}\r\n------WebKitFormBoundary3bCA1lzvhj4kBR4Q--\r\n' \ + --compressed` + + curl := gcurl.Parse(nimoapi) + ses := curl.CreateSession() + tp := curl.CreateTemporary(ses) + + param := tp.PathParam("liveRoomPage-(1)-") + ps := intimate.NewPerfectShutdown() + for !ps.IsClose() { + + resp, err := tp.Execute() + if err != nil { + log.Println(err) + time.Sleep(time.Second) + continue + } + + result := gjson.ParseBytes(resp.Content()) + roomlist := result.Get("data.result.liveRoomViewList") + + if !roomlist.IsArray() { + log.Println("json is error") + log.Println(string(resp.Content())) + break + } + + rooms := roomlist.Array() + log.Println(tp.GetURLRawPath(), "rooms:", len(rooms)) + if len(rooms) == 0 { + param.IntSet(1) + time.Sleep(time.Minute * 10) + continue + } + + for _, room := range rooms { + + streamer := &intimate.Streamer{} + streamer.Platform = intimate.PNimo + + if userid := room.Get("id").String(); userid != "" { + + streamer.UserId = userid + streamer.LiveUrl = sql.NullString{String: "https://www.nimo.tv/live/" + userid, Valid: true} + + channel := room.Get("roomTypeName").String() + streamer.Channel = sql.NullString{String: channel, Valid: channel != ""} + username := room.Get("anchorName").String() + streamer.UserName = sql.NullString{String: username, Valid: username != ""} + + if rtags := room.Get("anchorLabels"); rtags.IsArray() { + + var tags []string + for _, r := range rtags.Array() { + tag := r.Get("labelName").String() + tags = append(tags, tag) + } + + data, err := json.Marshal(tags) + if err != nil { + panic(err) + } + streamer.Tags = data + + } + + streamer.UpdateInterval = 120 + // spew.Println(streamer) + estore.InsertStreamer(streamer) + } else { + log.Println("userid is null.", room.String()) + } + } + param.IntAdd(1) + } +} diff --git a/tasks/nimo/nimo_task1/nimo_task1_test.go b/tasks/nimo/nimo_task1/nimo_task1_test.go new file mode 100644 index 0000000..ab739ec --- /dev/null +++ b/tasks/nimo/nimo_task1/nimo_task1_test.go @@ -0,0 +1,55 @@ +package main + +import ( + "fmt" + "io/ioutil" + "os" + "testing" + + "github.com/474420502/gcurl" +) + +func CrawlContent(args ...interface{}) []byte { + nimoapi := `curl 'https://api.nimo.tv/oversea/nimo/api/v2/liveRoom/liveRoomPage-%d-30-/HK/1028/1000' \ + -H 'authority: api.nimo.tv' \ + -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36' \ + -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary3bCA1lzvhj4kBR4Q' \ + -H 'accept: */*' \ + -H 'origin: https://www.nimo.tv' \ + -H 'sec-fetch-site: same-site' \ + -H 'sec-fetch-mode: cors' \ + -H 'sec-fetch-dest: empty' \ + -H 'referer: https://www.nimo.tv/lives' \ + -H 'accept-language: zh-CN,zh;q=0.9' \ + --data-binary $'------WebKitFormBoundary3bCA1lzvhj4kBR4Q\r\nContent-Disposition: form-data; name="keyType"\r\n\r\n0\r\n------WebKitFormBoundary3bCA1lzvhj4kBR4Q\r\nContent-Disposition: form-data; name="body"\r\n\r\n{"deviceType":7,"requestSource":"WEB","iNetType":5}\r\n------WebKitFormBoundary3bCA1lzvhj4kBR4Q--\r\n' \ + --compressed` + + curl := gcurl.Parse(fmt.Sprintf(nimoapi, 1)) + tp := curl.CreateTemporary(nil) + + resp, err := tp.Execute() + if err != nil { + panic(err) + } + return resp.Content() +} + +func openTestFile(...interface{}) []byte { + f, err := os.Open("../../../testfile/nimo1.json") + if err != nil { + panic(err) + } + data, err := ioutil.ReadAll(f) + if err != nil { + panic(err) + } + return data +} + +var Crawl func(...interface{}) []byte + +func Test(t *testing.T) { + + Execute() + +} diff --git a/tasks/openrec/openrec_task1/task_openrec.go b/tasks/openrec/openrec_task1/task_openrec.go index 7a8774a..40ee747 100644 --- a/tasks/openrec/openrec_task1/task_openrec.go +++ b/tasks/openrec/openrec_task1/task_openrec.go @@ -34,7 +34,7 @@ func Execute() { -H 'if-none-match: W/"25edb-aUYBdmLqZcr6DW4ZWKX9r2aqolg"' \ --compressed` - g := gcurl.ParseRawCURL(turl) + g := gcurl.Parse(turl) tp := g.Temporary() for !ps.IsClose() { diff --git a/tasks/openrec/openrec_task2/task_openrec.go b/tasks/openrec/openrec_task2/task_openrec.go index 091944f..c88fa6f 100644 --- a/tasks/openrec/openrec_task2/task_openrec.go +++ b/tasks/openrec/openrec_task2/task_openrec.go @@ -69,7 +69,7 @@ func Execute() { cookies := ses.GetCookies(tp.GetParsedURL()) scurl := updateUrl["supporters"] //获取打赏者的数据 - curl := gcurl.ParseRawCURL(scurl) + curl := gcurl.Parse(scurl) supportersSession := curl.CreateSession() temporary := curl.CreateTemporary(supportersSession) diff --git a/tasks/twitch/twitch_task1/task_twitch_test.go b/tasks/twitch/twitch_task1/task_twitch_test.go index 6ee9af6..31f721c 100644 --- a/tasks/twitch/twitch_task1/task_twitch_test.go +++ b/tasks/twitch/twitch_task1/task_twitch_test.go @@ -4,7 +4,7 @@ import ( "testing" ) -func estCase1(t *testing.T) { +func TestCase1(t *testing.T) { Execute() } diff --git a/tasks/twitch/twitch_task2/task_twitch.go b/tasks/twitch/twitch_task2/task_twitch.go index 922d1b1..86fcc8f 100644 --- a/tasks/twitch/twitch_task2/task_twitch.go +++ b/tasks/twitch/twitch_task2/task_twitch.go @@ -159,7 +159,9 @@ func Execute() { streamer.Operator = 0 if estore.InsertStreamer(streamer) { // log.Println("streamer update tags", streamer.Uid, tags) - estore.Update(streamer, "Tags", streamer.Tags) + if streamer.Tags != nil { + estore.Update(streamer, "Tags", streamer.Tags) + } } } log.Println("streamer find", len(articles)) diff --git a/tasks/twitch/twitch_task2/task_twitch_test.go b/tasks/twitch/twitch_task2/task_twitch_test.go index a5537f5..ef64976 100644 --- a/tasks/twitch/twitch_task2/task_twitch_test.go +++ b/tasks/twitch/twitch_task2/task_twitch_test.go @@ -2,6 +2,6 @@ package main import "testing" -func estMain(t *testing.T) { +func TestMain(t *testing.T) { main() } diff --git a/testfile/nimo1.json b/testfile/nimo1.json new file mode 100644 index 0000000..130646c --- /dev/null +++ b/testfile/nimo1.json @@ -0,0 +1,10205 @@ +{ + "code": 200, + "message": "Request succeeded", + "data": { + "result": { + "lCID": 1000, + "pageControlView": { + "pageCount": 56, + "pageStep": 4, + "pageIndex": 1, + "count": 1657, + "pageSize": 30 + }, + "liveRoomViewList": [ + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 90017, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6173062192, + "sharpness": null, + "roomType": 30, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201907311564594528136_2399511787339_avatar.png", + "roomTypeName": "我要活下去", + "isLottery": 0, + "anchorId": 2399511787339, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1568966074000, + "anchorLabelType": 1, + "labelId": 11, + "labelNameLang": "", + "sort": 420, + "labelName": "技術流", + "type": 4 + }, + { + "timeStamp": 1568966074000, + "anchorLabelType": 1, + "labelId": 8, + "labelNameLang": "", + "sort": 420, + "labelName": "幽默", + "type": 4 + } + ], + "roomSort": 3, + "lcidText": "Português", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Cerol", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/17419A696E6EBFB38FD80C2C61ED96AD_500x280.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/91DDDDA719DC13AF83D396775B093C53_338x190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/C7BD8F6B83AC2F138F9D88B39A6388DE_136x76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399511787339rde01ffe519fb9b8a51f052cafc9eb4d0_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 2399511787339, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 6173062192, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f710022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c608000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102870a0a08000106307375323339393531313738373333397264653031666665353139666239623861353166303532636166633965623464301a0900010a060257531630737532333939353131373837333339726465303166666535313966623962386135316630353263616663396562346430261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375323339393531313738373333397264653031666665353139666239623861353166303532636166633965623464307c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c630000022eae0c374b7c8120f39006a103e8b103e8c103e8d600e60861707069643d38310b0b160a36313733303632313932260a36313733303632313932325f4620020b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "freefire" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1046, + "superscriptType": 0, + "anchorCountryCode": "BR", + "fps": null, + "anchorAnnouncement": "https://discord.gg/cerol \nDISCORD QUE USO PARA FAZER LIVES\nINSTAGRAM: @cerolzera", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201908011564691997580_2399511787339_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201908011564691997580_2399511787339_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201908011564691997523_2399511787339_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "00:00H CAMP", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "cerol", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 31425, + "onlineStatus": 0, + "endLiveTime": 1598428190, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6954924882, + "sharpness": null, + "roomType": 30, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201904231555993088357_2439512362619_avatar.png", + "roomTypeName": "我要活下去", + "isLottery": 0, + "anchorId": 2439512362619, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1568968201000, + "anchorLabelType": 1, + "labelId": 11, + "labelNameLang": "", + "sort": 420, + "labelName": "技術流", + "type": 4 + } + ], + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "MrStiven Tc", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/B7D0EF8D044F1D125F8317AA0C34D5E5_4d28a080513aa675e7de4965a0a8c922.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/B276AE0DE7166C2457235C56C8A9FFEB_cd5242a18fda4f96154cdd33251fde41.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/93B1B8BDF45A45F48D9C98D64B487B9F_7f324d7e7ff201cdc5d82edb06b2e21e.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439512362619rd9207ae57cab633fd56d0edb808ab15a_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 2439512362619, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 6954924882, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002fd10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102cc08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001028d0a0a08000106307375323433393531323336323631397264393230376165353763616236333366643536643065646238303861623135611a0900010a0602414c1630737532343339353132333632363139726439323037616535376361623633336664353664306564623830386162313561261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375323433393531323336323631397264393230376165353763616236333366643536643065646238303861623135617c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c6300000237fe448e7b7c81192d9006a103e8b103e8c103e8d600e60861707069643d38310b0b160a36393534393234383832260a36393534393234383832325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "freefire" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "CO", + "fps": null, + "anchorAnnouncement": "Si te gusta lo épico, tienes que ver esto!!\uD83D\uDE31", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201910151571108592514_2439512362619_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201910151571108592514_2439512362619_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201910151571108592514_2439512362619_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865196808284081658, + "microPKStatus": 0, + "userId": null, + "roomTheme": "GOOO", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "mrstiventc", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 12132, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 760109, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599511644533/202006081591601657620_1599511644533_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1599511644533, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1569227722000, + "anchorLabelType": 1, + "labelId": 11, + "labelNameLang": "", + "sort": 420, + "labelName": "技術流", + "type": 4 + }, + { + "timeStamp": 1569227722000, + "anchorLabelType": 1, + "labelId": 9, + "labelNameLang": "", + "sort": 420, + "labelName": "顏值", + "type": 4 + } + ], + "roomSort": 0, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "EVOS Earl", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/C58F01BDAE27C0E69A9F06C4EDB57C23_013c51274385f32a837b869fd81f4f91.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/709C3E18BD4BEE85096CB4A09F700F7A_0cee470064b1fec1b4bb2f86804a2e9e.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/660DE5409F7FE56C6F0A8257E171CE0C_0bca4c36bed15a58e8a34e12421a9f8a.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511644533r80682fa1ba485fa43bd790a51d4e4f6c_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599511644533, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 760109, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002ed10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102bc08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001027d0a0a08000106307375313539393531313634343533337238303638326661316261343835666134336264373930613531643465346636631a0900010a060257531630737531353939353131363434353333723830363832666131626134383566613433626437393061353164346534663663261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531313634343533337238303638326661316261343835666134336264373930613531643465346636637c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001746a52c9757c8114d79006a103e8b103e8c103e8d600e60861707069643d38310b0b16063736303130392606373630313039325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "FOLLOW MY INSTAGRAM @windalunardi\nDon't forget to hit the follow button!", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "MAIN APA NIH", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "evosearl", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 8489, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 79438019, + "sharpness": null, + "roomType": 79, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1639514062140/202007121594528366427_1639514062140_avatar.png", + "roomTypeName": "電腦遊戲", + "isLottery": 0, + "anchorId": 1639514062140, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1569573983000, + "anchorLabelType": 1, + "labelId": 11, + "labelNameLang": "", + "sort": 420, + "labelName": "技術流", + "type": 4 + }, + { + "timeStamp": 1569573983000, + "anchorLabelType": 1, + "labelId": 8, + "labelNameLang": "", + "sort": 420, + "labelName": "幽默", + "type": 4 + } + ], + "roomSort": 0, + "lcidText": "Tiếng Việt", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "QNT", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/7CCE7B73C8E9CBE2C1CC5D7997D9197A_f1f54039870b56ec6b9db1679ccdf8d0.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/2B489EDAB5F2202622E943C32E86EF6C_b38e40077501fde7604ba12cad4e9cd6.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/F2BA7C08617E45D895FE59BEF4EF3831_da98febc02b1c042dd90b774aff18f15.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639514062140r44b21ec24b2ac6f0e82e688ed31267cb_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1639514062140, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 79438019, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313633393531343036323134307234346232316563323462326163366630653832653638386564333132363763621a0900010a060257531630737531363339353134303632313430723434623231656332346232616336663065383265363838656433313236376362261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313633393531343036323134307234346232316563323462326163366630653832653638386564333132363763627c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c630000017dbaa73d3c7c81180f9001a103e8b103e8c103e8d600e60861707069643d38310b0b1608373934333830313926083739343338303139325f461f9d0b8c980ca80c", + "gameAbbrList": null, + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1066, + "superscriptType": 0, + "anchorCountryCode": "VN", + "fps": null, + "anchorAnnouncement": "✅ DONATE:\n Paypal: https://streamlabs.com/blueb2 \n* https://playerduo.com/quangngoctrinh\n\nLink offer: https://steamcommunity.com/tradeoffer/new/?partner=457474386&token=VjTmUImS\nLink Fb: https://www.facebook.com/bluebvn\nLink Fanpage: https://www.facebook.com/quangngoctri...\nLink Group: https://www.facebook.com/groups/clubq...\nLink Discord: https://discord.gg/7bg2TkE", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201907111562877225213_1639514062140_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201907111562877225213_1639514062140_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201907111562877225226_1639514062140_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "What's up Homies ?", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "qntofficial", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 6684, + "onlineStatus": 0, + "endLiveTime": 1598403724, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 56092595, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201901061546776316027-56092595_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1599512191936, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "AEROWOLF KIDO", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/F1DB228D6F3813442643D8308CDB6AA3_c9668de4cba90edc63ba8d09818d5fb0.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/BAEB9F361A943A9D0CE4EB39CEDA4954_63f3db000f914b518d769f843c056928.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/667ECD636D02A9521B6665FC3E05B824_1d9d80a4a7df45546151b1dccf19aa1d.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512191936rb351b4d9ad63b9765bd38de291fad91c_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1599512191936, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 56092595, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002cb10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d0001029a08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001025b0a0a08000106307375313539393531323139313933367262333531623464396164363362393736356264333864653239316661643931631a0900010a060257531630737531353939353132313931393336726233353162346439616436336239373635626433386465323931666164393163261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531323139313933367262333531623464396164363362393736356264333864653239316661643931637c0b0b1900040a0604373230701c2c30ff4a0105001102d00b56086e656564776d3d30680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b2601303c46005c63000001746a5b23c07c81057b9006a103e8b103e8c103e8d600e60861707069643d38310b0b1608353630393235393526083536303932353935325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "Hi! I am a new streamer of Nimo. Hope you enjoy my livestream and feel free to tap that \"Follow\" button!", + "showScreenshots": null, + "follow": null, + "liveId": 6865091725753862940, + "microPKStatus": 0, + "userId": null, + "roomTheme": "RUSEL MENGOLAH PATCH BARU!", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "kido", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 6567, + "onlineStatus": 0, + "endLiveTime": 1598430012, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 11884028, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599513340263/202007061594039785623_1599513340263_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 1599513340263, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "MoDra", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/140C3C2F20B5D547A4E181842206FBE5_500x280.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/B8714692160BD1DBA082ED0D93901ABB_338x190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/E423BE73521FB8160A4557415D974236_136x76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513340263rc66caa18c80b4735400efea861a47d35_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1599513340263, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 11884028, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f110022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c008000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102810a0a08000106307375313539393531333334303236337263363663616131386338306234373335343030656665613836316134376433351a0900010a0602414c1630737531353939353133333430323633726336366361613138633830623437333534303065666561383631613437643335261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531333334303236337263363663616131386338306234373335343030656665613836316134376433357c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001746a6ca9677c81183a9003a103e8b103e8c103e8d600e60861707069643d38310b0b1608313138383430323826083131383834303238325f4620050b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "Donate:0201714508[กสิกร]ธนพล\n\nCPU:Intel®Core™i9-9900ksM/B:ROGSTRIXZ390-EGAMINGRAM:64.00GBVGA:NVIDIAGeForceRTX2080TiMonitor:BenqXL2546(240Hz)Monitor2:BenqXL2411Z(144Hz)\n\nFacebook : ธนพล สาพะพิพัฒน์พงษ์ \nPage : MoDra\nYoutube : MoDra Official", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201905291559111462700_1599513340263_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201905291559111462700_1599513340263_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201905291559111462700_1599513340263_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865204631747609017, + "microPKStatus": 0, + "userId": null, + "roomTheme": "อะจ้ากกกก", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "modra", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 5710, + "onlineStatus": 0, + "endLiveTime": 1598425486, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 117909682, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/202003161584340023169_1599514396441_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1599514396441, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "pixisye", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/B54FF40C106E4006522424AA8EF6E977_494df88d6a61d7a282cd34b521762461.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/761333E325B2B89EACA3E63F2EC74D44_1ff2b039c69e4252117a7dbfdaffb2e4.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/3435A9070E674C12E66D6C1A42CB986E_941853d7677634fb4e0b0b6c5fc2508d.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599514396441ra36b85a8252413bfc928d8d26c560e98_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599514396441, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 117909682, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531343339363434317261333662383561383235323431336266633932386438643236633536306539381a0900010a060254581630737531353939353134333936343431726133366238356138323532343133626663393238643864323663353630653938261b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386005790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531343339363434317261333662383561383235323431336266633932386438643236633536306539387c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001746a7cc7197c810c5f9006a103e8b103e8c103e8d600e60861707069643d38310b0b16093131373930393638322609313137393039363832325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "IG @shyrnsnts\nLink donate : sociabuzz.com/pixisye/donate\nChannel Youtube : Shyeren San", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201910151571153059286_1599514396441_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201910151571153059286_1599514396441_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201910151571153059286_1599514396441_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865185189716661235, + "microPKStatus": 0, + "userId": null, + "roomTheme": "HALO", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "shyerensan", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 3598, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 1883325243, + "sharpness": null, + "roomType": 30, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201912271577479461933_1939512525499_avatar.png", + "roomTypeName": "我要活下去", + "isLottery": 0, + "anchorId": 1939512525499, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "A3 Sag", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/3B1E5ED53423466423938C24144C51BD_536b289be97350bb51b88ef01d959c81.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/CA9247CB612D19F81B73DEB2F0FFF8D7_cd5242a18fda4f96154cdd33251fde41.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/13EEEC4E6C96A708373A3F02BE6B8359_7f324d7e7ff201cdc5d82edb06b2e21e.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1939512525499r46836b6ca96f1852f502c49972a963d7_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1939512525499, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 1883325243, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f710022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c608000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102870a0a08000106307375313933393531323532353439397234363833366236636139366631383532663530326334393937326139363364371a0900010a060257531630737531393339353132353235343939723436383336623663613936663138353266353032633439393732613936336437261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313933393531323532353439397234363833366236636139366631383532663530326334393937326139363364377c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001c393f482bb7c8124179001a103e8b103e8c103e8d600e60861707069643d38310b0b160a31383833333235323433260a31383833333235323433325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "freefire" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "MX", + "fps": null, + "anchorAnnouncement": "Sigueme en Instagram: @a3sagx", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "VUELVEN LAS CLASFICATORIAS!", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "a3saglive", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 3274, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 38642090, + "sharpness": null, + "roomType": 79, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201907111562862289255_1599514153662_avatar.png", + "roomTypeName": "電腦遊戲", + "isLottery": 0, + "anchorId": 1599514153662, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1569574045000, + "anchorLabelType": 1, + "labelId": 11, + "labelNameLang": "", + "sort": 420, + "labelName": "技術流", + "type": 4 + } + ], + "roomSort": 0, + "lcidText": "Tiếng Việt", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "FunkyM", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/F364C10E4681A4F5FA52CAD3CF7D613B_5dba7a0d7ea5e500ac0f06d2cf87a58a.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/8D5571C79B9F849153CBF070A438AC43_9fbb3648a84a5865cf4f364f5f39bfee.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/7AD6CAF61FD6E8F644AF9AEC43D29AEE_596689b6653f72f2cddc4881104c7817.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599514153662rd763d8fce009d0cd5fa0f621b2a13187_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599514153662, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 38642090, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531343135333636327264373633643866636530303964306364356661306636323162326131333138371a0900010a060257531630737531353939353134313533363632726437363364386663653030396430636435666130663632316232613133313837261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531343135333636327264373633643866636530303964306364356661306636323162326131333138377c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746a7912be7c811ba89003a103e8b103e8c103e8d600e60861707069643d38310b0b1608333836343230393026083338363432303930325f4620630b8c980ca80c", + "gameAbbrList": null, + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1066, + "superscriptType": 0, + "anchorCountryCode": "VN", + "fps": null, + "anchorAnnouncement": "■ Chúc anh em xem stream vui vẻ !!!\n\n■ Lịch Live : 12h - 4h hàng ngày\n\n■ Ủng hộ mình tại : \n\n * https://qr.wescan.vn/Funky\n\n * https://streamlabs.com/funky\n\n * https://playerduo.com/funky", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "FunkyM | Stream là cái duyên", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "funkym", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 2698, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 60263246, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201906131560416780696_1599512687360_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 1599512687360, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "starix", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/6692AE8CA73BC8DE67291082FBB7889B_4c244161642d1c58f87cf2ddbfbf829b.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/D8471B51134BE16AFB1EE69B9C5E20BC_a1c39548ebc87c311cb197fd71753b0b.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/2A1FA5519BF3C64252A21BF5094E26D6_520858d29144445a72b8e1375c03f7d0.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512687360r3b7538628b50dc5856c9bde793f32ac9_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599512687360, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 60263246, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531323638373336307233623735333836323862353064633538353663396264653739336633326163391a0900010a060257531630737531353939353132363837333630723362373533383632386235306463353835366339626465373933663332616339261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531323638373336307233623735333836323862353064633538353663396264653739336633326163397c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746a62b3007c8118069003a103e8b103e8c103e8d600e60861707069643d38310b0b1608363032363332343626083630323633323436325f46205b0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "สวัสดี!ฉันเป็นสตรีมเมอร์รายใหม่หวังว่าทุกคนจะเพลิดเพลินไปกับการLiveStreamของฉันและอย่าลืมที่จะกดปุ่มติดตามเป็นกำลังใจให้กันด้วยนะ!", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201907071562482975888_1599512687360_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201907071562482975888_1599512687360_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201907071562482975895_1599512687360_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "หมอออออออจ๋า", + "anchorSex": 0, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "starix", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 2153, + "onlineStatus": 0, + "endLiveTime": 1598430353, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 1, + "createdTime": null, + "id": 45383103, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201907121562919751502_1599512387843_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1599512387843, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1598431322773, + "anchorLabelType": 2, + "labelId": 15, + "labelNameLang": "", + "sort": 130, + "labelName": "競猜", + "type": 1 + } + ], + "roomSort": 2, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Onic Antimage", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/6EAC450A5F054826E766048B5B73038C_2cb7565636e89d2be91f1b4125395730.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/7570BDC9DF86907BCDE8AC5F9DFFE342_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/79876378D1CFAF5B4160A56E035DDCE9_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599512387843re6fc3b824d373b9bcb81c368c7d61699_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1599512387843, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 45383103, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": "競猜", + "expireLabelIds": [], + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f110022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c008000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102810a0a08000106307375313539393531323338373834337265366663336238323464333733623962636238316333363863376436313639391a0900010a060257531630737531353939353132333837383433726536666333623832346433373362396263623831633336386337643631363939261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531323338373834337265366663336238323464333733623962636238316333363863376436313639397c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001746a5e21037c810c4e9003a103e8b103e8c103e8d600e60861707069643d38310b0b1608343533383331303326083435333833313033325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 3, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "Official Livestream Channel of ONIC AntiMage\nFollow my Instagram: @maxhill.leonardo", + "showScreenshots": null, + "follow": null, + "liveId": 6865206097155693935, + "microPKStatus": 0, + "userId": null, + "roomTheme": "FULL ONIC WAJIB MILITER COKKKK", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "antimage", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1907, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6464669354, + "sharpness": null, + "roomType": 10, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201911031572807529070_2399514356034_avatar.png", + "roomTypeName": "League of Legends", + "isLottery": 0, + "anchorId": 2399514356034, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "Português", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "mandiocaa1", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399514356034r6df8ad8d506c08b29080a7651f5e49b6_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 2399514356034, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 6464669354, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f510022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c408000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102850a0a08000106307375323339393531343335363033347236646638616438643530366330386232393038306137363531663565343962361a0900010a060254581630737532333939353134333536303334723664663861643864353036633038623239303830613736353166356534396236261b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386005790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375323339393531343335363033347236646638616438643530366330386232393038306137363531663565343962367c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c630000022eae3369427c8115fd9006a103e8b103e8c103e8d600e60861707069643d38310b0b160a36343634363639333534260a36343634363639333534325f461f9d0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "lol" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1046, + "superscriptType": 0, + "anchorCountryCode": "BR", + "fps": null, + "anchorAnnouncement": "GRULI GRULI\n\nPra donatar pro papi segue o link:\nhttps://streamlabs.com/mandiocaa/tip\n\nSegue o papi nas redes sociais:\nInsta: https://www.instagram.com/mandiocaalol/?hl=pt-br\nTwitter: https://twitter.com/mandiocaalol\n\nDiscord:\nhttps://discord.gg/VR2RrUN\n\nLink para inscrição do camp de x1 dos subs:\nhttps://docs.google.com/forms/d/e/1FAIpQLSf4SxFmPd5rEE0SgnLB2KAsAGHiD6l0g-gbAzxK0yJcP4suqQ/viewform", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "continuando o unranked ao chal", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "mandioquinha", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1839, + "onlineStatus": 0, + "endLiveTime": 1598404506, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6511265628, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/2399515724630/202006171592373730927_2399515724630_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 2399515724630, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Micaelala", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/1F393C8526AECDB85D3EF6DBF73892DB_2cb7565636e89d2be91f1b4125395730.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/5E9EA503C6BC941DCDD016BCD024F495_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/656D30BFD55D839BA280C602FF8CBDA9_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/backsrc/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515724630rd94dc79182ac027af31391cdcfdd6bb0_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 2399515724630, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 6511265628, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002fb10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102ca08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001028b0a0a08000106307375323339393531353732343633307264393464633739313832616330323761663331333931636463666464366262301a0900010a0602414c1630737532333939353135373234363330726439346463373931383261633032376166333133393163646366646436626230261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375323339393531353732343633307264393464633739313832616330323761663331333931636463666464366262307c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c630000022eae484b567c8110359001a103e8b103e8c103e8d600e60861707069643d38310b0b160a36353131323635363238260a36353131323635363238325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "AR", + "fps": null, + "anchorAnnouncement": "Hola! Venite que empezó la fiesta", + "showScreenshots": null, + "follow": null, + "liveId": 6865095082349102739, + "microPKStatus": 0, + "userId": null, + "roomTheme": "COMIENZO EN LA NIEVE", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "micaelala", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1811, + "onlineStatus": 0, + "endLiveTime": 1598418502, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 4918902, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599517054627/202008181597722817419_1599517054627_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 1599517054627, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "MEYOU", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su1599517054627rcaa69f86376d8ae896be27b5d77af36e.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517054627rcaa69f86376d8ae896be27b5d77af36e_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599517054627, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 4918902, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f110022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c008000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102810a0a08000106307375313539393531373035343632377263616136396638363337366438616538393662653237623564373761663336651a0900010a060257531630737531353939353137303534363237726361613639663836333736643861653839366265323762356437376166333665261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531373035343632377263616136396638363337366438616538393662653237623564373761663336657c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746aa556a37c81182b9003a103e8b103e8c103e8d600e60861707069643d38310b0b160734393138393032260734393138393032325f46205b0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "• ชื่อ Icezy อายุ 18 •\n• FB :Piyada promhong ( พิยะ ดา ) •\n• FP : Ice Piyada \uD83E\uDDF8•", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/202008191597843339930_1599517054627_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/202008191597843339930_1599517054627_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/202008191597843339930_1599517054627_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865155193981157979, + "microPKStatus": 0, + "userId": null, + "roomTheme": "MEYOU", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": null, + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1409, + "onlineStatus": 0, + "endLiveTime": 1598426214, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 77738266, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599513640021/202007271595882369734_1599513640021_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 1599513640021, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "JUNIOR", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/64A6B6D8E31E0E645067CF61A9D10504_e276de31f2ed61e1116fda1a461175d9.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/8B7DDC2A7604FFE52EB30F98AB2D5111_b50dc3fe0c759fa95214e2f52a823a71.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/7F37DA485183ED1B7944495B6A9AFA9B_14acc28ad0e2d4783a5c32c3bcf54320.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599513640021rf1aab3c638203e000b08bcc59ff3361b_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1599513640021, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 77738266, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f110022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c008000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102810a0a08000106307375313539393531333634303032317266316161623363363338323033653030306230386263633539666633333631621a0900010a060257531630737531353939353133363430303231726631616162336336333832303365303030623038626363353966663333363162261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531333634303032317266316161623363363338323033653030306230386263633539666633333631627c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001746a713c557c8114b29003a103e8b103e8c103e8d600e60861707069643d38310b0b1608373737333832363626083737373338323636325f46205b0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "\uD83D\uDC9Aสลัดเองฮ้ะ\uD83D\uDC9A\n------------------------------------\n\uD83D\uDC9AFB : Junior Tanapon\uD83D\uDC9A\n \uD83D\uDC9AYoutube : JUNIOR\uD83D\uDC9A\n------------------------------------\nhttps://www.youtube.com/channel/UCDYGsTQbvva5vTZjGobTRMA", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/202007121594561049048_1599513640021_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/202007121594561049048_1599513640021_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/202007121594561049048_1599513640021_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865188320526927057, + "microPKStatus": 0, + "userId": null, + "roomTheme": "เจ้าจูเนียร์มาแว้ววว", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "junior", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1325, + "onlineStatus": 0, + "endLiveTime": 1598425178, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 170064411, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201904111554970812380_1629512282901_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 1629512282901, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Porto", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/F29300E6C7E741F2C8B70BE187BBA47_e541ea5323a1cc31af8d8bfe214927ba.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/BB158101A11C94088BA1392AAE51D9D_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/9CDE553210CA53AF2633AE3FB5EF7CC0_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1629512282901r2c57f26e42b17e9e8481c8108c6e6696_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1629512282901, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 170064411, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f510022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c408000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102850a0a08000106307375313632393531323238323930317232633537663236653432623137653965383438316338313038633665363639361a0900010a0602414c1630737531363239353132323832393031723263353766323665343262313765396538343831633831303863366536363936261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313632393531323238323930317232633537663236653432623137653965383438316338313038633665363639367c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c630000017b668033157c8117f39003a103e8b103e8c103e8d600e60861707069643d38310b0b16093137303036343431312609313730303634343131325f46205b0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "•Facebookwww.facebook.com/Portornp\n•Fanpagehttps://www.facebook.com/Portobrot/•Youtubehttps://1th.me/Porto", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201905181558188800756_1629512282901_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201905181558188800756_1629512282901_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201905181558188800747_1629512282901_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865183867127515242, + "microPKStatus": 0, + "userId": null, + "roomTheme": "อย่า!!!", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "porto", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1258, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 1, + "createdTime": null, + "id": 526550, + "sharpness": null, + "roomType": 3, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599511699076/202008211598001239886_1599511699076_avatar.png", + "roomTypeName": "絶地求生", + "isLottery": 0, + "anchorId": 1599511699076, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1598431321705, + "anchorLabelType": 2, + "labelId": 15, + "labelNameLang": "", + "sort": 130, + "labelName": "競猜", + "type": 1 + } + ], + "roomSort": 0, + "lcidText": "Tiếng Việt", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "DxG_FerGus", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su1599511699076r2987fe70a9042fd839dea35b0eb78244.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su1599511699076r2987fe70a9042fd839dea35b0eb78244_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su1599511699076r2987fe70a9042fd839dea35b0eb78244_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599511699076r2987fe70a9042fd839dea35b0eb78244_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599511699076, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 526550, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": "競猜", + "expireLabelIds": [], + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "0000030b10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102da08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001029b0a0a08000106307375313539393531313639393037367232393837666537306139303432666438333964656133356230656237383234341a0900010a0602414c1630737531353939353131363939303736723239383766653730613930343266643833396465613335623065623738323434261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375313539393531313639393037367232393837666537306139303432666438333964656133356230656237383234347c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2610313836333737373939343036323033383c46005300069f18a146b8d663000001746a539e8470038115c39001a103e8b103e8c103e8d600e60861707069643d38310b0b16063532363535302606353236353530325f461fcd0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "pubg" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1066, + "superscriptType": 3, + "anchorCountryCode": "SG", + "fps": null, + "anchorAnnouncement": "Link donate or thuê:Playerduo.com/simvc1\nLink FB cá nhân:https://www.facebook.com/SimVC170\nFanpage FB:https://www.facebook.com/NiMo-TV-Simvc1702-563534494059597/?modal=admin_todo_tour", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201905171558054199519_1599511699076_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201905171558054199519_1599511699076_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201905171558054199496_1599511699076_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "DxG_FerGus #PoPesports", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": null, + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1227, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 189781752, + "sharpness": null, + "roomType": 21, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1639516877982/202008171597682665188_1639516877982_avatar.png", + "roomTypeName": "PUBG Mobile", + "isLottery": 0, + "anchorId": 1639516877982, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 2, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "BTR Kyra", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/7835619239C452AA92B0F6E55702E6B2_e4091f4a684a64afff76566655ad9aa4.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/DF90F9E6B7071470ADB426259EF496E6_7ee8ca6ca986414886ba86573bf3de5c.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/B981400524D77C7A4A4CBEC96D48900A_f5c3e6e3b445946433ab5bb96c6365cc.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639516877982r72417f8d9842b2c9507dad6e259a9a19_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1639516877982, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 189781752, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313633393531363837373938327237323431376638643938343262326339353037646164366532353961396131391a0900010a0602414c1630737531363339353136383737393832723732343137663864393834326232633935303764616436653235396139613139261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313633393531363837373938327237323431376638643938343262326339353037646164366532353961396131397c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c630000017dbad2349e7c810a609003a103e8b103e8c103e8d600e60861707069643d38310b0b16093138393738313735322609313839373831373532325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "pubgmobile" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "Hello guysss, welcome!! :)\nAku live hampir setiap hari jam 14.00-18.00 atau jam 22.00-02.00\nJangan lupa follow yaa biar ga ketinggalan live stream aku :D\nThankyou guys <3", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "pabjieh", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": null, + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1169, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 5547720948, + "sharpness": null, + "roomType": 10, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1999513396858/202005091589045319159_1999513396858_avatar.png", + "roomTypeName": "League of Legends", + "isLottery": 0, + "anchorId": 1999513396858, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Türkçe", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Oguz Aslan", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/2958B342EF5D3878539EE89874E21E6A_edd0efeef1b36c38bdce5741ef06392c.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/44D84809B7DE0B43BD9CEA932B1250FF_436714b917a18232b42dfd799c1da418.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/96EDF1D0EE93BFABAA7C2130ECF87BC7_390cd719ba043443ceba21d847b40b6f.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1999513396858r0361c24cd5afd9973a8aec71938bcd51_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1999513396858, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 5547720948, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002cf10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d0001029e08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001025f0a0a08000106307375313939393531333339363835387230333631633234636435616664393937336138616563373139333862636435311a0900010a060257531630737531393939353133333936383538723033363163323463643561666439393733613861656337313933386263643531261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313939393531333339363835387230333631633234636435616664393937336138616563373139333862636435317c0b0b1900040a0604373230701c2c30ff4a0105001102d00b56086e656564776d3d30680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b2601303c46005c63000001d18c49267a7c8108ae9001a103e8b103e8c103e8d600e60861707069643d38310b0b160a35353437373230393438260a35353437373230393438325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "lol" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1055, + "superscriptType": 0, + "anchorCountryCode": "TR", + "fps": null, + "anchorAnnouncement": "Merhaba, ben Oğuz Aslan sizi efsane bir yayın bekliyor takipte kalın ve maceranın tadını çıkarın", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "sabah lolü", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "oguzaslan", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1090, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 5071172470, + "sharpness": null, + "roomType": 21, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/2039513721969/202008211598023381311_2039513721969_avatar.png", + "roomTypeName": "PUBG Mobile", + "isLottery": 0, + "anchorId": 2039513721969, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "Türkçe", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Kadir Çakmak", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2039513721969r72c711eb72df939125091407b524ac42.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2039513721969r72c711eb72df939125091407b524ac42_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2039513721969r72c711eb72df939125091407b524ac42_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2039513721969r72c711eb72df939125091407b524ac42_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2039513721969r72c711eb72df939125091407b524ac42_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 2039513721969, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 5071172470, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002fb10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102ca08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001028b0a0a08000106307375323033393531333732313936397237326337313165623732646639333931323530393134303762353234616334321a0900010a0602414c1630737532303339353133373231393639723732633731316562373264663933393132353039313430376235323461633432261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375323033393531333732313936397237326337313165623732646639333931323530393134303762353234616334327c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001dadc7dac717c810f7d9006a103e8b103e8c103e8d600e60861707069643d38310b0b160a35303731313732343730260a35303731313732343730325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "pubgmobile" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1055, + "superscriptType": 0, + "anchorCountryCode": "TR", + "fps": null, + "anchorAnnouncement": "Merhaba! Ben Kadir Çakmak Nimo TV'daki yeni bir yayıncıyım. Umarım benim kanalımın tadını çıkarır ve bu \"Takip et\" düğmesine tıklamakta özgürsünüz!", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "FURY DELYKADİR SABAH YARGISI !", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "kadircakmak", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 0, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1061, + "onlineStatus": 0, + "endLiveTime": 1598427614, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 1, + "createdTime": null, + "id": 87052500, + "sharpness": null, + "roomType": 10, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599517046720/202007291595994304043_1599517046720_avatar.png", + "roomTypeName": "League of Legends", + "isLottery": 0, + "anchorId": 1599517046720, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1598431324516, + "anchorLabelType": 2, + "labelId": 15, + "labelNameLang": "", + "sort": 130, + "labelName": "競猜", + "type": 1 + } + ], + "roomSort": 0, + "lcidText": "Tiếng Việt", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "gaybestleesin", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/DFDFCEDEECB5C2756800940C61FC1978_2cb7565636e89d2be91f1b4125395730.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/91A8588CCDB122084833ACFC17BA6BED_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/8F5EC43FB249F757F12E497291463561_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599517046720rf319020d9cd5c339a0118107e9bbb8dd_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599517046720, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 87052500, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": "競猜", + "expireLabelIds": [], + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531373034363732307266333139303230643963643563333339613031313831303765396262623864641a0900010a0602414c1630737531353939353137303436373230726633313930323064396364356333333961303131383130376539626262386464261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531373034363732307266333139303230643963643563333339613031313831303765396262623864647c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746aa537c07c8118699003a103e8b103e8c103e8d600e60861707069643d38310b0b1608383730353235303026083837303532353030325f461f9d0b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "lol" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1066, + "superscriptType": 3, + "anchorCountryCode": "VN", + "fps": null, + "anchorAnnouncement": "Hello các bạn mình là Gầy đây hihiihihi !\nDonate cho mình tại : https://playerduo.com/gaybestleesin", + "showScreenshots": null, + "follow": null, + "liveId": 0, + "microPKStatus": 0, + "userId": null, + "roomTheme": "Gầy Best leesin", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "gaybestleesin", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 1024, + "onlineStatus": 0, + "endLiveTime": 1598418008, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6046224575, + "sharpness": null, + "roomType": 9, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/202004091586427775644_2449511675549_avatar.png", + "roomTypeName": "GTA5", + "isLottery": 0, + "anchorId": 2449511675549, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "rayitoo", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2449511675549rede6329d2b1d1f522310fa415ca608cf.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2449511675549rede6329d2b1d1f522310fa415ca608cf_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2449511675549rede6329d2b1d1f522310fa415ca608cf_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2449511675549rede6329d2b1d1f522310fa415ca608cf_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 2449511675549, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 6046224575, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002fb10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102ca08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001028b0a0a08000106307375323434393531313637353534397265646536333239643262316431663532323331306661343135636136303863661a0900010a0602414c1630737532343439353131363735353439726564653633323964326231643166353232333130666134313563613630386366261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375323434393531313637353534397265646536333239643262316431663532323331306661343135636136303863667c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c630000023a5245f69d7c810ad29001a103e8b103e8c103e8d600e60861707069643d38310b0b160a36303436323234353735260a36303436323234353735325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "gta5" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "AR", + "fps": null, + "anchorAnnouncement": "instagram: rayogovir", + "showScreenshots": null, + "follow": null, + "liveId": 6865153072090206814, + "microPKStatus": 0, + "userId": null, + "roomTheme": "GTA DOVUX", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "rayitoo", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 0, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 994, + "onlineStatus": 0, + "endLiveTime": 1598412200, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6297374112, + "sharpness": null, + "roomType": 30, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/202003311585614230831_2439514083187_avatar.png", + "roomTypeName": "我要活下去", + "isLottery": 0, + "anchorId": 2439514083187, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "Português", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "INTZ BRANCA", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2439514083187rd44cdb00c2ea111d5ade7acffabbe143_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 2439514083187, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 6297374112, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f710022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c608000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102870a0a08000106307375323433393531343038333138377264343463646230306332656131313164356164653761636666616262653134331a0900010a060254581630737532343339353134303833313837726434346364623030633265613131316435616465376163666661626265313433261b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386005790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375323433393531343038333138377264343463646230306332656131313164356164653761636666616262653134337c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c6300000237fe5ecf737c81224f9006a103e8b103e8c103e8d600e60861707069643d38310b0b160a36323937333734313132260a36323937333734313132325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "freefire" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1046, + "superscriptType": 0, + "anchorCountryCode": "BR", + "fps": null, + "anchorAnnouncement": "Oi galera, bem vindos! ❤\n\nSou a Branca, Jogadora Profissional de Free Fire pela INTZ.\n\nLives todos os dias, entre 00h ~ 05h.\n\nInstagram: @brancatv\nYoutube: Branca TV\nDiscord: https://discord.gg/XWs63CQ", + "showScreenshots": null, + "follow": null, + "liveId": 6865128132287610643, + "microPKStatus": 0, + "userId": null, + "roomTheme": "X1 DOS CRIAS, BORA", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "brancatv", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 978, + "onlineStatus": 0, + "endLiveTime": 1598430480, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 2507703, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1639517185272/202007141594706842295_1639517185272_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1639517185272, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1598431326173, + "anchorLabelType": 3, + "labelId": 83, + "labelNameLang": "", + "sort": 210, + "labelName": "Kimmy", + "type": 2 + } + ], + "roomSort": 0, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "S A N Z", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/D6ACF66BCDE4D2CF3B5DC6643BD6A89B_2cb7565636e89d2be91f1b4125395730.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/16810EE9116F433F3685E5719B827E12_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/F13C1320BBD497BC5F0A7DB6A8468525_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1639517185272rc346f7e84185bed9527154d2a48f45b9_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1639517185272, + "bIfLiveInter": true, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 2507703, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": [], + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002c910022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d0001029808000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102590a0a08000106307375313633393531373138353237327263333436663765383431383562656439353237313534643261343866343562391a0900010a0602414c1630737531363339353137313835323732726333343666376538343138356265643935323731353464326134386634356239261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313633393531373138353237327263333436663765383431383562656439353237313534643261343866343562397c0b0b1900040a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701c2c30ff4a0105001102d00b56086e656564776d3d30680c7601320b2601303c46005c630000017dbad6e4f87c81074e9003a103e8b103e8c103e8d600e60861707069643d38310b0b160732353037373033260732353037373033325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "Hi! I am a new streamer of Nimo. Hope you enjoy my livestream and feel free to tap that \"Follow\" button!", + "showScreenshots": null, + "follow": null, + "liveId": 0, + "microPKStatus": 0, + "userId": null, + "roomTheme": "EHH UPSSSS", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": null, + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 910, + "onlineStatus": 0, + "endLiveTime": 1598409073, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 6471220485, + "sharpness": null, + "roomType": 176, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/2399515571431/202007191595155595008_2399515571431_avatar.png", + "roomTypeName": "Just chatting", + "isLottery": 0, + "anchorId": 2399515571431, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Medusa", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2399515571431r830b6cc9f9eaef649b00dc707866b584.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2399515571431r830b6cc9f9eaef649b00dc707866b584_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2399515571431r830b6cc9f9eaef649b00dc707866b584_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2399515571431r830b6cc9f9eaef649b00dc707866b584_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 2399515571431, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 6471220485, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002cf10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d0001029e08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001025f0a0a08000106307375323339393531353537313433317238333062366363396639656165663634396230306463373037383636623538341a0900010a060257531630737532333939353135353731343331723833306236636339663965616566363439623030646337303738363662353834261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce019f00f19f01019f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375323339393531353537313433317238333062366363396639656165663634396230306463373037383636623538347c0b0b1900040a0604373230701c2c30ff4a0105001102d00b56086e656564776d3d30680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b2601303c46005c630000022eae45f4e77c81082a9006a103e8b103e8c103e8d600e60861707069643d38310b0b160a36343731323230343835260a36343731323230343835325f461f9d0b8c980ca80c", + "gameAbbrList": null, + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "AR", + "fps": null, + "anchorAnnouncement": "Hola chinchulinnnn estoy on♥ pasate", + "showScreenshots": null, + "follow": null, + "liveId": 6865114694762352955, + "microPKStatus": 0, + "userId": null, + "roomTheme": "que pasaaa padre", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "medusa", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 899, + "onlineStatus": 0, + "endLiveTime": 1598418607, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 39002863, + "sharpness": null, + "roomType": 30, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/201906081559988405517_1639513614298_avatar.png", + "roomTypeName": "我要活下去", + "isLottery": 0, + "anchorId": 1639513614298, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Español ", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Ronsito IUTU", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su1639513614298r79cc5e7edf976aa9c25fd939beae180a.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639513614298r79cc5e7edf976aa9c25fd939beae180a_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1639513614298, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 39002863, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313633393531333631343239387237396363356537656466393736616139633235666439333962656165313830611a0900010a060254581630737531363339353133363134323938723739636335653765646639373661613963323566643933396265616531383061261b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386005790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f74782e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f74782e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313633393531333631343239387237396363356537656466393736616139633235666439333962656165313830617c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c630000017dbaa067da7c811a309006a103e8b103e8c103e8d600e60861707069643d38310b0b1608333930303238363326083339303032383633325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "freefire" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1034, + "superscriptType": 0, + "anchorCountryCode": "CO", + "fps": null, + "anchorAnnouncement": "bienvenidos \n\nINSTAGRAM: Ron_sito\nYOUTUBE: RonsitoIUTU\nDISCORD: https://discord.gg/ghy7fUf", + "showScreenshots": [ + { + "key": 1, + "url": "https://server-cover-prod.nimostatic.tv/201906181560900407307_1639513614298_cover.png?t=1598431320000" + }, + { + "key": 2, + "url": "https://server-cover-prod.nimostatic.tv/201906181560900407307_1639513614298_cover.png?t=1598431320000" + }, + { + "key": 3, + "url": "https://server-cover-prod.nimostatic.tv/201906181560900407261_1639513614298_cover.png?t=1598431320000" + } + ], + "follow": null, + "liveId": 6865155646921936842, + "microPKStatus": 0, + "userId": null, + "roomTheme": "HOLA BROS", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "ronsitoyt", + "businessType": 1 + }, + { + "authenticatedAnchor": 1, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 859, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 522143336, + "sharpness": null, + "roomType": 25, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/202004131586772912270_1639512602399_avatar.png", + "roomTypeName": "无尽对决", + "isLottery": 0, + "anchorId": 1639512602399, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 2, + "lcidText": "Bahasa Indonesia", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "BTR Branz", + "roomScreenshots": [ + { + "key": 1, + "url": "https://web-ops.nimostatic.tv/banner/E2A472075E780ACCEC4601D3B1531EF3_2cb7565636e89d2be91f1b4125395730.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://web-ops.nimostatic.tv/banner/CE9D4D905CC27E278CB3CDD5EBAEC040_f04d7dc22b192665f1b367a5504e20f7.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://web-ops.nimostatic.tv/banner/6CBF2F7FD12A6D63E79DB1E036B82DB0_5575db9aaa1d6648d67bd593ff973e64.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su1639512602399r9fd08d553742320840a095333d5ec42d_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 1639512602399, + "bIfLiveInter": true, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 522143336, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002cd10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d0001029c08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001025d0a0a08000106307375313633393531323630323339397239666430386435353337343233323038343061303935333333643565633432641a0900010a060257531630737531363339353132363032333939723966643038643535333734323332303834306130393533333364356563343264261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313633393531323630323339397239666430386435353337343233323038343061303935333333643565633432647c0b0b1900040a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701c2c30ff4a0105001102d00b56086e656564776d3d30680c7601320b2601303c46005c630000017dba90f71f7c8102f69001a103e8b103e8c103e8d600e60861707069643d38310b0b16093532323134333333362609353232313433333336325f4620630b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1057, + "superscriptType": 0, + "anchorCountryCode": "ID", + "fps": null, + "anchorAnnouncement": "Mobile Legends player of Bigetron Esports\n\nIG: @btr_branz\nYT: Branz", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "JADI STREAMER AJA", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "branz", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 851, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 47348472, + "sharpness": null, + "roomType": 51, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/202004111586589853140_1599515507791_avatar.png", + "roomTypeName": "腐蚀", + "isLottery": 0, + "anchorId": 1599515507791, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 0, + "lcidText": "ไทย", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "GEUM", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599515507791r1ede01c67fe148793dd1fa50a7cfc0ce_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599515507791, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 47348472, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531353530373739317231656465303163363766653134383739336464316661353061376366633063651a0900010a0602414c1630737531353939353135353037373931723165646530316336376665313438373933646431666135306137636663306365261b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386003790c8c9600a6062e736c696365bcccd90ce064f00f64f01064f61100f81200020603666c761a0603666c76161b687474703a2f2f616c2e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f616c2e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531353530373739317231656465303163363766653134383739336464316661353061376366633063657c0b0b1900050a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746a8dbc4f7c8117fb9003a103e8b103e8c103e8d600e60861707069643d38310b0b1608343733343834373226083437333438343732325f461f9d0b8c980ca80c", + "gameAbbrList": null, + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1054, + "superscriptType": 0, + "anchorCountryCode": "TH", + "fps": null, + "anchorAnnouncement": "\uD83C\uDF1F Facebook ➡ Jack jazper\n\nPC Spec \uD83D\uDDA5 สเปคคอม\n\uD83D\uDCA2 CPU : Intel i9 9900K\n\uD83D\uDCA2 MB : ASUS Z390-A \n\uD83D\uDCA2 Memory : G.skill tridentz RGB DDR4 32 GB\n\uD83D\uDCA2 SSD : SAMSUNG 960 EVO M.2 500 GB\n\uD83D\uDCA2 GPU : ASUS Geforce GTX 1080 TI OC\n\uD83D\uDCA2 Mornitor : Predator 240hz \" 24.5 \"", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "กึ่ม - รัชดา !!", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": null, + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": 1, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 850, + "onlineStatus": 0, + "endLiveTime": 1598420223, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 1, + "createdTime": null, + "id": 42248746, + "sharpness": null, + "roomType": 249, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/1599516503052/202007161594898924507_1599516503052_avatar.png", + "roomTypeName": "聯盟戰棋", + "isLottery": 0, + "anchorId": 1599516503052, + "version": null, + "fanCount": null, + "anchorLabels": [ + { + "timeStamp": 1598431322056, + "anchorLabelType": 2, + "labelId": 15, + "labelNameLang": "", + "sort": 130, + "labelName": "競猜", + "type": 1 + } + ], + "roomSort": 0, + "lcidText": "Tiếng Việt", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "TG Green", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su1599516503052rf4392203acda08a89be56b186da47b86.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su1599516503052rf4392203acda08a89be56b186da47b86_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su1599516503052rf4392203acda08a89be56b186da47b86_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_veryhigh.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_high.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_low.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + }, + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su1599516503052rf4392203acda08a89be56b186da47b86_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1920, + "lUid": 1599516503052, + "bIfLiveInter": false, + "iHeight": 1080, + "iBusinessType": 1, + "lRoomId": 42248746, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": "競猜", + "expireLabelIds": [], + "isDeleted": 0, + "bitRate": null, + "mStreamPkg": "000002f310022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102c208000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d000102830a0a08000106307375313539393531363530333035327266343339323230336163646130386138396265353662313836646134376238361a0900010a060257531630737531353939353136353033303532726634333932323033616364613038613839626535366231383664613437623836261b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f36042e666c76461b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f56052e6d3375386001790c8c9600a6062e736c696365bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161b687474703a2f2f77732e666c762e6e696d6f2e74762f6c6976652f26042e666c76390c4001506466007c0b0603686c731a0603686c73161b687474703a2f2f77732e686c732e6e696d6f2e74762f6c6976652f26052e6d337538390c40015c663369643d7375313539393531363530333035327266343339323230336163646130386138396265353662313836646134376238367c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701117702c30ff4a0107801104380b56086e656564776d3d31680c7601360b2601303c46005c63000001746a9cec0c7c811f249003a103e8b103e8c103e8d600e60861707069643d38310b0b1608343232343837343626083432323438373436325f461f9d0b8c980ca80c", + "gameAbbrList": null, + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1066, + "superscriptType": 3, + "anchorCountryCode": "VN", + "fps": null, + "anchorAnnouncement": "TG Green: Lịch live từ 12:30 - 16:30 Hằng ngày\n_____________\nDonate cho Green tại:\n057704060121100 VIB Nguyễn Đình Thành \nhttps://playerduo.com/tggreen\n https://qr.wescan.vn/tggreen\nMomo: 0983554641\n_____________\nGroup team: https://www.facebook.com/groups/DTCLToGaming/\nDiscord team: https://discord.gg/EMpsTaw\nFacebook cá nhân : https://www.facebook.com/l3ankl30\n#TG #ToGaming #DTCL #TFT #TGGreen", + "showScreenshots": null, + "follow": null, + "liveId": 6865162585380335040, + "microPKStatus": 0, + "userId": null, + "roomTheme": "TRY HARD RANK TĐ ĐTCL", + "anchorSex": 1, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "tggreen", + "businessType": 1 + }, + { + "authenticatedAnchor": 0, + "templateType": null, + "avatarBoxUrl": null, + "eventRoomListView": null, + "viewerNum": 843, + "onlineStatus": 0, + "endLiveTime": null, + "anchorScreenshots": null, + "backgroundImg": null, + "isGuessing": 0, + "createdTime": null, + "id": 5361637521, + "sharpness": null, + "roomType": 21, + "eventId": null, + "updatedTime": null, + "headImg": null, + "anchorAvatarUrl": "https://server-avatar.nimostatic.tv/2029517878589/202007111594466120366_2029517878589_avatar.png", + "roomTypeName": "PUBG Mobile", + "isLottery": 0, + "anchorId": 2029517878589, + "version": null, + "fanCount": null, + "anchorLabels": null, + "roomSort": 3, + "lcidText": "Türkçe", + "roomNumbering": null, + "teamRoomViews": null, + "description": null, + "title": null, + "viewerNumRef": null, + "anchorName": "Bahar Zünbül", + "roomScreenshots": [ + { + "key": 1, + "url": "https://txpic.vod.nimo.tv/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.jpg?t=1598431320000" + }, + { + "key": 2, + "url": "https://txpic.vod.nimo.tv/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_338_190.jpg?t=1598431320000" + }, + { + "key": 3, + "url": "https://txpic.vod.nimo.tv/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_136_76.jpg?t=1598431320000" + } + ], + "platform": null, + "roomLineInfo": { + "vCodeLines": [], + "vCodeLines2": [ + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f/playlist.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.flv?needwm=0" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.m3u8?needwm=0" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 6000, + "iNameCode": 6 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_high.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 2000, + "iNameCode": 2 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_mid.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 1000, + "iNameCode": 3 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_low.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 500, + "iNameCode": 4 + }, + { + "vCdns": [ + { + "iCdnType": 1, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://ws.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://ws.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow/playlist.m3u8" + } + ], + "iCdnTypeHY": 1 + }, + { + "iCdnType": 2, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://tx.flv.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://tx.hls.nimo.tv/live/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow.m3u8" + } + ], + "iCdnTypeHY": 5 + }, + { + "iCdnType": 3, + "vCdnUrls": [ + { + "imediaType": 1, + "smediaUrl": "http://al.flv.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow.flv" + }, + { + "imediaType": 2, + "smediaUrl": "http://al.hls.nimo.tv/backsrc/su2029517878589re0a8173bb45d4974afc5db0d68cb043f_verylow.m3u8" + } + ], + "iCdnTypeHY": 3 + } + ], + "iBitRate": 250, + "iNameCode": 5 + } + ], + "iWidth": 1280, + "lUid": 2029517878589, + "bIfLiveInter": false, + "iHeight": 720, + "iBusinessType": 1, + "lRoomId": 5361637521, + "mLineInfo": {}, + "iRecommendCode": 3 + }, + "superscriptText": null, + "expireLabelIds": null, + "isDeleted": null, + "bitRate": null, + "mStreamPkg": "000002fb10022c3c4c56074d656469615549661367657453747265616d496e666f4279526f6f6d7d000102ca08000206001800010605696e7433321d0000010c060474527370180001061b485559412e47657453747265616d496e666f4279526f6f6d5273701d0001028b0a0a08000106307375323032393531373837383538397265306138313733626234356434393734616663356462306436386362303433661a0900010a0602414c1630737532303239353137383738353839726530613831373362623435643439373461666335646230643638636230343366261e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f36042e666c76461e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f56052e6d3375386003790c8c9600a600bcccd90ce032f00f32f01032f61100f81200020603666c761a0603666c76161e687474703a2f2f616c2e666c762e6e696d6f2e74762f6261636b7372632f26042e666c76390c4001506466007c0b0603686c731a0603686c73161e687474703a2f2f616c2e686c732e6e696d6f2e74762f6261636b7372632f26052e6d337538390c40015c663369643d7375323032393531373837383538397265306138313733626234356434393734616663356462306436386362303433667c0b0b1900050a0604323430701100fa2c30ff4a0101451100f00b56086e656564776d3d31680c7601350b0a0604333630701101f42c30ff4a0101e01101680b56086e656564776d3d31680c7601340b0a0604343830701103e82c30ff4a01035a1101e00b56086e656564776d3d31680c7601330b0a0604373230701109c42c30ff4a0105001102d00b56086e656564776d3d31680c7601320b0a060531303830701c2c30ff4a0107801104380b56086e656564776d3d30680c7601360b2601303c46005c63000001d888b1353d7c810a669001a103e8b103e8c103e8d600e60861707069643d38310b0b160a35333631363337353231260a35333631363337353231325f461fe30b8c980ca80c", + "gameAbbrList": [ + { + "langId": 1033, + "value": "pubgmobile" + } + ], + "nextLiveNoticeTimestamp": null, + "isPlayback": 0, + "starLiveRoomView": null, + "lcid": 1055, + "superscriptType": 0, + "anchorCountryCode": "TR", + "fps": null, + "anchorAnnouncement": "Herkese selamlar ben Bahar,\nGiderek büyüyen ‘’DNY’’ ailesine katılmak için doğru yerdesin.İyiliğe, güzelliğe dair her muhabbete eşlik edip, bizimle oyun oynayarak ödüller kazanabilirsin..\nHer gün sabah 10:00 ve akşam 18:00 de biz buradayız.\nSende iyi ki burdasın. \uD83C\uDF38\nDiscord \nhttps://discord.gg/dWZMTDS\nYoutube \nhttps://www.youtube.com/channel/UCmZDJEOtgDImfTAAf2OBjcQ?view_as=subscriber\nİnstagram\nbahar.zunbul", + "showScreenshots": null, + "follow": null, + "liveId": null, + "microPKStatus": 0, + "userId": null, + "roomTheme": "Yeni M24 Çarkı çeviriyoruz..", + "anchorSex": 2, + "coverLabels": null, + "liveStreamStatus": 1, + "viewerScore": null, + "teamId": null, + "alise": "baharzunbul", + "businessType": 1 + } + ], + "gameEntityList": [ + { + "gameId": 10, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"League of Legends\",\"langId\":1025},{\"value\":\"League of Legends\",\"langId\":1028},{\"value\":\"League of Legends\",\"langId\":1033},{\"value\":\"League of Legends\",\"langId\":1034},{\"value\":\"リーグオブレジェンド\",\"langId\":1041},{\"value\":\"League of Legends\",\"langId\":1046},{\"value\":\"League of Legends\",\"langId\":1049},{\"value\":\"League of Legends\",\"langId\":1054},{\"value\":\"League of Legends\",\"langId\":1055},{\"value\":\"League of Legends\",\"langId\":1057},{\"value\":\"Liên Minh Huyền Thoại\",\"langId\":1066},{\"value\":\"League of Legends\",\"langId\":1081},{\"value\":\"League of Legends\",\"langId\":1086},{\"value\":\"League of Legends\",\"langId\":1124}]", + "updateTime": null, + "type": 2, + "platform": 2, + "gameName": "League of Legends", + "liveOnNumber": null, + "pos": 1, + "name": "League of Legends", + "logo": "https://web-ops.nimostatic.tv/banner/8689359D3F5D4F06BFB28D78900287C_8689359D3F5D4F06BFB28D78900287C_lolX.jpg", + "gameAbbrList": [ + { + "langId": 1033, + "value": "lol" + } + ], + "id": 136, + "businessType": null + }, + { + "gameId": 32, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"爐石戰記\",\"langId\":1028},{\"value\":\"Hearthstone\",\"langId\":1033},{\"value\":\"Hearthstone\",\"langId\":1034},{\"value\":\"ハースストーン\",\"langId\":1041},{\"value\":\"Hearthstone\",\"langId\":1046},{\"value\":\"Hearthstone\",\"langId\":1054},{\"value\":\"Hearthstone\",\"langId\":1057},{\"value\":\"Hearthstone\",\"langId\":1066},{\"value\":\"Hearthstone\",\"langId\":1081},{\"value\":\"Hearthstone\",\"langId\":1086},{\"value\":\"Hearthstone\",\"langId\":1124}]", + "updateTime": null, + "type": 2, + "platform": 2, + "gameName": "爐石戰記", + "liveOnNumber": null, + "pos": 2, + "name": "爐石戰記", + "logo": "https://web-ops.nimostatic.tv/banner/95E85B748B7BF84FB25528A83697654A_95E85B748B7BF84FB25528A83697654A_Hearthstone.jpg", + "gameAbbrList": [ + { + "langId": 1033, + "value": "hearthstone" + } + ], + "id": 137, + "businessType": null + }, + { + "gameId": 208, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"في الهواء الطلق\",\"langId\":1025},{\"value\":\"户外\",\"langId\":1028},{\"value\":\"Outdoor\",\"langId\":1033},{\"value\":\"Al aire libre\",\"langId\":1034},{\"value\":\"Ao ar livre\",\"langId\":1046},{\"value\":\"на открытом воздухе\",\"langId\":1049},{\"value\":\"กลางแจ้ง\",\"langId\":1054},{\"value\":\"açık\",\"langId\":1055},{\"value\":\"Di luar\",\"langId\":1057},{\"value\":\"Ngoài trời\",\"langId\":1066},{\"value\":\"घर के बाहर\",\"langId\":1081},{\"value\":\"Luar\",\"langId\":1086},{\"value\":\"Panlabas\",\"langId\":1124}]", + "updateTime": null, + "type": 3, + "platform": 2, + "gameName": "户外", + "liveOnNumber": null, + "pos": 3, + "name": "户外", + "logo": "https://web-ops.nimostatic.tv/banner/BF155E297933B2B69E892F5953A94DE3_BF155E297933B2B69E892F5953A94DE3_huwai.png", + "gameAbbrList": null, + "id": 138, + "businessType": null + }, + { + "gameId": 209, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"لعبة المضيف\",\"langId\":1025},{\"value\":\"主機遊戲\",\"langId\":1028},{\"value\":\"Host game\",\"langId\":1033},{\"value\":\"Juego anfitrión\",\"langId\":1034},{\"value\":\"ホストゲーム\",\"langId\":1041},{\"value\":\"Jogo host\",\"langId\":1046},{\"value\":\"Хост игра\",\"langId\":1049},{\"value\":\"เกมโฮสต์\",\"langId\":1054},{\"value\":\"Ev sahibi oyunu\",\"langId\":1055},{\"value\":\"Game tuan rumah\",\"langId\":1057},{\"value\":\"Trò chơi máy chủ\",\"langId\":1066},{\"value\":\"मेजबान खेल\",\"langId\":1081},{\"value\":\"Permainan hos\",\"langId\":1086},{\"value\":\"Host game\",\"langId\":1124}]", + "updateTime": null, + "type": 2, + "platform": 2, + "gameName": "主機遊戲", + "liveOnNumber": null, + "pos": 4, + "name": "主機遊戲", + "logo": "https://web-ops.nimostatic.tv/banner/308806D3D62B1C53D4160E54B419BA90_308806D3D62B1C53D4160E54B419BA90_312468.png", + "gameAbbrList": null, + "id": 139, + "businessType": null + }, + { + "gameId": 210, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"جمال\",\"langId\":1025},{\"value\":\"顏值\",\"langId\":1028},{\"value\":\"Beauty\",\"langId\":1033},{\"value\":\"Belleza\",\"langId\":1034},{\"value\":\"Beleza\",\"langId\":1046},{\"value\":\"красота\",\"langId\":1049},{\"value\":\"ความงาม\",\"langId\":1054},{\"value\":\"Güzellik\",\"langId\":1055},{\"value\":\"Keindahan\",\"langId\":1057},{\"value\":\"sắc đẹp, vẻ đẹp\",\"langId\":1066},{\"value\":\"सुंदरता\",\"langId\":1081},{\"value\":\"Kecantikan\",\"langId\":1086},{\"value\":\"Kagandahan\",\"langId\":1124}]", + "updateTime": null, + "type": 3, + "platform": 2, + "gameName": "顏值", + "liveOnNumber": null, + "pos": 5, + "name": "顏值", + "logo": "https://web-ops.nimostatic.tv/banner/329B1500F7244A46A16FA977CC3840B2_329B1500F7244A46A16FA977CC3840B2_312468.png", + "gameAbbrList": null, + "id": 140, + "businessType": null + }, + { + "gameId": 169, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"Speed Drifters\",\"langId\":1025},{\"value\":\"極速領域\",\"langId\":1028},{\"value\":\"Speed Drifters\",\"langId\":1033},{\"value\":\"Speed Drifters\",\"langId\":1034},{\"value\":\"Speed Drifters\",\"langId\":1041},{\"value\":\"Speed Drifters\",\"langId\":1046},{\"value\":\"Speed Drifters\",\"langId\":1049},{\"value\":\"Speed Drifters\",\"langId\":1054},{\"value\":\"Speed Drifters\",\"langId\":1055},{\"value\":\"Speed Drifters\",\"langId\":1057},{\"value\":\"Speed Drifters\",\"langId\":1066},{\"value\":\"Speed Drifters\",\"langId\":1081},{\"value\":\"Speed Drifters\",\"langId\":1086},{\"value\":\"Speed Drifters\",\"langId\":1124}]", + "updateTime": null, + "type": 1, + "platform": 2, + "gameName": "極速領域", + "liveOnNumber": null, + "pos": 6, + "name": "極速領域", + "logo": "https://web-ops.nimostatic.tv/banner/958840DD11959FD5B111B4F950FCB1B2_123.webp", + "gameAbbrList": null, + "id": 141, + "businessType": null + }, + { + "gameId": 185, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"Liveshow\",\"langId\":1025},{\"value\":\"星秀\",\"langId\":1028},{\"value\":\"Liveshow\",\"langId\":1033},{\"value\":\"Lifestyle\",\"langId\":1034},{\"value\":\"エンタテイメント\",\"langId\":1041},{\"value\":\"Lifestyle\",\"langId\":1046},{\"value\":\"Прямая трансляция\",\"langId\":1049},{\"value\":\"Life Style\",\"langId\":1054},{\"value\":\"Show&Sohbet!\",\"langId\":1055},{\"value\":\"Live Show\",\"langId\":1057},{\"value\":\"The Nimo Show\",\"langId\":1066},{\"value\":\"Show Time\",\"langId\":1081},{\"value\":\"Liveshow\",\"langId\":1086},{\"value\":\"HOHOL\",\"langId\":1124}]", + "updateTime": null, + "type": 3, + "platform": 2, + "gameName": "星秀", + "liveOnNumber": null, + "pos": 7, + "name": "星秀", + "logo": "https://web-ops.nimostatic.tv/banner/C729D8401FDAC50C9F7A190133AC15D8_C729D8401FDAC50C9F7A190133AC15D8_312468.jpg", + "gameAbbrList": null, + "id": 142, + "businessType": null + }, + { + "gameId": 25, + "templateType": 1, + "clientId": 0, + "clientName": null, + "nameLang": "[{\"value\":\"Mobile Legends\",\"langId\":1025},{\"value\":\"无尽对决\",\"langId\":1028},{\"value\":\"Mobile Legends\",\"langId\":1033},{\"value\":\"Mobile Legends\",\"langId\":1034},{\"value\":\"モバイルレジェンド\",\"langId\":1041},{\"value\":\"Mobile Legends\",\"langId\":1046},{\"value\":\"Mobile Legends\",\"langId\":1049},{\"value\":\"Mobile Legends\",\"langId\":1054},{\"value\":\"Mobile Legends\",\"langId\":1055},{\"value\":\"Mobile Legends\",\"langId\":1057},{\"value\":\"Mobile Legends\",\"langId\":1066},{\"value\":\"Mobile Legends\",\"langId\":1081},{\"value\":\"Mobile Legends\",\"langId\":1086},{\"value\":\"Mobile Legends\",\"langId\":1124}]", + "updateTime": null, + "type": 1, + "platform": 2, + "gameName": "无尽对决", + "liveOnNumber": null, + "pos": 1, + "name": "无尽对决", + "logo": "https://web-ops.nimostatic.tv/banner/8057713FBF57F89AC21299AF3711720E_Mobilelegends.jpg", + "gameAbbrList": [ + { + "langId": 1033, + "value": "mlbb" + } + ], + "id": 16, + "businessType": null + } + ] + }, + "keyType": 0 + } +} \ No newline at end of file