🌍
English
This shows you the differences between two versions of the page.
dev:changes_in_12 [2021/06/30 08:35] plg Has Settings |
dev:changes_in_12 [2021/08/16 10:29] (current) plg |
||
---|---|---|---|
Line 5: | Line 5: | ||
The "Has Settings" properties on plugins, introduced for Piwigo 11, see [[dev:changes_in_2.11#plugin_has_settings|technical changes in version 11]] is now mandatory with the new plugin manager. | The "Has Settings" properties on plugins, introduced for Piwigo 11, see [[dev:changes_in_2.11#plugin_has_settings|technical changes in version 11]] is now mandatory with the new plugin manager. | ||
- | ===== [In Progress] "Multiple formats" for videos ==== | ||
- | |||
- | (pull-request #980) | ||
- | |||
- | When we upload a video (higher than HD) in Piwigo 2.10, it will generate the video in HD to help users to see videos in their gallery if they have a heavy file. | ||
- | To create this feature, we added a new trigger at the end of the upload process called : | ||
- | <code php> | ||
- | trigger_notify('upload_file_end', $example); | ||
- | </code> | ||
- | |||
- | The video is generate with ffmpeg in command line and stored in 'pwg_format'. |