Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (97)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (11118)

  • avcodec/h2645_sei : signal new AVFilmGrainParams members

    18 mars 2024, par Niklas Haas
    avcodec/h2645_sei : signal new AVFilmGrainParams members
    

    H.274 specifies that film grain parameters are signalled as intended for
    4:4:4 frames, so we always signal this, regardless of the frame's actual
    subsampling.

    • [DH] libavcodec/h2645_sei.c
  • Enhance the contrast of only a portion of an image using FFmpeg ?

    27 septembre 2021, par isend

    I 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.

    


  • Using FFMPEG to add pillar bars

    10 février 2021, par Ewok BBQ

    I 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.