Free Stream Notifications (Twitch, Paypal, Patreon)

Free Free Stream Notifications (Twitch, Paypal, Patreon)

BobDev

Member
I've updated to last version (running FSN from OpenShift) and everything runs good but just one little problem: notifications appear fine but sound attached to them arrives like 1 minute later. Sound is taken from a website, not locally in folder, sound was good before updating, ¿any reason?

Thank you.
No, normal sound shouldn't be affected, nothing changed there - only thing I can come up is that reading fro the link takes that long.
Send me private message with the link to your openshift or send me the link to the sound files, I will try to test it on my end
 
Last edited:

GinkoTV

New Member

Zelakto

New Member
Hi Bob, i've enabled TTS on my Openshift box, and I can test it just fine. However when I get a notification, it doesn't read it out loud. Any reason for this? Thanks!
 

BobDev

Member
Hi Bob, i've enabled TTS on my Openshift box, and I can test it just fine. However when I get a notification, it doesn't read it out loud. Any reason for this? Thanks!
I honestly didn't test it with obs. My thinking was if it works for other systems the support needs to be there in browser plugin but maybe it is not there.
My bad I was putting this together quickly and I didn't do proper testing.


I will check if it is supported and get back to you, only alternative I can offer if it is not supported is to read the text in dashboard, where we know it works (chrome has support and you can enable it in firefox)
 

Zelakto

New Member
I honestly didn't test it with obs. My thinking was if it works for other systems the support needs to be there in browser plugin but maybe it is not there.
My bad I was putting this together quickly and I didn't do proper testing.


I will check if it is supported and get back to you, only alternative I can offer if it is not supported is to read the text in dashboard, where we know it works (chrome has support and you can enable it in firefox)
No worries! As long as you get it working correctly i'm happy. :)
 

djcyphers

New Member
I'm unable to download the notification text file from the Additional Configuration setting (installed on OpenShift). Neither Internet Explorer or Firefox worked. What I'd like to do is add top and recent donators. The donation goal setting works and is useful, but its use isn't very clear (or lacks some options). I'm also unclear how the PayPal notification URL works as using it gives me a 404 error (../paypal/ipn/djcyphers) through browser and OBS.
 

BobDev

Member
I'm unable to download the notification text file from the Additional Configuration setting (installed on OpenShift). Neither Internet Explorer or Firefox worked. What I'd like to do is add top and recent donators. The donation goal setting works and is useful, but its use isn't very clear (or lacks some options). I'm also unclear how the PayPal notification URL works as using it gives me a 404 error (../paypal/ipn/djcyphers) through browser and OBS.
page 26 or 27 on this forum has screenshot on how to get those files.
You don't use the ipn link, it is something that will be used for communication with paypal or it is something needed if you are crazy enough to setup donations on local PC, what you need is the paypal donation form button, click that and that is your donation form that goes to twitch panel.
 

djcyphers

New Member
Gotcha, thanks for the clarification Bobdev. Your program is very awesome. :)

PS. I'm not getting any pop-ups about security warnings or anything. I saved the file path then went back and hit test, but unfortunately I'm not getting anything.
 
Last edited:

BobDev

Member
Gotcha, thanks for the clarification Bobdev. Your program is very awesome. :)

PS. I'm not getting any pop-ups about security warnings or anything. I saved the file path then went back and hit test, but unfortunately I'm not getting anything.
This only works in firefox, and you need to allow it (popups, permission icons in the browser, it all needs to happen as in those screen shots).

Browsers cant save to your drive, only java applet can and it cant do it without your permission, chrome stopped supporting java so only browser that this will work in is firefox.
 

djcyphers

New Member
I figured out the problem. I was using Java 64bit in Firefox. After installing the other version everything works perfectly. Sorry for the confusion!
 
Loving the updates and fixes!

Would it be possible to have a different animation play for each event in the block container? Just some additional (and optional) customization. Not sure how much more this would complicate things on your end. If it's too much don't worry about it.
 

Zelakto

