Skip to content

kjetand/vlc4sfml

Repository files navigation

vlc4sfml

Video rendering support for SFML. The framework supports basic video operations: play, pause, stop, time control and sound control.

Example

Rendering video into a SFML window:

sf::RenderWindow window(...);
sf::Video video("/path/to/video.mp4");
video.play();

while (window.isOpen()) {
  window.clear();
  video.render(window);
  window.display();
}

Status

First working implementation ready.

License

Licensed under the MIT License.

About

Video support for SFML using LibVLC as backend

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published