updates to readme to match

This commit is contained in:
Chris Cochrun 2024-09-14 07:31:34 -05:00
parent c9938df714
commit e9d0bdb5c5

View file

@ -8,15 +8,17 @@ In hind site, I may have been a bit too harsh on how OpenLP chose to create slid
** Features (planned are in parentheses)
- Presents songs lyrics with image and video backgrounds
- Use MPV as a rendering system for videos
- Use FFMPEG as a rendering system for videos
- Simple song creation with a powerful text parser
- Present Slides (PDF) (PowerPoint and Impress are in not implemented yet)
- Present Reveal.js slides
- (Custom slide builder)
- (an intuitive UI) - Still needs A LOT of polish
** MPV
You will need MPV installed in order to use this. All videos run through it. This, however, enables us to make videos work very well and with a lot of control and since it uses ffmpeg underneath, nearly any codec regardless of underlying system. This prevents the need for the user to install other codecs to work with Windows or MacOS. It also means a much easier control system and the potential to stream web content as well without downloading first.
** +MPV+ FFMPEG
We have switched the project to using ffmpeg since QT now uses that by default on all platforms. This means that regardless of platform, all codecs of video /should/ work.
+You will need MPV installed in order to use this. All videos run through it. This, however, enables us to make videos work very well and with a lot of control and since it uses ffmpeg underneath, nearly any codec regardless of underlying system. This prevents the need for the user to install other codecs to work with Windows or MacOS. It also means a much easier control system and the potential to stream web content as well without downloading first.+
** Rust and CXX-QT
CXX-QT is a bridge framework for Rust and Qt. It works by piggybacking off of CXX and is a phenomenal tool to make a Qt app using Rust. More and more, I've been porting things over to Rust in the project using this bridge.