Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5206)

  • Use eq filter to half of the video

    5 août 2023, par Juls Winfield

    I'm trying to use an eq filler to increase the saturation of half of the video, that is, half of the screen will be changed and the other half will remain unchanged.

    


    Example :
eq filter on half of the video screen

    


    I was able to achieve this by using the crop and hstack filters :

    


    ffmpeg -i input.mp4 -filter_complex \
    "[0:v]crop=iw/2:ih:0:0,eq=saturation=0.4[left];\
    [0:v]crop=iw/2:ih:iw/2:0,eq=saturation=3[right];\
    [left][right]hstack[out]" \
    -map "[out]" -c:v libx264 -threads 1 -t 5 -n "Intro\output.mp4"


    


    However, is there a faster way to apply this filter to half of the video ?

    


  • How to fix ffmpeg from producing dark images

    28 septembre 2019, par edwardv

    I am running a batch file to bulk resize images. The output jpgs are coming out darker. I looked up the metadata of the input and output files. The input had a color space CMYK and the output color space was wiped.

    The code below is what I am using for the batch file. I tried using the same batch file on an image with a RGB color space and the output colors were fine. I am assuming it’s the CMYK parameter is the issue.

    for %%A in (*.jpg) do ffmpeg -i "%%A" -vf "scale=w=1500:h=1800:force_original_aspect_ratio=1,pad=1500:1800 :(ow-iw)/2 :(oh-ih)/2:white" resized\%%A"

    What do I modify in the ffmpeg code in order to make sure the jpg input and output files look exactly the same ? Of course not in size.

  • avcodec/wmaprodec : Check that the streams channels do not exceed the overall channels

    12 octobre 2019, par Michael Niedermayer
    avcodec/wmaprodec : Check that the streams channels do not exceed the overall channels
    

    Fixes : NULL pointer dereference
    Fixes : 18075/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_XMA1_fuzzer-5708262036471808
    Fixes : 18087/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_XMA1_fuzzer-5740627634946048

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/wmaprodec.c