Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Revert "Decode request.query_string before use." | Ben Sturmfels | 2020-04-09 | 4 | -12/+13 | |
| | | | | This reverts commit b6fba854007bb4392846085a60178c44dbd7989e. | |||||
* | Decode request.query_string before use. | Ben Sturmfels | 2020-04-09 | 4 | -13/+12 | |
| | | | | | | | | | | | This doesn't seem to be an issue in my Guix SD/Python 3.7 testing, but hit an issue on Debian 9/Python3.5 where concatenating text to `request.query_string` was causing the error: TypeError: a bytes-like object is required, not 'str' This clearly hasn't been an issue in the past though, so I suspect there's a library somewhere that's on a different version and is behaving differently. | |||||
* | Fix Jorge's audio upload workaround in Python 3. | Ben Sturmfels | 2020-04-07 | 1 | -2/+2 | |
| | | | | Unfortunately now the player isn't showing up because there's no thumbnail. | |||||
* | Note possible future steps for Python 3 audio thumbnailing. | Ben Sturmfels | 2020-04-02 | 1 | -0/+4 | |
| | ||||||
* | Use audio icon when spectrogram fails. Add note to doc:media-types. | Jorge | 2020-04-02 | 1 | -17/+34 | |
| | | | | | | | | | | In addition to side-stepping spectrograms completely in Python 3 in 1038aea8, this commit adds some fallbacks that will help with potential issues in Python 2. Fixes Issue #5457 Signed-off-by: Ben Sturmfels <ben@sturm.com.au> Author: Jorge <mediagoblin@gybs.waa> | |||||
* | Add visual feedback on link hover | Muto | 2020-04-02 | 1 | -0/+17 | |
| | | | | Signed-off-by: Ben Sturmfels <ben@sturm.com.au> | |||||
* | Fix audio thumbnailing once and for all. | Ben Sturmfels | 2020-04-01 | 1 | -3/+24 | |
| | | | | | | | | | | This change adds a Python 3-specific audio thumbnailer that side-steps the bundled Python 2-only `audioprocessing` module. Instead of an audio spectrogram, Python 3 users will get a static image. This also allows me to remove my ineffective customisations to `audioprocessing`, returning it to the upstream version as should always be the case for vendored code in "extlib". | |||||
* | Handle moved SharedDataMiddleware in werkzeug >= 0.15.0. | Ben Sturmfels | 2020-04-01 | 1 | -2/+5 | |
| | ||||||
* | Use items() for Python 3 support. | Ben Sturmfels | 2019-11-27 | 1 | -1/+1 | |
| | ||||||
* | Extend install instructions for raven plugin. | Ben Sturmfels | 2019-11-27 | 1 | -1/+3 | |
| | ||||||
* | Prevent warning when importing GstPbutils. | Ben Sturmfels | 2019-11-01 | 1 | -0/+1 | |
| | | | | | | Warning was: PyGIWarning: GstPbutils was imported without specifying a version first. Use gi.require_version('GstPbutils', '1.0') before import to ensure that the right version gets loaded. | |||||
* | Add datetime_format config option. | Olivier Mehani | 2019-09-20 | 7 | -10/+13 | |
| | | | | | | | Moves the datetime_format used in various places to the config and allows a global override per site. Signed-off-by: Ben Sturmfels <ben@sturm.com.au> | |||||
* | metadata_display: Refine spacing. | Ben Sturmfels | 2019-09-18 | 1 | -6/+1 | |
| | ||||||
* | metadata_display: Improve default alignment/spacing of metadata. | Ben Sturmfels | 2019-09-18 | 1 | -2/+7 | |
| | ||||||
* | Even up top/bottom margins around header dropdown button. | Ben Sturmfels | 2019-09-18 | 1 | -2/+2 | |
| | | | | Bottom margin was less than top margin. | |||||
* | Add basic duplicate prevention for batchaddmedia. | Ben Sturmfels | 2019-09-18 | 1 | -3/+18 | |
| | ||||||
* | Update metadata_display plugin for Python 3. | Ben Sturmfels | 2019-09-18 | 1 | -1/+1 | |
| | | | | | | | Switching from iteritems() to items() is technically less memory efficient on Python 2, but this appeared be a significantly cleaner approach than adding six to the template context. It's also the right choice assuming the project will at some point go Python 3 only. | |||||
* | Add Python 3 docker-compose recipe for MediaGoblin hacking. | Ben Sturmfels | 2019-09-16 | 1 | -0/+9 | |
| | ||||||
* | 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 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 | 22 | -79/+573 | |
|\ | | | | | | | 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'. | |||||
| * | 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 | 6 | -372/+8 | |
| |\ | | | | | | | | | | | | | 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 | 1 | -0/+1 | |
| | | | ||||||
| * | | Change video.js version to v5.20.1 | vijeth-aradhya | 2017-07-23 | 1 | -1/+1 | |
| | | | ||||||
| * | | 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. |