New Member
I honestly didn't test it with obs. My thinking was if it works for other systems the support needs to be there in browser plugin but maybe it is not there.
My bad I was putting this together quickly and I didn't do proper testing.


I will check if it is supported and get back to you, only alternative I can offer if it is not supported is to read the text in dashboard, where we know it works (chrome has support and you can enable it in firefox)

Hey Bob, have you checked to see if this is supported yet? Is it an OpenShift issue?
 

BobDev

Member
FSN v 1.15 - Fix for Text To Speech

[Edit] I needed to change the speech synthesis api to something else, I posted on obs browser plugin forum and I got an answer they don't support html5 speech synthesis but there are many other options, I used one of them, should work now
 
Last edited:

BobDev

Member
Loving the updates and fixes!

Would it be possible to have a different animation play for each event in the block container? Just some additional (and optional) customization. Not sure how much more this would complicate things on your end. If it's too much don't worry about it.
I believe you can have different enter animation right now, you just will need to change the default css animation and make new one for each block - you can use https://daneden.github.io/animate.css but remember those need to work in chrome so it needs some tweaking.

Also you need to enable this in additional config "Use css animations"

Then just uncomment what there is in allInOne.css
Code:
.block, .block_p, .block_s, .block_f {
  position: absolute;
  background-color:rgba(201,206,208,0.8);
  width:940px;
  height:93px;
  line-height: 93px;
  border: 2px solid black;
  font-family: DIRTYEGO; font-size: 73px;
  text-align: center;
  z-index:11;

  /* Change the duration of the animation here
  -webkit-animation: blockStartAnimation 1s ease,
             blockEndAnimation 1s 4s ease;*/
}

As you can see if you divide those blocks, for example by adding this, you can make separate animations per block
Code:
.block {

  -webkit-animation: blockStartAnimation 1s ease,
             blockEndAnimation 1s 4s ease;
}

.block_f {

  -webkit-animation: blockStartAnimation2 1s ease,
             blockEndAnimation2 1s 4s ease;
}

blockStartAnimation and blockEndAnimation is somewhere in AllInOne.css so just use that as a template
Then just use animate.css site to create different start and end animation for blockStartAnimation2 and blockEndAnimation2 and you are good to go
 
I believe you can have different enter animation right now, you just will need to change the default css animation and make new one for each block - you can use https://daneden.github.io/animate.css but remember those need to work in chrome so it needs some tweaking.

Also you need to enable this in additional config "Use css animations"

Then just uncomment what there is in allInOne.css
Code:
.block, .block_p, .block_s, .block_f {
  position: absolute;
  background-color:rgba(201,206,208,0.8);
  width:940px;
  height:93px;
  line-height: 93px;
  border: 2px solid black;
  font-family: DIRTYEGO; font-size: 73px;
  text-align: center;
  z-index:11;

  /* Change the duration of the animation here
  -webkit-animation: blockStartAnimation 1s ease,
             blockEndAnimation 1s 4s ease;*/
}

As you can see if you divide those blocks, for example by adding this, you can make separate animations per block
Code:
.block {

  -webkit-animation: blockStartAnimation 1s ease,
             blockEndAnimation 1s 4s ease;
}

.block_f {

  -webkit-animation: blockStartAnimation2 1s ease,
             blockEndAnimation2 1s 4s ease;
}

blockStartAnimation and blockEndAnimation is somewhere in AllInOne.css so just use that as a template
Then just use animate.css site to create different start and end animation for blockStartAnimation2 and blockEndAnimation2 and you are good to go
I had no idea, can't believe I overlooked this bit. Time to have some fun then!

I have yet to update to the latest version, but is TTS fixed so the speed can be adjusted in multiples of 0.1? It was a bit annoying to have the speech too fast or too slow and no default 1 speed option.

Here is yet another suggestion for you, Twitch emote support. A lot of people like putting them in the donation messages and would like the gimmick of seeing them as actual emotes on screen.

Really loving the work you put into this app.
 
Top