mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-31 09:22:49 -05:00
Merge pull request #4 from chromakode/tng
Fix for facebook streams freezing
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
"start": "npm run build -- --display=errors-only && electron dist",
|
"start": "npm run build -- --display=errors-only && electron dist",
|
||||||
|
"start-local": "npm run build -- --display=errors-only && electron dist --webserver=http://localhost:4444 --username=woke --password=woke",
|
||||||
"test": "jest"
|
"test": "jest"
|
||||||
},
|
},
|
||||||
"author": "Max Goodhart <c@chromakode.com>",
|
"author": "Max Goodhart <c@chromakode.com>",
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ const viewStateMachine = Machine(
|
|||||||
setInterval(() => video.play(), 1000)
|
setInterval(() => video.play(), 1000)
|
||||||
|
|
||||||
// Prevent sites from re-muting the video (Periscope, I'm looking at you!)
|
// Prevent sites from re-muting the video (Periscope, I'm looking at you!)
|
||||||
Object.defineProperty(video, 'muted', {writable: false, value: false})
|
Object.defineProperty(video, 'muted', {writable: true, value: false})
|
||||||
|
|
||||||
const info = { title: document.title }
|
const info = { title: document.title }
|
||||||
let divBase = document.querySelector('div.BaseVideo') // This will filter for only periscope videos
|
let divBase = document.querySelector('div.BaseVideo') // This will filter for only periscope videos
|
||||||
|
|||||||
Reference in New Issue
Block a user