Every time I try to setup the plugin with Spotify after pasting in the authentication code and click "request token" OBS crashes completely. Is there a step before setting up Spotify I need to do? Or is this just a bug?
Every time I try to setup the plugin with Spotify after pasting in the authentication code and click "request token" OBS crashes completely. Is there a step before setting up Spotify I need to do? Or is this just a bug?
Fixed crash when retrieving spotify token
Spotify token is now asynchronous so it won't freeze the gui anymore
Fixed cover retrieval for last.fm
I Think I Found A Bug or Maybe I'm an Idiot.... ha!
I decided to make a video explaining my issue.
Just place https://github.com/univrsal/tuna/blob/master/data/placeholder.png in the folder where you replaced it with a transparent png.Hi! I am currently finding problems with the album cover as I am like how to put back albums... rather than having invisible space.
And yes, my album cover tab has the eye on rn. View attachment 71982View attachment 71983
Yeah there's some issues with the selection, someone already requested an easier way to switch source, but I haven't gotten around to adding it.hey! I've been using this plugin for quite a while but since getting a new Stream Deck, I now have multiple VLC sources for multiple playlists that I toggle on and off depending on what I want to listen to for my stream.
However, the refresh button to change the VLC source name seems to not actually function unless I exit the program and return. Only then is when the source changes. is there something I can do about this or await an update? Thanks in advance! Its a great plugin.
You're trying to get information from VLC Sources right? Not VLC media player?I've tried everything.
I've tried installing 1.4.2
No deal.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Widget</title>
</head>
<body>
<style>
p {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
padding-top: 15px;
color: white;
filter: drop-shadow(0px 0px 4.5px black);
font-size: 36pt;
}
@keyframes fadein {
0% {
opacity: 0;
margin-top: -60px;
}
100% {
opacity: 1;
margin-top: 0px;
}
}
@keyframes fadeout {
0% {
opacity: 1;
margin-top: 0px;
}
100% {
opacity: 0;
margin-top: -60px;
}
}
.fade-in {
-webkit-animation-name: fadein;
animation-name: fadein;
}
.fade-out {
-webkit-animation-name: fadeout;
animation-name: fadeout;
}
</style>
<p id="data"></p>
<script>
var text = null;
var data_element = document.getElementById("data");
function fetch_data() {
fetch("http://localhost:1608/")
.then((response) => response.json())
.then((data) => {
let new_text =
data["artists"][0] + " - " + data["title"];
if (new_text !== text) {
text = new_text;
data_element.innerText = text;
data_element.classList.remove("fade-out");
data_element.classList.add("fade-in");
setTimeout(() => {
data_element.classList.remove("fade-in");
data_element.classList.add("fade-out");
}, 8000);
}
})
.catch(function () {
// Do nothing
});
}
setInterval(fetch_data, 500);
</script>
</body>
</html>
Yeah there's some issues with the selection, someone already requested an easier way to switch source, but I haven't gotten around to adding it.
Did you create an output file in the config dialog?i cant find this title file at all should i reinstall ?