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

Can't change font-size #37

Open
WilsonNet opened this issue Nov 15, 2019 · 4 comments
Open

Can't change font-size #37

WilsonNet opened this issue Nov 15, 2019 · 4 comments

Comments

@WilsonNet
Copy link

WilsonNet commented Nov 15, 2019

Default .srt font-size is too small for me, can't find a way to change it on settings.

@WilsonNet
Copy link
Author

WilsonNet commented Nov 16, 2019

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.

@fxmarty
Copy link

fxmarty commented Feb 23, 2020

This file is not accessible using Linux.

@MosaabMuhammed
Copy link

MosaabMuhammed commented Oct 10, 2020

For Linux users, to make any changes in AppImage file, you need to navigate to Voracious location path, extract it using the following command:

./Voracious-0.6.0-linux-x86_64.AppImage --appimage-extract 

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.
You can access the file mentioned by @WilsonNet and change the font as you like.

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:

ARCH=x86_64 ./appimagetool-x86_64.AppImage squashfs-root

NOTE: make sure appimagetool in the same directory, or write its path in the previous command.

@tomholub
Copy link

tomholub commented May 3, 2023

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;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants