aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Add video-resolution-switcher (video.js plugin) v0.4.2vijeth-aradhya2017-07-231-0/+1
| | |
| * | Change video.js version to v5.20.1vijeth-aradhya2017-07-231-1/+1
| | |
| * | Revert "Modify video template to accomodate multiple resolutions"vijeth-aradhya2017-07-231-14/+27
| | | | | | | | | | | | This reverts commit f6ba0e561bfb62991d70a4c002edf142d9d7540c.
| * | Revert "Add change-video-resolution.js to start the plugin"vijeth-aradhya2017-07-231-43/+0
| | | | | | | | | | | | This reverts commit e44c4569c7f7ac4b0b1c8470f38f7f1d09dd00f8.
| * | Revert "Modify video-js link folder and change version"vijeth-aradhya2017-07-231-1/+1
| | | | | | | | | | | | This reverts commit 0e49df65fea13b15c5566f2ee44842feaeaaccd0.
| * | Revert "Add video-resolution-switcher (v0.4.2) plugin"vijeth-aradhya2017-07-231-1/+0
| | | | | | | | | | | | This reverts commit 19d7c450706df1aae74003fcfcfa03d17ebd6f54.
| * | Add video-resolution-switcher (v0.4.2) pluginvijeth-aradhya2017-07-181-0/+1
| | |
| * | Modify video-js link folder and change versionvijeth-aradhya2017-07-181-1/+1
| | |
| * | Add change-video-resolution.js to start the pluginvijeth-aradhya2017-07-161-0/+43
| | |
| * | Modify video template to accomodate multiple resolutionsvijeth-aradhya2017-07-161-27/+14
| | | | | | | | | | | | | | | | | | Add required JS/CSS plugin files. Add JS file to fire up the plugin. Modify video tag accordingly.
| * | Add get_all_media() in MediaEntryMixinvijeth-aradhya2017-07-161-0/+27
| | | | | | | | | | | | | | | Returns all available qualties of a media with it's dimensions and resolution label.
| * | Add property to media_fetch_ordervijeth-aradhya2017-07-031-1/+10
| | | | | | | | | | | | | | | Due to configurable resolution settings, this change is necessary to set the default resolution and the others.
| * | Fix test_accepted_resolutionsvijeth-aradhya2017-06-271-6/+7
| | | | | | | | | | | | Add {'webm': (640, 640)}
| * | Implement copy_original and _keep_bestvijeth-aradhya2017-06-252-10/+38
| | | | | | | | | | | | | | | _keep_best is changed to keep_best now, and is added in processing_cleanup. webm is added to ACCEPTED_RESOLUTIONS.
| * | Test whether video is transcoded to all resolutionsvijeth-aradhya2017-06-251-3/+11
| | | | | | | | | | | | | | | | | | After `self.check_normal_upload`, query the database and check whether the video got transcoded to all the required resolutions.
| * | Test accepted_files and accepted_resolutionsvijeth-aradhya2017-06-252-1/+22
| | |
| * | Add test_chord for TestSubmissionVideovijeth-aradhya2017-06-251-8/+74
| | | | | | | | | | | | | | | Testing the arguments passed to celery.chord when a video is submitted.
| * | Add VideoProcessingManager.workflow() testsvijeth-aradhya2017-06-251-0/+69
| | | | | | | | | | | | Testing workflow method including its return data.
| * | Use tuple as default return type of workflow()vijeth-aradhya2017-06-212-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | If None, then schedule the old Celery call, else the format is group and a single task in the tuple. Hence, Celery chord would be ideal to use. Closes #4
| * | Add choice of video resolutions for instance ownervijeth-aradhya2017-06-202-12/+28
| | | | | | | | | | | | | | | | | | | | | The instance owner can choose from the list of available resolutions. ['144p', '240p', '360p', '480p', '720p', '1080p'] Also, the default resolution is now set to 480p and the instance owner can choose the default resolution from that list as well.
| * | Render webm_480 as default if webm_video is absentvijeth-aradhya2017-06-173-4/+11
| | | | | | | | | | | | | | | | | | | | | Currently, webm_video is still the higher priority in media_fetch_oder as older versions should not be broken. So, webm_480p (main_task) will be rendered by default for newer versions. All tests pass at this point.
| * | Fix test_celery_setup errorvijeth-aradhya2017-06-171-2/+3
| | | | | | | | | | | | Add mediagoblin.media_types.video.processing as a task module.
| * | Simple hack to handle main workflow problemvijeth-aradhya2017-06-179-47/+15
| | | | | | | | | | | | | | | | | | | | | Remove redundunt workflow methods from the other media type's processing.py. Fixes #1
| * | Celery concurrency is set to onevijeth-aradhya2017-06-131-1/+1
| | |
| * | Add complimentary_tasks to the celery groupvijeth-aradhya2017-06-131-10/+7
| | | | | | | | | | | | | | | Add a couple of complimentary_tasks to check if priority is working or not.
| * | Individual resolution transcoding fixesvijeth-aradhya2017-06-132-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | Few minor changes which fix the errors. Although, the user still cannot view the video since the front end part needs to changed. Fixes #3
| * | Celery Priority testing with debug statementsvijeth-aradhya2017-06-1310-47/+80
| | | | | | | | | | | | | | | | | | Error at this line: `self.entry.set_file_metadata(self.curr_file, **file_metadata)` Otherwise, celery part should work fine.
| * | Few more changes to celery priority taskingvijeth-aradhya2017-06-121-11/+16
| | | | | | | | | | | | Addition of arguments to the celery tasks.
| * | Add priority to the celery tasksvijeth-aradhya2017-06-129-21/+42
| | | | | | | | | | | | | | | Few more changes to be made before executing the tasks. Also #1 should be handled soon after this.
| * | Add additional celery config settingsvijeth-aradhya2017-06-113-3/+15
| | | | | | | | | | | | | | | | | | Fixes older webm_video backward compatibilty issue. Add 'default' queue to be used from now. Add other necessary celery settings for priority.
| * | Merge branch 'master' into 'multiple-qualities-backend'Vijeth Aradhya2017-06-106-12/+12
| |\ \ | | | | | | | | | | | | | | | | RabbitMQ addition in master See merge request !1
| * | | Add main_task, complimentary_task and cleanupvijeth-aradhya2017-06-091-0/+25
| | | |
| * | | Modify CommonVideoPrcoessor to accomodate mulitple qualitiesvijeth-aradhya2017-06-091-47/+37
| | | | | | | | | | | | | | | | | | | | A few trivial modifciations like replacing store_metadata, etc needed to accomodate multiple qualities.
| * | | Add workflow method to other media ProcessingManagersvijeth-aradhya2017-06-056-0/+31
| | | | | | | | | | | | | | | | | | | | Add workflow method to all the media types other than video. Calls the old celery task as it is.
| * | | Add workflow method to VideoProcessingManagervijeth-aradhya2017-06-053-5/+13
| | | | | | | | | | | | | | | | | | | | This commit makes sure the old celery call works perfectly when workflow method is introduced.
| * | | Add workflow method to ProcessingManagervijeth-aradhya2017-06-041-0/+7
| | | | | | | | | | | | | | | | | | | | This method just raises NotImplementedError if the specific media processing manager does not have a workflow method.
| * | | media_types/video/processing.py: Move store_metadatavijeth-aradhya2017-06-021-11/+11
| | | | | | | | | | | | | | | | | | | | Move store_metadata to self.common_setup() so that it's easy to parallelize self.transcode() later.
| * | | media_types/video/util.py: Add accepted resolutionsvijeth-aradhya2017-05-311-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | Add dict consisting of all the accepted resolutions with their dimensions. This should be eventually moved to config where the instance owner can modify it.
* | | | always guess the same filetypeBoris Bobrov2018-07-121-2/+5
| | | |
* | | | finally fix url validatorBoris Bobrov2018-07-121-2/+2
| | | |
* | | | Revert "Revert "Import messages in blog views""Boris Bobrov2018-07-121-1/+1
| | | | | | | | | | | | | | | | This reverts commit 8c36ec5246828e3c99d956edd8524f3ade430571.
* | | | fix typoBoris Bobrov2018-07-111-1/+1
| | | |
* | | | fix auth error and simplify url and email checksBoris Bobrov2018-07-112-18/+11
| | | |
* | | | remove requirement for the file to be with single dot in nameBoris Bobrov2018-07-111-11/+2
| | | |
* | | | fix default gmg help messageBoris Bobrov2018-07-111-1/+4
| | | |
* | | | Merge remote-tracking branch 'gsoc2016/Subtitle-1'Boris Bobrov2018-07-1022-6/+794
|\ \ \ \
| * | | | Fixed Copyright Headerssaksham11152016-08-168-12/+12
| | | | |
| * | | | Tests for handling customize interface exceptionsaksham11152016-08-131-2/+19
| | | | |
| * | | | Exceptional handling for customizing subitlessaksham11152016-08-132-24/+60
| | | | |
| * | | | Added basic tests for the subtitle pluginsaksham11152016-08-123-41/+51
| | | | |