Recherche avancée

Médias (91)

Autres articles (64)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • How to crop last N seconds from a video

    10 décembre 2013, par digitalfootmark

    Is there any way to crop the last N seconds from a video ?

    I know there is an option for start time and duration, but neither of these are usable in this use case. Video can have any possible length, so the duration cannot be fixed value.

    Maybe I can determine the length first with ffmpeg, and calculate the duration in my own code ?

  • Revision 65d7fa7169 : sad_test : initialize bit_depth_ in all cases previously 'bit_depth_', which is

    22 novembre 2014, par James Zern

    Changed Paths :
     Modify /test/sad_test.cc



    sad_test : initialize bit_depth_ in all cases

    previously ’bit_depth_’, which is later used to calculate ’mask_’, would
    be left uninitialized in non-high-bitdepth builds

    Change-Id : Ia72035f4645baf3bb0f191504f491b934cdf1e0e

  • ffmpeg - add logo in a specific time interval

    14 novembre 2014, par Kåre Brøgger Sørensen

    Is there a way - in a one liner - where I do not have to use ffmpeg to calculate the duration of the whole video before i render ..

    I would like something like :

    ffmpeg -i ny_video_no_logo.mp4 -i /Pictures/home_logo_roed_new.png -filter_complex "[0:v][1:v]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,5.50,FULl_LENGTH - 10)’" -codec:a copy out.mp4

    I there a simple way like the "main_w" to get the video length inserted - I am using a non existing variable FULL_LENGTH in the above ?

    Or do i have to make a ffmpeg -i and extract the time from this ?