You didn't really say what is your problem - if you will be more specific maybe I will have some other advice for you :)Weird, that doesn't seem to fix it. Oh well, not a big deal. Still very strange, though.
You didn't really say what is your problem - if you will be more specific maybe I will have some other advice for you :)Weird, that doesn't seem to fix it. Oh well, not a big deal. Still very strange, though.
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.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
It plays ok for me, it must be the delay when reading the file, consider adding this file to FSN.jarSure, I post you here the link of the sound. With default sounds there is no delay, but with this I have it: http://wowimg.zamimg.com/hearthhead/sounds/VO_EX1_557_Attack_03.ogg
Can be enabled via the media.webspeech.synth.enabled flag in about:config.
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.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!
No worries! As long as you get it working correctly i'm happy. :)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)
page 26 or 27 on this forum has screenshot on how to get those files.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.
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).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.
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)
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.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.
.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;*/
}
.block {
-webkit-animation: blockStartAnimation 1s ease,
blockEndAnimation 1s 4s ease;
}
.block_f {
-webkit-animation: blockStartAnimation2 1s ease,
blockEndAnimation2 1s 4s ease;
}
I had no idea, can't believe I overlooked this bit. Time to have some fun then!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