youtube-music
youtube-music copied to clipboard
How do you use the tuna plugin integration?
I'm trying to figure out how to use the tuna integration plugin but theres no documentation on how to do so.
see #372 (enable webserver option and it should automatically send information to tuna)
I did that but nothing seems to get sent to my tuna server
is the server open on port 1608
and song source is Web Browser
?
it should work if you have these options 😟
if you are in arch, uses the obs-plugin-tuna-bin is the only one that works (not for this app, but generally) and send a post to localhostÇ1608 and get to the same endpoint you should receive updates
yeah my port is set to 1608 and song source is web browser, but nothing gets sent to tuna.
again, the tuna happens to not receive POST in some versions, did you try to post do the localhost:1608 to see if this send and receive update? its not the plugin problem and tuna itself, for arch the only package that works its the bin one
im on windows, its not tuna as it works with Spotify jsut fine on the default port
I'll send you two requests to you try, the tuna with spotify dont use the server, the server its only for manual requests
ok
@irockdude554 sorry the GREAATTT delay man can you try this request
curl --request POST \
--url http://localhost:1608/ \
--header 'Content-Type: application/json' \
--data '{ "data":{
"cover_url": "f",
"title": "ff",
"artists": [],
"status": "ff",
"progress": 0,
"duration": 0,
"album_url": "fff",
"album": "undefined"
}}'
if this next request
curl --request GET \
--url http://localhost:1608/ \
--header 'Content-Type: application/json'
dont returns
{
"cover_url": "f",
"progress": 0,
"status": "unknown",
"time_left": 0,
"title": "ffdsdsd"
}
the problem is with the tuna not this plugin :)
** its not a working payload for the plugin, its just a dummy to know if your server of tuna is working
ok problem solved
When i stop / pause the music, the status of the playback on http://localhost:1608/ just stays on 'playing', even if i close the ymusic it'll still showing the last song title and what not, how can i fix this?
maybe you can pull a timer to look for the player and see if its in the pause state, the problem its the event for ths
When i stop / pause the music, the status of the playback on http://localhost:1608 just stays on 'playing', even if i close the ymusic it'll still showing the last song title and what not, how can i fix this?
Fixed at #1235