aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added pdf ResizerRodney Ewing2013-08-161-1/+52
|
* Added pdf Initial processorRodney Ewing2013-08-161-46/+137
|
* added file argument to video resizer and added ascii resizerRodney Ewing2013-08-162-2/+54
|
* Added initial processor for ascii mediaRodney Ewing2013-08-161-95/+142
|
* added video transcoderRodney Ewing2013-08-162-13/+72
|
* Added thumbnail resizer for videoRodney Ewing2013-08-161-0/+36
|
* use type=float for audio vorbis qualityRodney Ewing2013-08-161-0/+1
|
* Added Initial processor for videoRodney Ewing2013-08-162-104/+180
|
* added audio reprocessing transcoderRodney Ewing2013-08-161-1/+37
|
* just use the default quality when creating a thumbnail or spectrogramRodney Ewing2013-08-161-15/+9
|
* add audio thumbnail and spectrogram resizerRodney Ewing2013-08-161-0/+64
|
* fetch spectrogram for thumbnail creation, create spectrogram if not foundRodney Ewing2013-08-161-9/+17
|
* forgot nargs=2Rodney Ewing2013-08-161-0/+1
|
* audio processing code cleanupRodney Ewing2013-08-161-136/+6
|
* should store file as webm_audio instead of mediumRodney Ewing2013-08-161-2/+2
|
* media:thumb not medium:thumb :)Rodney Ewing2013-08-161-2/+2
|
* use name_builder with store_public, not create_pub_filepathRodney Ewing2013-08-161-18/+19
|
* common_setup() must be the first processing stepRodney Ewing2013-08-161-1/+2
|
* Audio Initial ProcessorRodney Ewing2013-08-163-7/+202
|
* remove old codeRodney Ewing2013-08-162-119/+0
|
* bulk_run reprocessing completeRodney Ewing2013-08-161-5/+19
|
* Resize all processed thumbsRodney Ewing2013-08-161-2/+40
|
* wrap get_entry_and_processing_manager in try, except blockRodney Ewing2013-08-161-22/+30
|
* run initial processing on all failed entriesRodney Ewing2013-08-162-3/+21
|
* add bulk_run, thumbs, and initial sub_commandsRodney Ewing2013-08-163-25/+98
|
* remove ProcessingStateRodney Ewing2013-08-161-82/+0
|
* delete existing file in store_publicRodney Ewing2013-08-161-1/+4
|
* Add image resizer and some cleanup of old codeRodney Ewing2013-08-163-187/+58
|
* Fix (by Rodney Ewing) for processing, specifically the way resize_tool was ↵Christopher Allan Webber2013-08-161-5/+2
| | | | | | being called Thanks for fixing, Rodney :)
* Don't forget to run copy_original()! That's critical!Christopher Allan Webber2013-08-161-0/+1
| | | | This commit sponsored by Tony Schmidt. Thank you!
* Fixing ./bin/gmg reprocess available, which I broke :)Christopher Allan Webber2013-08-161-2/+3
|
* Trying to fix the bug that's happening to rodney757 but not to me ;)Christopher Allan Webber2013-08-161-4/+5
|
* Revert "use parser.parse_known_args() instead of parser.parse_args()"Christopher Allan Webber2013-08-166-45/+30
| | | | | | | | | | | | | | This reverts commit 029e779c468ba1a6bfd893679cfaae7f418f45dd. (and a bit more!) This wasn't needed anymore because we did a "rest" capture and passed that over to the reprocess run command. Conflicts: mediagoblin/gmg_commands/assetlink.py mediagoblin/gmg_commands/dbupdate.py mediagoblin/gmg_commands/import_export.py mediagoblin/gmg_commands/users.py
* Fixing normal submission of media (well for images anyway)Christopher Allan Webber2013-08-162-1/+3
|
* A couple of fixes to stupid things I did while coding this. And it WORKS!Christopher Allan Webber2013-08-161-9/+19
| | | | This commit sponsored by José María Serralde Ruiz. Thank you!
* Fixing the MediaProcessor context manager so it actually, you know, works :)Christopher Allan Webber2013-08-161-0/+1
| | | | This commit sponsored by Mikiya Okuno. Thank you!
* Theoretically the last steps to get reprocessing working for initial & imagesChristopher Allan Webber2013-08-162-25/+79
| | | | | | Haven't tested it yet though :) This commit sponsored by Samuel Bächler. Thank you!
* Factored the get_orig_filename from processing state and put it to use.Christopher Allan Webber2013-08-162-2/+44
| | | | This commit sponsored by Vincent Demeester. Thank you!
* Record the original state of the media entry in the processorChristopher Allan Webber2013-08-162-4/+7
| | | | | | | This allows our processor to make some informed decisions based on the state by still having access to the original state. This commit sponsored by William Rico. Thank you!
* Marking the initial steps for processingChristopher Allan Webber2013-08-161-0/+18
|
* Renaming the processing manager stuff to be less ambiguous.Christopher Allan Webber2013-08-163-9/+16
| | | | | | BONUS COMMIT to Ben Finney and the Free Software Melbourne crew. :) IRONY: Initially I committed this as "media manager".
* That manager.process() line no longer made senseChristopher Allan Webber2013-08-161-1/+0
|
* Updating to the point where we can allllmost run with the new reprocessing codeChristopher Allan Webber2013-08-164-48/+64
| | | | This commit sponsored by Odin Hørthe Omdal. Thank you!
* Should be enough to get to the point where you can actually initialize a ↵Christopher Allan Webber2013-08-163-8/+23
| | | | | | | | processing command now. However, it doesn't celery task-ify it... This commit sponsored by Catalin Cosovanu. Thank you!
* Steps toward working "run" reprocessing command.Christopher Allan Webber2013-08-163-11/+58
| | | | This commit sponsored by Philippe Casteleyn. Thank you!
* Moving celery setup to the right placeChristopher Allan Webber2013-08-161-4/+4
| | | | This commit sponsored by Jose Manuel Zueco Lazaro. Thank you!
* Whitespacin' it up.Christopher Allan Webber2013-08-161-0/+3
|
* `gmg reprocess available --action-help` now tells you processor arguments!Christopher Allan Webber2013-08-163-15/+31
| | | | | Every reprocessing action possible can inform you of its command line argument stuff! Is that awesome or what?
* "initial" reprocessing subcommand now works!Christopher Allan Webber2013-08-164-10/+99
| | | | | | | We are on our way now to a working reprocessing system under this redesign! This commit sponsored by Bjarni Rúnar Einarsson. Thank you!
* More progress towards the new reprocessing infrastructure: args updatingChristopher Allan Webber2013-08-163-23/+75
| | | | This commit sponsored by Elizabeth Webber. Thanks, sis!