Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12620)

  • avcodec/mjpegdec : use memset to clear alpha

    25 novembre 2023, par Marton Balint
    avcodec/mjpegdec : use memset to clear alpha
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/mjpegdec.c
  • `ffmpeg` `delogo` filter leaving traces at the logo locations

    26 mars 2023, par nlblack323

    I'm using ffmpeg delogo filter to remove these logos

    &#xA;

    using :

    &#xA;

    ffmpeg -i vid.mp4 -vf "delogo=x=27:y=158:w=344:h=93, delogo=x=44:y=839:w=531:h=77" out.mp4&#xA;

    &#xA;

    but this results in large noticeable marks at both logo locations. Besides, the replaced parts are terribly blurry and barely close to the actual colors. Is there a way to prevent or improve these results ?

    &#xA;

  • Batch overlay logo to directory of video files with scale watermark in percentage of video resolution

    28 septembre 2017, par Aariyan mind

    help me how to add auto scale watermark in percentage of video resolution code in this ?

    for %%I in ("C:\Users\demo\*.mp4") do ffmpeg.exe -i "%%I"  -filter_complex "movie=180n.png[watermark];[watermark][0]scale2ref=350*iw/2140:42*iw/2140[wm][v];[wm]setsar=1[logo];[v][logo] overlay=10:10:enable=not(between'(t,30,210)')[watermark]" -map "[watermark]" -map 0:a -codec:v libx264 -codec:a copy "C:\Users\files\%%~nI.mp4"
    pause