
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (53)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6046)
-
Using FFMPEG to add pillar bars
10 février 2021, par Ewok BBQI have transferred some film to video files from 16mm (native 4:3). The image looks great.


When I scanned them, I scanned to a native 16:9. As I overscanned them, I got the entire height of the frame, which is what I want. But it also got the soundtrack and perforation. But I want to go just to the frame line on the sides as well.


I can CROP the image down with FFMPEG to remove the information outside of the framing I want [-vf crop=1330:1080:00:00].
I know this will result in a non-standard aspect ratio.
This plays fine on a computer (vlc just adapts to the non-standard).


But for standardized delivery, I would love to keep the native 1920x1080 pixels, but just make everything outside of the centered 1330:1080 black.


Is there a way to specifically select where the pillar bars are ?


I really want to re-encode the video as little as possible.


In that vein, does anyone have a better tool than -vf crop as well ?


thank you very very much.


-
Enhance the contrast of only a portion of an image using FFmpeg ?
27 septembre 2021, par isendI am able to enhance the contrast of a whole image with the following command using FFmpeg eq filter :


ffmpeg -i input.png -vf eq=contrast=2 -c:a copy output.png



But can I enhance the contrast of only a portion (say, the second quadrant) of the image using FFmpeg ? I checked another post regarding how to apply a filter only on a certain duration of a film. Can I somehow insert something like
enable='between(x,0,10)*between(y,0,10)'
into the code above for my purpose ? Thanks.

-
avfilter/vf_fps : extend support for expressions
24 février 2021, par James Almeravfilter/vf_fps : extend support for expressions
AV_OPT_TYPE_VIDEO_RATE AVOption types are parsed as expressions, but in a
limited way. For example, name constants can only be parsed alone and not as
part of a longer expression.This change allows usage like
ffmpeg -i IN -vf fps="if(eq(source_fps\,film)\,ntsc_film\,source_fps)" OUT
Suggested-by : ffmpeg@fb.com
Signed-off-by : James Almer <jamrial@gmail.com>