summaryrefslogtreecommitdiff
path: root/core/helpers/movie.php
AgeCommit message (Collapse)Author
2009-04-05Add a weight column to the items model. Change the album ordering toTim Almdal
use this as the default instead of id. This prepares the way for manual reordering in the organize functionality.
2009-03-18Fix for ticket #153. The sort column was not not initialized forTim Almdal
movies or photos. Turns out that when you go to delete, ORM tries to check for children and apply the sort order.
2009-02-26Update to image_block based on bharat's feedbackTim Almdal
1) move the rand_key column into core 2) don't do a max rand, just try to a get a random number less than the current random number if that doesn't successd look the other way
2009-02-26Remove the commented line $parent->$movie->parent() as the $parentTim Almdal
object was passed in as a parameter.
2009-02-26Added a check to insure that the resize or thumbs image files do notTim Almdal
exists. As per ticket #109
2009-02-25Add support MP4 movies also. Flowplayer supports them and can streamBharat Mediratta
them using the h264streaming plugin. Everything else is a fairly minor change.
2009-02-24File structure style fixesAndy Staudacher
2009-02-231) Optimize the loop in graphics::generate so it uses the $ops as theTim Almdal
key and path. This way it won't try to generate a resize for movies. 2) Changed the options on the ffmpeg command in movie::extract_image so we actually see a frame not the black one that starts the movie.
2009-02-23Remove debug code, thanks Andrew Slayman!Bharat Mediratta
2009-02-22Hardcode all movie mime types to video/x-flv cause that's all we support now ↵Bharat Mediratta
anyway
2009-02-22Very basic movie support. You can upload a FLV file, we use ffmpeg toBharat Mediratta
extract a thumbnail out of it and if you click through we show it using flowplayer.