Skip to content

An open-source, cross-platform standalone subtitle player

License

Notifications You must be signed in to change notification settings

rptr/Penguin-Subtitle-Player

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Penguin Subtitle Player GitHub release Build Status SourceForge Github All Releases penguin-subtitle-player

Penguin Subtitle Player is an open-source, cross-platform standalone subtitle player, as an alternative to Greenfish Subtitle Player, SrtViewer (Mac), SRTPlayer, JustSubsPlayer and Free Subtitle Player.

You download the subtitle file (.srt, .ssa, .ass) from any sites you like and load it into the subtitle player. The subtitle player provides a translucent window which always stays on the top so that subtitles can be shown on top of the video without blocking anything.

With Penguin Subtitle Player, just open your favorite online streaming site, load the subtitle file into the player, and enjoy.

Screenshot 1 Screenshot 2 Screenshot 3

Features

  • 700+ encoding supported (default: UTF8)
  • Auto encoding detection
  • Multiple subtitle formats supported (.srt, .ssa, .ass)
  • Drag & drop file
  • Customizable layout (Frame size, Background color & Opacity, Font style)
  • Time fine tuning (Fast forward / backward with customizable time interval)
  • Skip to specified time (by clicking on the time display)
  • Skip to previous / next subtitle

Download

To download the latest version of Penguin Subtitle Player for Windows, macOS (aka Mac OS X), and Linux, visit one of the download mirrors:

For Linux, it is recommended to download from your package manager instead of using the standalone version. There is also a snap available:

Get it from the Snap Store

  • Ubuntu
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install penguin-subtitle-player

Release Notes

See GitHub Release.

Installation

No installation required.

FAQ

Q: "MSVCP120.dll is missing from your computer." on Windows

A: Download and install Visual C++ Redistributable for Visual Studio 2012

Q: Does it show on the top of both HTML5 fullscreen and Flash fullscreen players?

A: It is tested and confirmed working in Windows, Linux and Mac OSX for both HTML5 and Flash.

Q: Why does the transparency/opacity feature not work for me on Linux?

A: You need to have a compositing window manager set up and enabled.

Developing

Penguin Subtitle Player is a Qt5 project. The executables include statically compiled Qt libraries.

Code formatting

This project uses ClangFormat. To format the code in this project, run:

find . -path "./src/libcharsetdetect" -prune -o \( -name '*.h' -o -name '*.cpp' \) -print | xargs clang-format -i -style=llvm

Libraries

Compilers

  • Windows: VC++ 2012
  • Linux: G++
  • Mac OSX: G++

Check here for deployment details.

Building

The easy way

  1. Download Qt with Qt Creator here
  2. Open the .pro file in Qt Creator
  3. You should be good to go (In case of some weird compilation errors, turn off the shadow build option in projects build settings)

The hard way

  1. Download Qt (Qt Creator is not required) here
  2. Run qmake
qmake PenguinSubtitlePlayer.pro
  1. Build from the makefile generated by qmake
  • G++ (Linux, Mac OSX): make
  • VC++ (Windows): nmake
  • MinGW (Windows): mingw32-make
  1. You should see the executable under build/debug or build/release

In case you would like to deploy a version which does not require Qt libraries in the client's system, consider statically build Qt then qmake with the static option, or change the config line in PenguinSubtitlePlayer.pro to

CONFIG += static \
          c++11

Testing

  1. Run qmake "CONFIG+=test" PenguinSubtitlePlayer.pro
  2. Build from the makefile as described in the Building part
  3. Run the executable

Note: This project is using TravisCI for testing.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Credits

Carson Ip, LMH, Kwanjai

License

Code released under the GNU General Public License version 3.

Alternatives

If Penguin Subtitle Player does not work for you, feel free to try these alternatives:

About

An open-source, cross-platform standalone subtitle player

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 80.3%
  • C 18.7%
  • QMake 1.0%