Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.