Recherche avancée

Médias (91)

Autres articles (73)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • 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 (9428)

  • `ffmpeg` `delogo` filter leaving traces at the logo locations

    26 mars 2023, par nlblack323

    I'm using ffmpeg delogo filter to remove these logos

    


    using :

    


    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


    


    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 ?

    


  • 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
  • select FrameSize for vidoe with logo in FFmpeg

    24 juin 2016, par Ahmad Ali Mukashaty

    I’m using this command to stream video with 1920*1080 frame size

    ffmpeg -re -i test.mp4 -vf scale=1920*1080 -f mpegts udp://127.0.0.1:port

    but whan I want to stream images with video like this

    ffmpeg -re -i test.mp4 -vf scale=1920*1080 -i logo.png -ignore_loop 0 -i
    test6.gif -filter_complex "[0][1]overlay=10:10[a];[a][2]overlay=90:90" -f
    mpegts udp://127.0.0.1:port

    the command line display this error
    here

    How can I choose frame size whan I stream video with image ?