
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (48)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7204)
-
avcodec/libx265 : improve full range flag setting logic
17 août 2021, par Jan Ekströmavcodec/libx265 : improve full range flag setting logic
Unlike libx264, libx265 does not have a separate "unspecified"/"auto"
default for color range, so we do always have to specify it.
Thus, we are required to handle the RGB case on the libavcodec
side to enable the correct value to be written out in in case
of RGB content with unspecified color range being received.In other words :
1. If the user has set color range specifically, follow that.
2. If the user has not set color range specifically, set full
range by default in case of RGB and YUVJ pixel formats. -
add full screen image to mp4 by ffmpeg
7 septembre 2021, par qbhti want to add a 1920 x 1080 image to 720p and 1080p video from 0 to 5 second (source will be different resolution) and add another image same resoltion to second 10to15 second and another image to 20 to 25 socond


i used


ffmpeg -i 1080.mp4 -i id1.png -i id2.png -i id3.png -map_metadata -1
-s hd720 -c:v h264 \
-crf 26 \
-c:a aac -b:a 128k -strict -2 \
-preset veryfast \
-filter_complex \ "[0:v][1:v] overlay=0:0:enable='between(t,0,5)' [tmp]; \ [tmp][2:v] overlay=0:0:enable='between(t,10,15)'[tmp];\
[tmp][3:v] overlay=0:0:enable='between(t,20,25)'" \ 720p.mp4



issue is source size i dont know how to use
scale2ref=w=oh*mdar:h=ih*1.0
in my code

-
swscale/utils : Use full chroma interpolation for rgb4/8 and dither none
8 juillet 2021, par Michael Niedermayerswscale/utils : Use full chroma interpolation for rgb4/8 and dither none
Dither none is only implemented in full chroma interpolation for these rgb formats
Its also a obscure choice (producing less nice images) that implementing it in the
other code-paths makes no senseSigned-off-by : Michael Niedermayer <michael@niedermayer.cc>