Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (95)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (5677)

  • Evolution #3770 : Logo des articles sur les listes

    17 février 2021, par nicod _

    Je pensais cibler tous les td.logo, mais en fait non, il ne faut pas, ils n’ont pas tous cette dimension.

  • Loss less conversion using FFMPEG in react native while adding logo to video

    6 décembre 2019, par Rishav Kumar

    I am using RN-FFMPEG to embed a thumbnail in a video using FFmpeg.
    The problem is that the video quality is highly deteriorated while adding a logo.
    Also, the issue is logo gets highly stretched and distorted in landscape videos but works great in portrait video.

    Can someone help me to have a max-width and max-height to the watermark along with high processing time with lossless conversion ?

    RNFFmpeg.execute('-i ' + video + ' -i ' + logo +' -filter_complex overlay=main_w-overlay_w-25:main_h-overlay_h-25 -codec:a copy /storage/emulated/0/ABC/ABC-' + name + '.mp4')

    This is my FFMPEG code

    Here, video is path of video file.
    logo is path of the watermark
    name is any random number

  • ffmpeg compare a png logo with video except png's transparent background pixels

    19 décembre 2022, par Thm Lee

    I want to find frames with the logo image from video, and to concat theses frames without commercials for getting ad-free video.
I tried this first by using ffmpeg & jpg logo image.

    


    ffmpeg -i input.mp4 -loop 1 -i logo.jpg -an -filter_complex crop=47:25:639:24,"blend=difference:shortest=1,blackframe=95:60" -f null -


    


    And it works, but in the case by case, less accurate with blackframe setting number.
So, for getting more accuracy I tried png logo image with transeparent background.

    


    ffmpeg -i input.mp4 -loop 1 -i logo.png -an -filter_complex crop=47:25:639:24,"blend=difference:shortest=1,blackframe=95:60" -f null -


    


    But on the contrary of my idea, the results came out worse than jpg logo. It seems that the cause is why ffmpeg compare the png's transparent background part pixels too with video.

    


    Is there a way to compare png logo with video except png logo's transparent part pixels ?

    


    I'd appreciate your advice, thank you.