Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Click Preview shows Aerial clock but videos don't show on screen #5

Closed
prediscover opened this issue Mar 27, 2020 · 12 comments
Closed
Labels
bug Something isn't working

Comments

@prediscover
Copy link

Thanks for the 0.4.0 beta today. Installed using the Zip File and when clicking preview, only the clock text appears, no video.

I did have the original Aerial by cDima installed, I deleted it from the c:\Windows folder.

@OrangeJedi
Copy link
Owner

Hey, glad to hear you appreciated v0.4.0!
A couple of questions:

  1. Did you have a previous version installed, and if so, did the video play then?
  2. In the 'settings' menu under the video tab when you click on a video does it play?
  3. You may need to install Apple's Root Certificate from https://www.apple.com/certificateauthority/ to play the videos. I'm working on fixing this for v0.5.0, but basically Apple self-signed the web certificate for the videos and you may need to install the certificate so your computer recognized the URL as valid.

@OrangeJedi OrangeJedi added the bug Something isn't working label Mar 27, 2020
@prediscover
Copy link
Author

  1. I did not have a previous version installed.
  2. No, when I click on a video, it does not play.

that probably means I need the certificate huh.

@OrangeJedi
Copy link
Owner

OrangeJedi commented Mar 28, 2020

Yeah. I was doing some testing today on another computer and was running into the same issue. The issue will be fixed in v0.5.0 though. You can either install the certificate or wait for for v0.5.0.
Or...
You could go into the Aerial folder and find app.js aerial-0.4.0\resources\app\app.js and open it up in a text editor (notepad works fine) and add the following lines of code at the end.

app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
    if (url.match(/^https:\/\/sylvan.apple.com/) !== null) {
        event.preventDefault();
        callback(true)
    } else {
        callback(false)
    }
});

This should get around needing the certificate to view the videos.
Let me know if you have any issues.

@OrangeJedi OrangeJedi added this to v0.5.0 Done in Aerial Roadmap Mar 28, 2020
@freddy1407
Copy link

Same on that issue :/
certificate already installed.
no videos loading on any version.
using Windows 10, with Firefox downloaded. tested Zip and scr.

Thanks so much!

@OrangeJedi
Copy link
Owner

Are the videos loading in the video tab of the config menu? I've also noticed that sometimes it takes a few seconds for the videos to load, though I'm going to assume that you that isn't your issue. When you click the preview button on the screensaver selector can you see a window open on your task bar, or if configured, text pop up?

@jnlx
Copy link

jnlx commented Apr 4, 2020

I had the same issue, no video at all, just an icon in the taskbar, even after instaling the certificate.
i added the lines of code as told by OrangeJedi and now it works fine.
Thank you OrangeJedi, i was hoping for sometimes now that someone would take on this project, since i am useless for coding ;-)

Keep on the good work, Thank you :D

@Aleatoire
Copy link

Same, i just get the clock :/
One little things, if in the settings you could add a enable/disable mutli-screen would be nice 👍
Thanks :)

@OrangeJedi
Copy link
Owner

This is now fixed in v0.5.0. Aerial no longer needs Apple's cert. If you are still having problems with videos playing after v0.5.0 please create a new issue.

@Aleatoire
Copy link

Hello, i've tested.
It's not working every time.
And this error is showing up.
Error

@freddy1407
Copy link

Same Error here!

@OrangeJedi
Copy link
Owner

I put this in #12, I'll put it here too.

I think I fixed it. Download and install v0.5.1, it shouldn't throw an error. Thanks for bringing this to my attention, let me know if you continue to have problems.

@prediscover
Copy link
Author

I can confirm. Having originally the 0.4.0 beta, upgrading directly to 0.5.1 fixes the issue or the video displaying. Thanks! @OrangeJedi

@OrangeJedi OrangeJedi moved this from v0.5.0 Done to Released in Aerial Roadmap Sep 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
No open projects
Development

No branches or pull requests

5 participants