Video player

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Post Reply
dart_theg
Posts: 77
Joined: Sun Dec 29, 2024 3:13 am

Video player

Post by dart_theg »

Any recommended video player objects for modern Irrlicht?
chronologicaldot
Competition winner
Posts: 702
Joined: Mon Sep 10, 2012 8:51 am

Re: Video player

Post by chronologicaldot »

I seem to recall there was a video player that someone created with Irrlicht, but that was quite some time ago and a number of versions of Irrlicht ago. Maybe Irrlicht 1.7? If you can find their code, you might be able to rehack and reintegrate it with Irrlicht. But alas, I'm sorry I don't have the link to that code anymore. It's somewhere buried on the forum.
n00bc0de
Posts: 130
Joined: Tue Oct 04, 2022 1:21 am

Re: Video player

Post by n00bc0de »

I wrote a library for loading and playing theora videos. It works just fine with modern irrlicht. Here is the link to my post about it: viewtopic.php?t=52960
dart_theg
Posts: 77
Joined: Sun Dec 29, 2024 3:13 am

Re: Video player

Post by dart_theg »

Actually I just found this...
https://github.com/Phirxian/irrlicht-ad ... deo-player

Seems like a contender.
n00bc0de
Posts: 130
Joined: Tue Oct 04, 2022 1:21 am

Re: Video player

Post by n00bc0de »

dart_theg wrote: Mon Mar 30, 2026 7:24 pm Actually I just found this...
https://github.com/Phirxian/irrlicht-ad ... deo-player

Seems like a contender.
That is a pretty cool find. I was hesitant to use ffmpeg in the past because of the patents on the format but from what I understand that patent has either been given up or expired. I might look into adapting some of this myself once I clarify the status of those patents.
dart_theg
Posts: 77
Joined: Sun Dec 29, 2024 3:13 am

Re: Video player

Post by dart_theg »

Sounds good. Please keep us posted here on the forums about that, it would be really useful
n00bc0de
Posts: 130
Joined: Tue Oct 04, 2022 1:21 am

Re: Video player

Post by n00bc0de »

I did some digging and the patents seem to be related to the H264 codec and possibly MPEG-4. If you don't use the non-free and non-gpl flags when building you should be fine but you might want to checkout the FAQ here: https://www.ffmpeg.org/legal.html
Post Reply