summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/movie.php
AgeCommit message (Collapse)Author
2009-09-07Quiet down ffmpeg in movie::extract_frame()Bharat Mediratta
2009-07-16Second non-trivial change to the event code. We now publish modelBharat Mediratta
related events from within the model handling code. The only exception to this currently is item_created which is challenging because we have to save the item using ORM_MPTT::add_to_parent() before the object itself is fully set up. When we get that down to one call to save() we can publish that event from within the model also.
2009-07-14Add /opt/bin as a binary path.Bharat Mediratta
2009-07-02ORM::Factory -> ORM::factoryBharat Mediratta
2009-06-24Look in /opt/local/bin for binaries, too.Bharat Mediratta
Fixes ticket #423.
2009-06-16Use a placeholder image if ffmpeg is missing instead of throwing anBharat Mediratta
exception which would get silently swallowed by swfUpload.
2009-06-12Add /usr/local/bin to PATH before trying to detect binaries.Bharat Mediratta
2009-06-09Check in /usr/local/bin for ffmpeg, and create the setting even if itsBharat Mediratta
empty (to make it easier for folks to change it in Admin > Settings > Advanced)
2009-05-31Relax the regex we use to extract the movie size so that it works withBharat Mediratta
the new version of ffmpeg that I have on my dev box (ffmpeg 0.5-svn17737+3:0.svn20090303-1)
2009-05-27Update all references to the core application to now point to theBharat Mediratta
gallery module. This type of mass update is prone to some small bugs.
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.