Hey everyone!
I have been working with OBS a lot for live streaming and though of something that could be an amazing featured that is apart of the Browser Stage view. Right now you have Main stage view
http://localhost:4316/main which is super cool. My idea would be to have
http://localhost:4316/chroma where it takes the text within OpenLP and removes the default theme background and makes it green. That way I can run a chroma key filter to remove the background and have the Song words and speaking notes displayed over my videos.
Comments
Feel free to share the result :-)
This might change in the next version where the remote API has been rewritten...
This will allow me to have a scene that a camera showing the live services with an overlay of text from Custom Slides, Bible verses, and songs. I then have a scene that is just the main view showing the full themed slide which lets images work as well. I guess I could remove that scene of the main view since I would plan on capturing the screen of the projector anyways and use that as my second scene to show any images/videos in my recording.
OpenLP fits all of my needs now.
I am trying to convince them to create something like this by default for the 3.0 release.
window.OpenLP = {
This give us a nice outlined text box with a semi transparent background and white text all centered on the bottom of the screen.
if you want to show only songs on stage you can use this:
//store current slide type aka "plugin"
loadService: function(event) {
$.getJSON("/api/service/list", function(data, status) {
OpenLP.currentPlugin = "";
OpenLP.nextSong = "";
$("#notes").html("");
for (idx in data.results.items) {
idx = parseInt(idx, 10);
if (data.results.items[idx]["selected"]) {
OpenLP.currentPlugin = data.results.items[idx]["plugin"];
and then filter out e.g. this way:
updateSlide: function() {
if (
OpenLP.currentTheme ||
OpenLP.currentBlank ||
OpenLP.currentPlugin != "songs"
)
$("#currentslide").html("");
Thanks a lot @jednou,
this functions makes the workflow much better.
Is it also possible for the bibletext?
Luke
sure, bible items have own plugin value: "bibles"
Hello,
can somebody help me with the code, please? I want only show the song text.
Luke
Hello,
I'm using now OpenLP 3.0. How works the blank function for the chroma key stage view?
Luke
@newidea
Check out this thread and see if it helps:
https://forums.openlp.org/discussion/comment/15552#Comment_15552
Thanks a lot!