@HandIzivi We will know when they release a version with those features.
By the way, one suggestion per topic please.
Do more on the web, with a fast and secure browser!
Download Opera browser with:
Helpful individuals not employed by Opera
@HandIzivi We will know when they release a version with those features.
By the way, one suggestion per topic please.
@sicu220 Opera supports Windows 10, there is no info (that I can remember at least) of any specific version of Windows 10 that is not supported.
@Rexoil I responded at https://forums.opera.com/post/376564 with my suggestion.
For the resolution of the image or wallpaper, you use the best quality you can or desire. You should shoot for at least 1920 x 1080, but 3840 x 2160 or 4096x2160 would be better if you have a source of that quality. No need to take a low-res image/video and upscale it though if it's going to make it look horrible.
See https://github.com/opera-gaming/gxmods/blob/main/mods/Cyberdeck/manifest.json#L23 for an example of using a video wallpaper. When you specify a video file or a wallpaper, you indeed need to provide a first_frame image or the video won't play.
For video files, the audio is not used, so it's best to strip the audio track from the file (with ffmpeg for example) to save space. But, you don't have to.
An mp4 video will indeed work as a wallpaper aslong as Opera can play mp4 files directly in a tab on your system. Using webm will technically be more compatible though.
Try a test mod like this first that just specifies a mp4 video wallpaper for dark mode and nothing else:
manifest.json:
{
"manifest_version": 3,
"name": "MP4 Wallpaper",
"version": "0.1",
"icons": {
"512": "512.png"
},
"mod": {
"schema_version": 1,
"payload": {
"wallpaper": {
"dark": {
"image": "video.mp4",
"first_frame": "firstframe.png",
"text_color": "#ffffff",
"text_shadow": "#ffffff"
}
}
}
}
}
@ARAVINDSHRINIVASHA On Desktop? Click on the icon in sidebar.
@Rexoil I don't know this stuff, I just see that one looks different (the light section versus the dark) and ask why.
@burnout426 I have noticed that the wifi at Walmart stores does not support (which really means "blocks") VPNs. If he is using public wifi, it is always possible the problem isn't on his system.
@Rexoil You do know you didn't list a first frame in the dark block, yes?
Opera will scale the image to the window, so how big do you expect the user's window to be?