Wallpaper Engine

Wallpaper Engine

Sao Project v2
524 Comments
NiLun 1 Sep @ 11:36am 
Verry cool bro
ra1mss 23 Aug @ 11:33am 
:steamthumbsup:
ShiroSFX  [author] 16 Jan @ 8:44am 
@BlazingIce777
Thanks!
and sorry, I'm not gonna update this anymore.
However you can add it manually:
- Open theme folder
- Add your music to "music" folder and copy the filename
- Go to /js/player and open one of the file with an editor (notepad or another one)
- Take a look on how this work and add your data
exemple :
12: {
title: "TITLE_HERE",
artist: "ARTIST_HERE",
src: "music/FILENAME_WITH_EXTENTION"
}

don't forget the "," after "}" on previous line or this will not work
- Save the file, and reload the WE theme, you will see your newly added music

My files are ".ogg" because at the time of creating it, only ogg worked, but right now mp3 should work
BlazingIce777 15 Jan @ 4:48pm 
I love this wallpaper, it works perfectly for my second monitor but u gotta get luminous sword in the songs list fr
Kirito 7 Dec, 2024 @ 6:28am 
Hello, I found out that the problem is in the wallpaper, where there is exactly the same menu; I have no sound in any of them.
Kirito 22 Nov, 2024 @ 4:33am 
Yes, it worked great before.
Okay thanks for the help. The wallpaper is good.
ShiroSFX  [author] 22 Nov, 2024 @ 2:27am 
@Kirito
Sorry I don't have anymore idea for your problem...
It worked before?
Kirito 22 Nov, 2024 @ 12:50am 
Volume to 100, check the box, Voice of Kirito.
ShiroSFX  [author] 22 Nov, 2024 @ 12:32am 
@Kirito
In the theme settings, on Menu - Startup
General Volume is not at zero?
Enable start checked?
Voice different than None?
Kirito 21 Nov, 2024 @ 11:59pm 
I checked, everything starts up.
ShiroSFX  [author] 21 Nov, 2024 @ 4:57am 
@Kirito
Can you right click > Open in explorer this theme.
On the exporer window, go to music folder and try to open any file (.ogg) to check if there are playing?
Same things with startup folder (.wav and .ogg).
Kirito 21 Nov, 2024 @ 3:41am 
I checked the settings, everything works, I checked the other wallpapers for sound, everything works.
ShiroSFX  [author] 21 Nov, 2024 @ 1:53am 
@Kirito
Hi, is it possible that the sound of Wallpaper Engine is cut by Windows?
Because, if after reinstalling it doesn't work, it's not a theme problem.
Have you tried another theme to see if it doesn't work too?
Can you check your setting too?
On Performance tab, the value of "Other application playing audio" and
on General, Audio part, if "Audio ouput" is checked.
Also verify if the "Audio recording device" is the good one.
Kirito 21 Nov, 2024 @ 1:34am 
Help please, the sound has disappeared from the wallpaper.
At startup there is only connection, no sound. I reset the settings, wallpaper, reinstalled everything. Nothing helps.
ShiroSFX  [author] 29 Aug, 2024 @ 11:09am 
@BiohazardBR
Thanks to you for using it :nekoheart:
CASTILHO_RAFAEL 26 Aug, 2024 @ 1:03pm 
Muito bom, obrigado por este "lindo" projeto !
战影-ありはら ななみ SA 20 Apr, 2024 @ 6:13am 
(・ω・)つ旦 ⏚接地⏚ (・ω・`)乙
fearfuI 8 Dec, 2023 @ 8:26pm 
MY EARS
ShiroSFX  [author] 14 Oct, 2023 @ 3:29pm 
@Lord_Top2GG
:nekoheart:
Lord_Top2GG 14 Oct, 2023 @ 11:10am 
Respect топ обои спасибо бро мне нравится данное аниме хай из росси
ShiroSFX  [author] 13 Oct, 2023 @ 12:03pm 
if (properties.background) {
param.background = properties.background.value;
var imageElement = document.body;
var bgv = document.getElementById("bg_video");
var doc = "url('img/" + param.background + ".jpg')";
var fakeAnimatedImagesWebm = ["bg18"];
var fakeAnimatedImagesMp4 = [];
var fakeAnimatedImages = fakeAnimatedImagesMp4.concat(fakeAnimatedImagesWebm);
if (fakeAnimatedImages.includes(param.background)) {
bgv.style.opacity = 1;
if (fakeAnimatedImagesWebm.includes(param.background)) {
bgv.src = "img/" + param.background + ".webm";
} else if (fakeAnimatedImagesMp4.includes(param.background)) {
bgv.src = "img/" + param.background + ".mp4";
}
bgv.setAttribute("width", window.innerWidth);
bgv.setAttribute("height", window.innerHeight);
bgv.autoplay = true;
bgv.loop = true;
} else {
bgv.style.opacity = 0;
imageElement.style.backgroundImage = doc;
}
}

Dont forget to edit the fakeAnimatedImagesXXX
ShiroSFX  [author] 13 Oct, 2023 @ 12:03pm 
Hello again,
Somehow the MP4 doesn't work when I tried to add it.
You can try yourself by replacing the all IF statement (the same as before) by:
Shinuko 13 Oct, 2023 @ 10:26am 
Hello friend, it’s me again, is it possible to somehow make it so that you don’t have to convert your animated wallpapers to webm format, so that in short you can throw them in MP4 format into a folder and everything will work?
ShiroSFX  [author] 11 Oct, 2023 @ 11:05am 
No worries, have fun!
Shinuko 11 Oct, 2023 @ 10:11am 
Everything worked! Thank you very much for your help! Your work is amazing <3
ShiroSFX  [author] 11 Oct, 2023 @ 9:09am 
Note the "kakegurui" is my test file lol
ShiroSFX  [author] 11 Oct, 2023 @ 9:08am 
You have to REPLACE the complete " if ", like this image [i.imgur.com]
ShiroSFX  [author] 11 Oct, 2023 @ 9:03am 
Here the complete if statement with old code because of your compiler:

if (properties.background) {
param.background = properties.background.value;
var imageElement = document.body;
var bgv = document.getElementById("bg_video");
var doc = "url('img/" + param.background + ".jpg')";
var fakeAnimatedImages = ["bg18", "kakegurui"];
if (fakeAnimatedImages.includes(param.background)) {
bgv.style.opacity = 1;
bgv.src = "img/" + param.background + ".webm";
bgv.setAttribute("width", window.innerWidth);
bgv.setAttribute("height", window.innerHeight);
bgv.autoplay = true;
bgv.loop = true;
} else {
bgv.style.opacity = 0;
imageElement.style.backgroundImage = doc;
}
}
ShiroSFX  [author] 11 Oct, 2023 @ 9:03am 
I've tested before sending to you, so, that work ^^
But, why do you have a compiler error? there is no need to compile it...
You run it on the windows app?

For the "const" error, yeah you can use "var".

For the " ` ", you can do:
bgv.src = "img/" + param.background + ".webm";

For the "why":
This file run on each change from WE settings, so I did all the logic here.
And because it does use the same element, I make this change here.
Shinuko 11 Oct, 2023 @ 6:21am 
the compiler writes an error in the very first line of the code you wrote, swears at the word CONST, says that it is reserved. I tried changing CONST to VAR, the error disappeared, but now the compiler started complaining about the ` symbol, which is located in the 4th line of the code that needs to be inserted. how to fix this and what to do to make it finally work? (and why exactly in lines 27-35, the code that is in the block below, lines 39-59, seems to be responsible for the animated wallpaper?)
Shinuko 11 Oct, 2023 @ 6:21am 
I did as you said, but ran into several problems, the first one being the most obvious, nothing worked. if you insert this code with replacement, then switching the wallpaper basically stops working, if you insert it without replacement, that is, insert it in line 35 after the bracket, then replacing the wallpaper works, but mine still won’t be installed + the settings disappear, that is, every time you start I get the standard theme from SAO and the wallpaper is displayed first, and the location of everything (menu buttons, clock location, etc.) also disappears.
ShiroSFX  [author] 10 Oct, 2023 @ 12:10pm 
Like "shooting stars"?
Its a webm video (very old, so just very bad code when I implemented it)
But you can add your by editing the "/js/we-options.js", line 27-35.
Replace these lines by:

const fakeAnimatedImages = ["bg18", "FILENAME"];
if (fakeAnimatedImages.includes(param.background)) {
bgv.style.opacity = 1;
bgv.src = `img/${param.background}.webm`;
bgv.setAttribute("width", window.innerWidth);
bgv.setAttribute("height", window.innerHeight);
bgv.autoplay = true;
bgv.loop = true;
} else {
bgv.style.opacity = 0;
imageElement.style.backgroundImage = doc;
}

Replace FILENAME
You can add more by adding ' , "FILENAME" ' after it, like:

["bg18", "FILENAME", "FILENAME", "FILENAME", "FILENAME", "FILENAME"]

And do the same thing you did with the image in "project.json"

Have fun!
Shinuko 10 Oct, 2023 @ 3:47am 
Thanks, I saw it. There is one more thing I would like to know, how can I add my own animated wallpaper?
ShiroSFX  [author] 9 Oct, 2023 @ 11:52am 
@Shinuko
Hey! I've made a simple tutorial in the "discussions" section, check it out :)
Shinuko 9 Oct, 2023 @ 10:11am 
Hello! I want to add my own wallpaper, how to do this? If you need to write a line of code, then tell me in which of the scripts and specifically where in general. Thank you <3
ShiroSFX  [author] 30 Sep, 2023 @ 2:36pm 
@Jovi Fly
heya!! Thanks for using it!

I've corrected the intro sound, which can be changed via "General Volume" in the "Startup" menu.
I've made sure that all audio is now controlled by "General Volume".

For the intro video, I no longer have the basic video, so upscaling this video results in a very bad video...

This is the last update. I'll stop maintaining it from now on.

Maybe when I have time, I'll make a new version.
Jovi Fly 27 Sep, 2023 @ 9:22am 
AMAZINNNNG WORK HERE!! CONGRATULATIONS!!!

One of the most, if not the best integrated wallpaper, detailed, useful and even customizable!

I just have a pair of suggestions:

- The first one and the one who bring me here to writte this, the initial "LINK START" + Intro sound, it can´t be adjusted like in other wallpapers, using the system volume and sometimes switch on the pc in the middle of the night, or just in an automatic rotation like in the playlist provokes that RUMBLING shout that wouldn´t be a problem if i live alone, or in a house... But i´m not... I tried using profiles, but doesn´t seems to adjust the volume :-P

- the second one is if were posible to upscale the Intro scene, to make it more clear and smooth.

Thanks you very much for you work!
nimonic_34 10 Sep, 2023 @ 2:10pm 
Great, thank you. Love the wallpaper!
ShiroSFX  [author] 10 Sep, 2023 @ 10:03am 
@nimonic_34
But be careful, this file contain only the video, not the audio.
That was impossible to make a video + audio file when I created this project
ShiroSFX  [author] 10 Sep, 2023 @ 10:01am 
@nimonic_34
Yes
nimonic_34 9 Sep, 2023 @ 12:40pm 
I found the startup folder that contained the audio and video files during the wallpaper startup.
If I change out the video file (start.webm) with another .webm file of the same or different length, then name it the same, would it work?
ShiroSFX  [author] 4 Jul, 2023 @ 12:37pm 
@Birdstrol
No, sorry.
You can add your images if you like, I did a tutorial in these comments some time ago in English or just my last comment which is in French.
Birdstrol 29 Jun, 2023 @ 2:52pm 
Will alicization images be added?
ShiroSFX  [author] 19 Jun, 2023 @ 10:32am 
@Side_Cop_
Yo, merci pour le retour.
Pour les fonds d'écran, j'en ai pas de meilleur qualité (Reset PC), mais si tu en a, tu peux remplacer ceux existant dans le dossier "img", par contre c'est un assez vielle façon dont j'avais mis en place ça, du coup, tu doit garder la même forme que les fonds actuels.

Par exemple, pour remplacer l'image "bg1.jpg" par un fond perso, tu doit avoir l'image au format "jpg" et qui doit être renomé "bg1", soit, "bg1.jpg" comme l'original.

Sinon, ta le choix d'ajouter des nouvelles lignes dans le "project.json" en plus d'ajouté ton image en "jpg".
Exemple :
Dans le fichier "project.json" après la ligne 606, tu ajoute :
,{ "label": "NomAffichéDansLeMenu", "value": "NomDuFichierSansExtension" }
Et ajouté le fichier "NomDuFichierSansExtension.jpg" dans le dossier "img"
Sayron 19 Jun, 2023 @ 7:04am 
Salut j'aime beaucoup la voix Sinon du link Start merci mais serait-il possible étant fan de cette série d'avoir de meilleurs fond car la qualité de l'image gâche un peu ton super travail ce qui est dommage
ShiroSFX  [author] 29 May, 2023 @ 1:42pm 
@deohyo
:nekoheart:
deohyo 28 May, 2023 @ 10:51pm 
best sao wallpaper :——):steamthumbsup:
ShiroSFX  [author] 31 Jan, 2023 @ 2:23am 
@Leaxis23
No worries :happymeat:
Batmexican 29 Jan, 2023 @ 10:18am 
oh man I'm an idiot. 23 was the year hahaha well thanks Shiro!
ShiroSFX  [author] 23 Jan, 2023 @ 4:21am 
@Leaxis23
You can fix this by replacing "YY" with "YYYY" in file "971369035/js/time.js" line 34