Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | batchaddmedia: Simplify the Python 2 & 3 unicode handling. | Ben Sturmfels | 2019-09-12 | 1 | -59/+12 | |
| | | | | | | | | | | | | | | | | | | To avoid issues with quotes, I've replaced the manual CSV handling with csv.DictReader and simplified the unicode handling down to a single line. I don't believe any special encoding is required when writing to the database. This has been tested by importing a CSV with braille characters on Python 3 and Python 2. | |||||
* | | Remove unicode literals in batchaddmedia. | Ben Sturmfels | 2019-09-12 | 1 | -13/+13 | |
| | | ||||||
* | | Fix URL-based importing with batchaddmedia command. | Ben Sturmfels | 2019-09-12 | 1 | -2/+18 | |
| | | | | | | | | | | The command was raising "io.UnsupportedOperation: seek" for URL-based imports and didn't support HTTPS. | |||||
* | | Fix bulkupload documentation example. | Ben Sturmfels | 2019-09-12 | 1 | -1/+1 | |
| | | | | | | | | | | The `bulkupload` command expects "dc:title", rather than "dcterms:title". Similar for description. | |||||
* | | Note issues uploading H264 video under Guix. | Ben Sturmfels | 2019-09-12 | 1 | -0/+3 | |
| | | ||||||
* | | Provide an update_extlib.sh alternative for Guix. | Ben Sturmfels | 2019-09-09 | 1 | -3/+7 | |
| | | ||||||
* | | Update guix-env.scm for use with current version of Guix. | Ben Sturmfels | 2019-09-09 | 1 | -39/+43 | |
|/ | ||||||
* | require higher version of six due to installation problems | Boris Bobrov | 2018-08-13 | 1 | -1/+1 | |
| | ||||||
* | Fix saving original of the video | Boris Bobrov | 2018-07-13 | 2 | -2/+3 | |
| | | | | | | | | | Original of the video was not saved because info about it was not written to the database. Fixed that. Also removed original video from get_all_media listing. The method is weird, we should evaluate whether it is video-specific and how to generalize it. | |||||
* | simplify an if and fix string formatting | Boris Bobrov | 2018-07-13 | 1 | -3/+2 | |
| | ||||||
* | nitpicking | Boris Bobrov | 2018-07-13 | 1 | -1/+1 | |
| | ||||||
* | close tag in subtitles html | Boris Bobrov | 2018-07-12 | 1 | -0/+1 | |
| | ||||||
* | move subtitles out of media streams in html | Boris Bobrov | 2018-07-12 | 1 | -4/+4 | |
| | ||||||
* | Merge branch 'transcoding_progress' | Boris Bobrov | 2018-07-12 | 24 | -80/+576 | |
|\ | | | | | | | This probably broke stuff | |||||
| * | Fixes for small bugs | Boris Bobrov | 2018-07-12 | 5 | -19/+34 | |
| | | | | | | | | | | There were some blocking issues in the code. They are small, but break tests and/or production. Fixed some of them. | |||||
| * | Merge branch 'multiple-qualities-frontend' into 'transcoding_progress' | Vijeth Aradhya | 2017-08-29 | 3 | -11/+8 | |
| |\ | | | | | | | | | | | | | Minor changes See merge request !3 | |||||
| | * | Change complimentary_task to complementary_tas | vijeth-aradhya | 2017-08-29 | 2 | -6/+6 | |
| | | | | | | | | | | | | Closes #11 | |||||
| | * | Remove self.entry in VideoTranscoder | vijeth-aradhya | 2017-08-27 | 2 | -5/+2 | |
| | | | ||||||
| * | | Show default resolution progress in processing panel | vijeth-aradhya | 2017-08-22 | 1 | -1/+9 | |
| | | | ||||||
| * | | Add main_transcoding_progress to ProgressCallback | vijeth-aradhya | 2017-08-22 | 2 | -3/+9 | |
| | | | ||||||
| * | | Add main_transcoding_progress column migration | vijeth-aradhya | 2017-08-22 | 2 | -0/+29 | |
| |/ | | | | | | | | | | | | | This field is required to store the progress of the default resolution of the media. So, we now store the total progress of transcoding the video in 'transcoding_progress' and progress of transcoding the default resolution in 'main_transcoding_progress'. | |||||
| * | Add videojs-resolution-switcher to gitignore | vijeth-aradhya | 2017-08-22 | 1 | -0/+1 | |
| | | ||||||
| * | Create a seperate test for get_all_media | vijeth-aradhya | 2017-08-17 | 1 | -3/+24 | |
| | | ||||||
| * | Add test for get_all_media() | vijeth-aradhya | 2017-08-16 | 1 | -1/+20 | |
| | | | | | | | | Check for it's returned values. | |||||
| * | Change webm to webm_video in media_size check | vijeth-aradhya | 2017-08-14 | 1 | -2/+2 | |
| | | | | | | | | Closes #8 | |||||
| * | Merge branch 'master' into 'multiple-qualities-frontend' | Vijeth Aradhya | 2017-08-14 | 7 | -372/+9 | |
| |\ | | | | | | | | | | | | | Add multiple video qualities feature See merge request !2 | |||||
| * | | Small changes to fixing transcode percentage | vijeth-aradhya | 2017-08-11 | 2 | -10/+8 | |
| | | | | | | | | | | | | Related to #6 | |||||
| * | | Change entry.title to entry.id in logging | vijeth-aradhya | 2017-08-10 | 1 | -3/+3 | |
| | | | | | | | | | | | | Related to #5 | |||||
| * | | Fix percentage reporting | vijeth-aradhya | 2017-08-10 | 4 | -6/+26 | |
| | | | | | | | | | | | | | | | | | | | | | Report transcoding_progress as the overall percent of all resolutions. Modify Logging. Closes #6 | |||||
| * | | Add unicode to accomodate title of MediaEntry | vijeth-aradhya | 2017-08-08 | 1 | -3/+3 | |
| | | | | | | | | | | | | Related to #5 | |||||
| * | | Replace print statements to logging | vijeth-aradhya | 2017-08-05 | 2 | -28/+18 | |
| | | | | | | | | | | | | Closes #5 | |||||
| * | | Add previous mg css to video player | vijeth-aradhya | 2017-07-31 | 1 | -2/+21 | |
| | | | ||||||
| * | | Modify video.html to add video-resolution-switcher plugin | vijeth-aradhya | 2017-07-23 | 1 | -27/+14 | |
| | | | ||||||
| * | | Add change-video-resolution.js to start video-resolution-switcher plugin | vijeth-aradhya | 2017-07-23 | 1 | -0/+27 | |
| | | | ||||||
| * | | Add video-resolution-switcher (video.js plugin) v0.4.2 | vijeth-aradhya | 2017-07-23 | 2 | -0/+2 | |
| | | | ||||||
| * | | Change video.js version to v5.20.1 | vijeth-aradhya | 2017-07-23 | 2 | -2/+2 | |
| | | | ||||||
| * | | Revert "Modify video template to accomodate multiple resolutions" | vijeth-aradhya | 2017-07-23 | 1 | -14/+27 | |
| | | | | | | | | | | | | This reverts commit f6ba0e561bfb62991d70a4c002edf142d9d7540c. | |||||
| * | | Revert "Add change-video-resolution.js to start the plugin" | vijeth-aradhya | 2017-07-23 | 1 | -43/+0 | |
| | | | | | | | | | | | | This reverts commit e44c4569c7f7ac4b0b1c8470f38f7f1d09dd00f8. | |||||
| * | | Revert "Modify video-js link folder and change version" | vijeth-aradhya | 2017-07-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | This reverts commit 0e49df65fea13b15c5566f2ee44842feaeaaccd0. | |||||
| * | | Revert "Add video-resolution-switcher (v0.4.2) plugin" | vijeth-aradhya | 2017-07-23 | 16 | -1181/+0 | |
| | | | | | | | | | | | | This reverts commit 19d7c450706df1aae74003fcfcfa03d17ebd6f54. | |||||
| * | | Add video-resolution-switcher (v0.4.2) plugin | vijeth-aradhya | 2017-07-18 | 16 | -0/+1181 | |
| | | | ||||||
| * | | Modify video-js link folder and change version | vijeth-aradhya | 2017-07-18 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add change-video-resolution.js to start the plugin | vijeth-aradhya | 2017-07-16 | 1 | -0/+43 | |
| | | | ||||||
| * | | Modify video template to accomodate multiple resolutions | vijeth-aradhya | 2017-07-16 | 1 | -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 MediaEntryMixin | vijeth-aradhya | 2017-07-16 | 1 | -0/+27 | |
| | | | | | | | | | | | | | | | Returns all available qualties of a media with it's dimensions and resolution label. | |||||
| * | | Add property to media_fetch_order | vijeth-aradhya | 2017-07-03 | 1 | -1/+10 | |
| | | | | | | | | | | | | | | | Due to configurable resolution settings, this change is necessary to set the default resolution and the others. | |||||
| * | | Fix test_accepted_resolutions | vijeth-aradhya | 2017-06-27 | 1 | -6/+7 | |
| | | | | | | | | | | | | Add {'webm': (640, 640)} | |||||
| * | | Implement copy_original and _keep_best | vijeth-aradhya | 2017-06-25 | 2 | -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 resolutions | vijeth-aradhya | 2017-06-25 | 1 | -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_resolutions | vijeth-aradhya | 2017-06-25 | 2 | -1/+22 | |
| | | |