User Menu

Notification settings

Currently Playing

AMIGA-MODAhoin Antimet by flag Mc Hal (Mika Halonen)
Requested By: flagHappyDude

Time Left: 3:44


- Streams

Important Links

Discord Chat
Matrix Chat (bridged to Discord)

Please report any bugs to this forum thread!
> Bug Reporting Thread <
Song, artist, etc. corrections go here instead:
> Correct DB Info <
Broken tunes can be reported here:
> Report Broken Tunes Here <

Nectarine

General » Report bugs here!

Forums » General » Report bugs here! (228 posts)
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Author Thread
flagAtomicReindeer


45 Posts
#1837 (1 year, 10 months ago)
BTW, while checking email notifications for this thread, I noticed I have one email, but the post is not here. Anyone can figure why?

Post ending with "I will check into those other two issues later." and next starting with "Regarding the Download link, my feeling is that this field is actually somewhat obsolete." are in the mailbox, but between them there is another email:

"nyingen wrote in 'Report bugs here!':

Actually, hold on. I need to check into an issue first, then it will be re-enabled. Stay tuned."

Speaking of emails... and on site notifications: maybe some subjects could be more informative? "New Private Message: Song info approved (ID 1234)", it would help figuring what each notification/email is about.
flagnyingen


318 Posts
#1838 (1 year, 10 months ago)
I deleted that one. I'm not shy about deleting forum posts or song comments which are about transient issues that have already been resolved. Of course I can't un-send the email the server sent in those cases.

flagAtomicReindeer


45 Posts
#1858 (1 year, 9 months ago)
1. could someone change the sidebar links "Important Links" (IOW, three forum threads) to use same host? If you logged via www.scenestream they go to scenestream and the login credentials do not apply. Probably it is just about deleting the part up to .net.

2. does backend support .amf (Asylum Music Format, related to 8chan from what I found)? Or for those use mp3/ogg/wav/etc?
flagarrakis
avatar
Amiga&C64 rulez

281 Posts
#1889 (1 year, 7 months ago)
<<<<the RIP mention appears only when there is a music type logo. Ex : for MAF/
flagvelusip
avatar
All I ever wanted was some Sunshine.

89 Posts
#1900 (1 year, 6 months ago)
  • unique test item 1


  • unique test item 1


Just testing. There's some bug in bbcode parsing which just repeats the first list.
flagnissimnanach


4 Posts
#2088 (10 months ago)
Hey how come I can't request Exorcist (Title) by DRAX I just uploaded it and it's never been requested and says locked

https://scenestream.net/demovibes/song/48748/
flagnissimnanach


4 Posts
#2089 (10 months ago)
How does the Country Code work on your profile why do I have a orange monkey I'm an American it has code 1 right now for that monkey then I tried the code 840 for USA in UN code and it's still orange monkey help?
flagHappyDude
avatar
Nostalgic BBS Sysop - v2.0

17 Posts
#2090 (10 months ago)
for your flag's country code, try entering "us" without the ""
I'm from Canada (eh!) and I use ca for my flag.

Hope that helps!
flagnyingen


318 Posts
#2091 (10 months ago)
You provided no information about Exorcist (title), so it's still in the upload queue. Staff don't know what it is, so it hasn't been approved yet. Is it a game tune? Is it from a demo? What's the source?
flagnissimnanach


4 Posts
#2094 (10 months ago)
@HappyDude thanks that worked

@nyingen ok i edited it it's from here

https://www.6581-8580.com/socse/index.php?field=title&sorting=title&view=ASC&page=1&wildcard=off&add_fields=&query=exorcist&term_counts=0

Stone Oakvalley's RAWTEXT Extraction
exorcist (title) thomas mogensen (drax) 1990 magic bytes vibrants l las 2080 player by jch....music by draxl oc ~ il 0o l x)rk rl xlc ~ ill 21)lx)r r q 080 2 ~ ~ ~~ 049T Wl nq f0(~ ~ll cl clbh)hh) lh) { uf h

But I forgot to correct the date to 1990
flagplc
avatar


15 Posts
#2095 (10 months ago)
Hmm, seems to be a game tune, so not really relevant to nectarine.
flagmirrorbird
symptomless coma

381 Posts
#2137 (7 months ago)
Xenon Arcane'76 has a broken YouTube link. I mean it's an erroneous URL, not just a 404.
flagAtomicReindeer


45 Posts
#2144 (6 months, 3 weeks ago)
OK, new take in the song timer watchdog (see page 13 for old ones). Less lines, slightly smarter: now it looks for time value that repeats in a row, and then reloads as before. This way it does not get fooled by jingles or any small song that caused the refresh to freeze the timer in non zero values. Display may fail for some seconds, specially around jingles, but will get back in sync sooner or later.

[spoiler]

// ==UserScript==
// @name Update Necta song timer
// @namespace AtomicReindeer
// @description Update the timer if stuck at a fixed value
// @include https://www.scenestream.net/demovibes/queue/
// @version 1
// @grant none
// ==/UserScript==

const CheckSecs = 5;
const TooManySheep = 2;
var LastTime = 0xBADC0FFEE;

function Shaun(StuckSheep) {
const CurrentT = $('span[data-name="counter"]').attr("data-sec");
// console.log("Shaun watches " + CurrentT + " " + LastTime + " Sheep queue " + StuckSheep);

if (CurrentT == LastTime) {
if (StuckSheep < TooManySheep) {
window.setTimeout(Shaun, CheckSecs*1000, StuckSheep + 1);
} else {
console.log("Slurping time " + CurrentT);
$.get("/demovibes/queue/",
function(FullPage) {
var Song = $("#nowplaying", FullPage);
$("#nowplaying").replaceWith(Song);
var Queue = $('div[data-name="queue"]', FullPage);
$('div[data-name="queue"]').replaceWith(Queue);
var History = $('div[data-name="history"]', FullPage);
$('div[data-name="history"]').replaceWith(History);
});
window.setTimeout(Shaun, CheckSecs*1000, 0);
};
} else {
window.setTimeout(Shaun, CheckSecs*1000, 0);
};
LastTime = CurrentT;
}

window.setTimeout(Shaun, CheckSecs*1000, 0);

[/spoiler]

Use Greasemonkey, or equivalent, to run it. Other option would be for admins to include in the site JS files so everyone benefits, at least for the queue page. Set bigger CheckSecs, TooManySheep or both for lower server load as it will give more room for the normal system to work, and avoid multiple loads that happen with long jingles (stale data of previous song means timer gets stuck again and will load twice or more until new song becomes avaliable). Enjoy inner Mongolia.
flagBBB


1 Posts
#2145 (6 months, 3 weeks ago)
Hi - got back to back selection of the same song when using random selection.Apparently this shouldn't happen within some limits?

Date 2023-09-25 req time 21:02 Dream Complex II (Anvil [fi])
Date 2023-09-25 req time 21:02 Dream Complex II (Anvil [fi])

Also noticed that the second one staying in queue and the song restarted... had to leave before watching it play out, hopefully its not stuck.
flagAtomicReindeer


45 Posts
#2146 (6 months, 3 weeks ago)
Yep, the song played twice then djradom took over with Blue Lagoon.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

Post a Reply

Please log in to post a reply.