diff --git a/conf/vods.json b/conf/vods.json index 35c514c..50226b9 100755 --- a/conf/vods.json +++ b/conf/vods.json @@ -534,8 +534,8 @@ "label": "Personal Best: Mirror Shield No EG (11:38) [2017-07-02]", "name": "Mirror Shield No EG (PB)", "chatName": "Mirror Shield No EG (PB)", - "filePath": "Y:\\media\\videos\\ALttP\\my-vids\\personal-bests\\mirror-shield-no-eg\\2017-07-02-mirror-shield-no-eg-1138.mp4", - "sceneItem": "16x9ph", + "filePath": "Y:\\media\\videos\\ALttP\\my-vids\\personal-bests\\mirror-shield-no-eg\\2017-07-02-mirror-shield-no-eg-1138-resized.mp4", + "sceneItem": "4x3ph", "length": 738, "includeInShuffle": true }, diff --git a/fgfm.TODO b/fgfm.TODO index 1f69786..47ea320 100755 --- a/fgfm.TODO +++ b/fgfm.TODO @@ -27,10 +27,13 @@ TODO: - Countdown for X minutes is triggered and shown - Once countdown finishes, switch to intro scene and play - Switch to fgfm once intro finishes + ☐ Stop + - ☐ Support for $pause -- not sure how to pull this off ☐ Tool to output list of video ID's / descriptions ☐ Stream alerts for chat ☐ Rotating background images (leftside) + ☐ Support gif's via command through gifph Ideas: ☐ Web interface for viewers to issue commands -- twitch extension?! diff --git a/lib/fgfm.js b/lib/fgfm.js index 84ec9e4..1bc526c 100755 --- a/lib/fgfm.js +++ b/lib/fgfm.js @@ -142,6 +142,7 @@ function FGFM(config) { this.showCommercial = (video, callback) => { return new Promise((resolve, reject) => { let handleFinish = () => { + console.log('commercial is finished playing...'); this.state.commercialPlaying = false; if (typeof callback !== 'undefined') callback(); }