|
|
|
@ -49,10 +49,10 @@ async function findStreams() {
|
|
|
|
|
stream.set('http_referrer', { http_referrer: item.http.referrer })
|
|
|
|
|
stream.set('user_agent', { user_agent: item.http['user-agent'] })
|
|
|
|
|
stream.set('status', { status: cached.status || 'online' })
|
|
|
|
|
stream.set('width', { width: cached.width })
|
|
|
|
|
stream.set('height', { height: cached.height })
|
|
|
|
|
stream.set('bitrate', { bitrate: cached.bitrate })
|
|
|
|
|
stream.set('frame_rate', { frame_rate: cached.frame_rate })
|
|
|
|
|
stream.set('width', { width: cached.width || 0 })
|
|
|
|
|
stream.set('height', { height: cached.height || 0 })
|
|
|
|
|
stream.set('bitrate', { bitrate: cached.bitrate || 0 })
|
|
|
|
|
stream.set('frame_rate', { frame_rate: cached.frame_rate || 0 })
|
|
|
|
|
stream.set('added_at', { added_at: cached.added_at })
|
|
|
|
|
stream.set('updated_at', { updated_at: cached.updated_at })
|
|
|
|
|
stream.set('checked_at', { checked_at: cached.checked_at })
|
|
|
|
|