🌍
English
This shows you the differences between two versions of the page.
— |
dev:changes_in_13 [2021/08/16 10:30] (current) plg created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Technical changes in Piwigo 13 ====== | ||
+ | ===== [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'. |