I'm putting together an OpenFrameworks app that has to play video and display images. I want to be able to handle errors in both (for example, someone passes an incorrect path or the video can't be played for lack of codecs, etc).
I can see a bunch of errors traces showing up:
OF_ERROR: FSPathMakeRef failed -43
OF_ERROR: Error loading movie
OF_ERROR: ofVideoPlayer::play - movie not loaded!
OF_ERROR: ofVideoPlayer: movie not loaded!
But I can't find in the docs a clean way to handle such errors. Some kind of event, either coming from the VideoPlayer or global?
At the moment I'm simply checking whether VideoPlayer.getDuration() is > 0, but I'd rather have something more robust than that.
Just for the record, I'm using OF 0,062 through Haxe bindings.