-
Notifications
You must be signed in to change notification settings - Fork 39
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
Can't change font-size #37
Comments
A workaround that I found is to change the font size in \Voracious\resources\app\stactic\css\main.*.css .Player-text-chunks {
position: absolute;
bottom: 60px;
left: 0;
right: 0;
}
.Player-text-chunk-outer {
background: rgba(0, 0, 0, 0);
}
.Player-text-chunk-inner {
color: #fff;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
1px 1px 0 #000, 0 0 5px #000;
font-size: 2rem;
text-align: center;
overflow: hidden;
padding: 0.3em 0.5em;
margin: 10px auto;
} These classes are responsible for the subtitles. |
This file is not accessible using Linux. |
For Linux users, to make any changes in AppImage file, you need to navigate to Voracious location path, extract it using the following command:
You will see that a folder created called squashfs-root. In that folder you have the internal files of the Voracious.AppImage and you can make any changes to suit your standards. To run the program, with the new changes, simply you find file called AppRun inside your squashfs-root folder, simply run it, and your changes will be there! If you want to turn it again into an AppImage file with your changes, make sure to install appimagetool, then run the following command:
NOTE: make sure appimagetool in the same directory, or write its path in the previous command. |
Excellent! To leave everything as is but have gigantic subs, I just added this to the bottom of the css file: .Player-text-chunk-inner {
font-size: 3rem;
} |
Default .srt font-size is too small for me, can't find a way to change it on settings.
The text was updated successfully, but these errors were encountered: