Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

No Titles & Covers #37

Open
djndr opened this issue Apr 12, 2021 · 3 comments
Open

No Titles & Covers #37

djndr opened this issue Apr 12, 2021 · 3 comments

Comments

@djndr
Copy link

djndr commented Apr 12, 2021

Hi!

I have installed and configured this on my webhost, the sound is on but the information & covers are off. How to solve this?

I have both Shoutcast and Icecast servers.

Thank you!

@Bear-LB
Copy link

Bear-LB commented Apr 17, 2021

what happends if you temporary choose https://streaming.brasilhits.com/acc as your stream ?
if u get cover and artist with that stream, then switch back to own stream and be sure the music you're playing is tagged.
tag the title "artist - songname"

@looyrocks
Copy link

In config.js exists the variable "url_streaming", if you have some steam that needs to add something at the end, i.e, "http://radio.dominio.com:8000**/myaudio**", the program is not able to separate different fields for tags (as track info, next track, etc), for this reason, I separated it in two variables:
config.js
'url_streaming': 'http://radio.dominio.com:8000/myaudio',
'url_streaming_data': 'http://radio.dominio.com:8000',

then you have to receive that values in /js/script.js
In javascript const put:
const URL_STREAMING_AUDIO = settings.url_streaming;
const URL_STREAMING = settings.url_streaming_data;

then, in the same file, find the line:
var audio = new Audio(URL_STREAMING);
and replace with:
var audio = new Audio(URL_STREAMING_AUDIO);

It solves the problem.

image

@DirtySkeMe
Copy link

hello

i couldn't find nothing you refer in the script.js
if you could send more information or a copy of yours
thanks

then you have to receive that values in /js/script.js
In javascript const put:
const URL_STREAMING_AUDIO = settings.url_streaming;
const URL_STREAMING = settings.url_streaming_data;

then, in the same file, find the line:
var audio = new Audio(URL_STREAMING);
and replace with:
var audio = new Audio(URL_STREAMING_AUDIO);

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants