| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Why did I do that, past self?
|
|
|
|
|
|
|
|
|
|
|
| |
There was a note informing the user that they should be aware that we
encourage them to install from the *master* branch, but we no longer
do that. If they follow our deployment docs, they will pull in &
use the *stable* branch.
Also clarified some root / non-root system usage by either specifying
a leading *hash* symbol to indicate a root-based command, or a
dollar sign to indicate a non-root command.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added information about needed packages for RPM-based systems,
and simplified instructions to rely on the root account rather than
sudo-based instructions.
If a user has sudo access, they can easily add "sudo" to the needed
commands.
Also added information about enabling postgres to start on boot
and how to start it for the current session.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
'adduser' is installed on Debian-based systems by default, but is
not installed by default on Fedora-based systems. 'useradd' is
installed by default on Debian-based systems, as well. The
'useradd'-based command provides the same functionality as
'adduser' in this case, though setting up a 'system' user with
no password.
Per bug 886, I've added the '--user-group' flag, which creates a
mediagoblin group, and assigns the mediagoblin user to this
group, too.
|
|
|
|
|
| |
Fixed link in the docs/source/pluginwriter/api.rst file.
Resolves https://issues.mediagoblin.org/ticket/1019
|
|
|
|
|
| |
These new dependencies are required as part of the 0.8 release.
Fixes https://issues.mediagoblin.org/ticket/5075
|
|\
| |
| |
| |
| | |
Conflicts:
docs/source/siteadmin/deploying.rst
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The function to retrieve tags was used incorrectly in skip_transcode,
assuming that str will be returned.
Now the code is aware of the return format of the function.
Closes bug 5065
|
| |
| |
| |
| |
| | |
Fix an unhandled exception when video fails to transcode for some
reason. Closes bug 460.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
WTForms documentation:
> The TextField alias for StringField is deprecated.
Signed-off-by: Berker Peksag <berker.peksag@gmail.com>
|
| |
| |
| |
| |
| |
| |
| | |
The Goblin image URL was hardcoded in the frontpage welcome
template. Now it correctly uses the static directory settings.
Signed-off-by: Berker Peksag <berker.peksag@gmail.com>
|
| |
| |
| |
| | |
Signed-off-by: Jessica Tallon <jessica@megworld.co.uk>
|
| |
| |
| |
| | |
Signed-off-by: Jessica Tallon <jessica@megworld.co.uk>
|
| | |
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | | |
Reading a file into memory resulted in depletion of memory. Now files
are read and written lazily, by chunks.
|
| | |
| | |
| | |
| | | |
Closes-Bug: 5024
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Why not?
|
| |
| |
| |
| | |
We could probably remove more, but this is a ~reasonable start.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
A stupid thing, really you should never commit binary code into the
repository, but...
This commit sponsored by Richard Fontana. The last sponsored commit!
And one I can imagine Fontana approving of, for he would've disapproved,
surely, of committing .mo files in the first place.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
If we check against expected, if we got more than we expected, that's
no problem :)
This commit sponsored by Adan Bolte. Thank you!
|
| |
| |
| |
| |
| |
| | |
Horray!
This commit sponsored by Rollo Moore. Thank you!
|
| |
| |
| |
| |
| |
| | |
As the exif library adds data, this keeps breaking, which is silly. Maybe using
This commit sponsored by Mikaƫl Cluseau. Thank you!
|
| | |
|
|\ \ |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Gst 1.4 deprecated DiscovererInfo.get_misc in favour of
DiscovererInfo.get_missing_elements_installer_details. Something in
Python bindings seems to be broken and get_misc seems to be not
deprecated but broken.
The change makes sniffer use the method if get_misc fails.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Before only single video stream files were suported.
This patch adds support for files with multiple video streams. Metadata
of such files is now correctly stored. This required change of the
schema used to store info and the change is done in a migration.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Before uploaded media files were checked by extension. This led to
situations when a plugin can support file with specific extension but
doesn't due to lack of codecs, for example. Since the plugin reported
that it supports uploaded file type, the upload was being declared
successful, but transcoding failed.
The failures were not easy to debug.
The change adds a new hook that could allow two-step checking of the
content. The result of the hook execution returns a tuple with
media type name, manager and a callable sniffer, that can be used to
perform probably expensive checks of the content.
Also the change adds implementation of the hook for video.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Includes:
- transcoders
- thumbs
- tests
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Porting includes:
- thumbnailer
- transcoder
- metadata handling
- new common discoverer for media
- new tests with in-memory test video generating
- handling regardless of audio availability in the file
- Pythonic gst pipelines
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previous thumbnailer didn't always work properly. It was also not ready
to be ported to GStreamer 1.0
The rewrite makes it shorter, more pythonic and prepares it for porting.
- no longer uses playbin2;
- is tested
- logs some events
- previous thumbnailer is removed
|