Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • i want to create a collage of short videos based on my girlfriend's mood(machine learning approach in ffmpeg) [closed]

    14 janvier 2020, par Biswajit Nayak

    Hi guys i am working on a video collage project from different short videos based on our journey so far, it will be simple as Mid-’90s DV Camcorder Look we have to use ffmpeg for scene extraction and which machine learning framework to detect mood as per the scene in the video, We also use some featureS of opencv. Please Help

  • avfilter/vf_cropdetect : adjust Default threshold based on bit depth

    30 décembre 2014, par Michael Niedermayer
    avfilter/vf_cropdetect : adjust Default threshold based on bit depth
    

    Also allow specifying thresholds that are bit depth independant

    Previous version reviewed by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_cropdetect.c
  • FFMPEG command for video based on ratio

    15 mars 2017, par pocek

    I am using ffmpeg (in linux server with php)

    and i want to watermark a png logo on the mp4 file, my problem is that

    I want to scale my logo and change it based on source video size(for example 1/4 of height),

    I have this code bellow :

    shell_exec('ffmpeg -i file.mp4 -i logo.png -filter_complex "overlay=10:10" file-watered.mp4");

    it works on every video.

    For Normal (medium) size image :

    enter image description here

    For Small (medium) size image (witch is bad !)

    enter image description here

    Ideal output for this size would be :

    enter image description here

    I’ve changed a little bit my first code like this :

    shell_exec('ffmpeg -i file.mp4 -i logo.png -filter_complex "[0:v]scale=500:-1[bg];[bg][1:v]overlay=(main_w-overlay_w):(main_h-overlay_h)" watered.mp4');

    The main problem is that, I want to change the logo size based on video size.

    How can i do it with ffmpeg ?