Hi guys, i would need some help please as i am new to obs and tuna.
i use a mac mini with apple silicon and the latest version of tuna.
obs is 26.1.2
i was able to connect to the spotify account and pull pictures but i cannot add the txt files.
as soon as i enter %t for example, the window closes. same when pressing enter.
is there a workaround or may this be due to incopatibility with the arm based system?
thanks in advance
Kallibasta,
Open a text editor. Create a new text file. Save the text file as Snip_Artist.txt filename. Also make a text file exists with the filename of Snip_Track.txt. Then open Tuna Settings, Click Basics tab, "Add" an entry under "Song into outputs" to display the album name. Link this target path to "Snip_Artist.txt". "Add" another entry for the track (which apparently you have already) and and browse to the location where you saved the .txt file you created with Snip_Track.txt filename. "Song place holder" area should be empty and "Song Source" should be set to VLC. Click on Stop, then Start, and then click Apply.
The song data is saved to the file on the fly and is then pulled from song.html which you have selected as an OBS Browser connection (local html file).
Excerpts from song.html:
function checkUpdate() {
$.get("Snip_Artist.txt", function(art) {
newArtist = art.replace(/&/g, "&");
}).then(
$.get("Snip_Track.txt", function(sng) {
newSong = sng.replace(/&/g, "&");
})).then(displayData);
This is what I did...