Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (113)

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

  • 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

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

  • Revision 6a760d483d : Initial AQ1 restructuring. This is the first of a series of patches to restruct

    12 novembre 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_aq_variance.c


     Modify /vp9/encoder/vp9_aq_variance.h


     Modify /vp9/encoder/vp9_encodeframe.c



    Initial AQ1 restructuring.

    This is the first of a series of patches to restructure and
    improve AQ mode 1 (variance based AQ).

    Change-Id : Idcf693131a3ea2459dcfd957a54a65b971fa4a2a

  • Add transparancy while creating GIFimages from PNG series using ffmpeg [on hold]

    4 avril 2018, par arun

    I have created a gif image from a transparent series of PNG.
    The output gif image did not have transparancy.

      ffmpeg "-i" ,new File(Environment.getExternalStorageDirectory() + "/folder/" + "file_%4d.png").getPath(), new File(Environment.getExternalStorageDirectory() +"/out.gif").getPath()

    Any other parameter to add ?

  • ffmpeg convert a series of images to video - with crossfade or any other transition between every two frames

    12 mai 2017, par Mr Narendra

    I am currently able to convert a series of images to video, but I do also need to add transitions / animation in between them.

    String[] ffmpegCommand = {"/data/data/mypackage/app_bin/ffmpeg", "-y",
    "-qscale", "1", "-r", "" + framerate, "-i", "/data/data/mypackage/app_ipImg/image%3d.jpg",
    "-t", "" + (((total_images) * delay_of_each_frame_in_seconds) + 4), //"-s",heightwidth,
    "-vcodec", "libx264", "-s", "640x480",
    Environment.getExternalStorageDirectory() + "/photo_directory/myVideo.mp4"};

    The above command is working for me to create video from image series

    But

    Now, I do want to add fade or other transition / animation to be displayed in final video before each of the frames.

    I googled a lot, but didn’t find any solution to this trouble, yet.

    Please suggest me the way.

    Thanks in advance.