-
Notifications
You must be signed in to change notification settings - Fork 19
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
Video player becomes transparent on sides after playing a video file #460
Comments
Congratulations - you are the first person I know to use the Vlc option and report a bug. Sadly, it's not really going to get any attention from me. However, it is written in Ruby so if you know what the VLC library wants you can modified the Ruby. The code if pretty dense. It's in lib/shoes/videoffi.rb in your Shoes installation folder. A bit of pain to work on if you need admin privileges, but you can install shoes anywhere (remove the old version first) |
There is an opacity setting for Shoes that you should try first. |
Hahaha thank you, i'm still sad i bring bad news... However I'm pretty far to be an expert in coding, so this way may be too much complicated for me.
Could you gently explain me how to use this opacity setting? |
In the manual under App Metthods, app.opacity = 0.0 is fully transparent and 1.0 is fully opaque. There even a little test snippet. |
I'm using Shoes 3.8 beta, and under App Methods i can't fine any. However i tried to implement it in my code and it didn't worked. It's hours i'm on Shoes now, i will get some rest then i try some more on Shoes 3.7, maybe the beta doesn't make it work. |
Shoes.app do
@b = banner "Opacity\n"
slider fraction: 1.0 do |n|
app.opacity = n.fraction
@b.text = "Opacity %.2f\n" % n.fraction
end
end |
This works like a charm, but it doesn't work when it comes to video. |
I made a very simple video player, just modified some things from the example script.
But in both example script and mine, player sides will become transparent when playing a video.
Is there any way to fix this?
Is there a VideoLan option to set?
I'm on WIndows 10 and i'm using Shoes 3.8. Can't use 3.7 cause of another bug that stops me from draggind around app windows
The text was updated successfully, but these errors were encountered: