aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Document and improve Docker handling of mounted source code directory.Ben Sturmfels2019-11-194-79/+113
|
* Prevent warning when importing GstPbutils.Ben Sturmfels2019-11-011-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 Olivier Mehani to AUTHORS.Ben Sturmfels2019-09-201-0/+1
|
* Add datetime_format config option.Olivier Mehani2019-09-207-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>
* Merge branch swo-gitignore.Ben Sturmfels2019-09-201-1/+1
|\ | | | | | | Thanks mlynch for the contribution!
| * Add expression to ignore Vim temporary swap files.Ben Sturmfels2019-09-201-2/+1
| | | | | | | | | | I gather that Vim continues back through the alphabet with .swp, swo, swn etc: https://groups.google.com/forum/#!msg/vim_use/JBHSs3kPPJU/X9WeMsZcfWAJ
| * Adding *.swo to gitignoreMichael Lynch2018-11-101-0/+1
| |
* | Note use of direnv with guix.Ben Sturmfels2019-09-191-1/+9
| |
* | metadata_display: Refine spacing.Ben Sturmfels2019-09-181-6/+1
| |
* | metadata_display: Improve default alignment/spacing of metadata.Ben Sturmfels2019-09-181-2/+7
| |
* | Even up top/bottom margins around header dropdown button.Ben Sturmfels2019-09-181-2/+2
| | | | | | | | Bottom margin was less than top margin.
* | Add basic duplicate prevention for batchaddmedia.Ben Sturmfels2019-09-181-3/+18
| |
* | Add omitted --system-site-packages for Python 3 on Guix, add ↵Ben Sturmfels2019-09-181-2/+3
| | | | | | | | update_extlib.sh docs.
* | Update metadata_display plugin for Python 3.Ben Sturmfels2019-09-181-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 Sturmfels2019-09-163-0/+45
| |
* | Reorder Python 2 Dockerfile to install dependencies together.Ben Sturmfels2019-09-161-8/+1
| |
* | Add Python 2 & 3 Docker files for MediaGoblin hacking.Ben Sturmfels2019-09-122-0/+209
| |
* | Work around lack of scikits.audiolab support on Python 3.Ben Sturmfels2019-09-122-1/+29
| |
* | batchaddmedia: Simplify the Python 2 & 3 unicode handling.Ben Sturmfels2019-09-121-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 Sturmfels2019-09-121-13/+13
| |
* | Fix URL-based importing with batchaddmedia command.Ben Sturmfels2019-09-121-2/+18
| | | | | | | | | | The command was raising "io.UnsupportedOperation: seek" for URL-based imports and didn't support HTTPS.
* | Fix bulkupload documentation example.Ben Sturmfels2019-09-121-1/+1
| | | | | | | | | | The `bulkupload` command expects "dc:title", rather than "dcterms:title". Similar for description.
* | Note issues uploading H264 video under Guix.Ben Sturmfels2019-09-121-0/+3
| |
* | Provide an update_extlib.sh alternative for Guix.Ben Sturmfels2019-09-091-3/+7
| |
* | Update guix-env.scm for use with current version of Guix.Ben Sturmfels2019-09-091-39/+43
|/
* require higher version of six due to installation problemsBoris Bobrov2018-08-131-1/+1
|
* Fix saving original of the videoBoris Bobrov2018-07-132-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 formattingBoris Bobrov2018-07-131-3/+2
|
* nitpickingBoris Bobrov2018-07-131-1/+1
|
* close tag in subtitles htmlBoris Bobrov2018-07-121-0/+1
|
* move subtitles out of media streams in htmlBoris Bobrov2018-07-121-4/+4
|
* Merge branch 'transcoding_progress'Boris Bobrov2018-07-1224-80/+576
|\ | | | | | | This probably broke stuff
| * Fixes for small bugsBoris Bobrov2018-07-125-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 Aradhya2017-08-293-11/+8
| |\ | | | | | | | | | | | | Minor changes See merge request !3
| | * Change complimentary_task to complementary_tasvijeth-aradhya2017-08-292-6/+6
| | | | | | | | | | | | Closes #11
| | * Remove self.entry in VideoTranscodervijeth-aradhya2017-08-272-5/+2
| | |
| * | Show default resolution progress in processing panelvijeth-aradhya2017-08-221-1/+9
| | |
| * | Add main_transcoding_progress to ProgressCallbackvijeth-aradhya2017-08-222-3/+9
| | |
| * | Add main_transcoding_progress column migrationvijeth-aradhya2017-08-222-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 gitignorevijeth-aradhya2017-08-221-0/+1
| |
| * Create a seperate test for get_all_mediavijeth-aradhya2017-08-171-3/+24
| |
| * Add test for get_all_media()vijeth-aradhya2017-08-161-1/+20
| | | | | | | | Check for it's returned values.
| * Change webm to webm_video in media_size checkvijeth-aradhya2017-08-141-2/+2
| | | | | | | | Closes #8
| * Merge branch 'master' into 'multiple-qualities-frontend'Vijeth Aradhya2017-08-147-372/+9
| |\ | | | | | | | | | | | | Add multiple video qualities feature See merge request !2
| * | Small changes to fixing transcode percentagevijeth-aradhya2017-08-112-10/+8
| | | | | | | | | | | | Related to #6
| * | Change entry.title to entry.id in loggingvijeth-aradhya2017-08-101-3/+3
| | | | | | | | | | | | Related to #5
| * | Fix percentage reportingvijeth-aradhya2017-08-104-6/+26
| | | | | | | | | | | | | | | | | | | | | Report transcoding_progress as the overall percent of all resolutions. Modify Logging. Closes #6
| * | Add unicode to accomodate title of MediaEntryvijeth-aradhya2017-08-081-3/+3
| | | | | | | | | | | | Related to #5
| * | Replace print statements to loggingvijeth-aradhya2017-08-052-28/+18
| | | | | | | | | | | | Closes #5
| * | Add previous mg css to video playervijeth-aradhya2017-07-311-2/+21
| | |