Recherche avancée

Médias (91)

Autres articles (17)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (3651)

  • Revision 195061feda : Fix rectangular partition check in speed 1 Make encoder skip rectangular partit

    30 septembre 2013, par Jingning Han

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



    Fix rectangular partition check in speed 1

    Make encoder skip rectangular partition check in speed 1 and above,
    when early termination was triggered in partition split.
    Thanks Guillaume (gmartres@) for catching this issue.

    This change makes bus_cif at 2000kbps speed 1 runtime goes down from
    25612ms to 23438ms (about 9% speed-up), at the expense of -0.235%
    performance down.

    Change-Id : I98613fad081a261d30d5fa206f934ca70601c180

  • how to speed up video and add watermark using ffmpeg

    30 octobre 2017, par 1234567

    How can we speed up video and add watermark using ffmpeg

    for speed up video we have this command

    ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mp4

    for water mark we use

    "-y", "-i", j, "-i", image1, "-i", image2, "-i", image3, "-filter_complex",
                  "[0:v][1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                          "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                          "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
                   "-c:v","libx264",  "-preset", "ultrafast", out;

    how can we merge bot commands I have various commands
    like this

       ""-y", "-i", j, "-i", image2, "-i", image2, "-i", image2, "-filter_complex",
        "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" +
                "[1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
                     "[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
                       "[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
               "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4",
                 "-preset", "ultrafast", out"

    how can we speed video and add watermark

    the error that i get is

    [AVFilterGraph @ 0xac59c530] No output pad can be associated to link label '1:v'.
    Error initializing complex filters.
  • Revision f60a1178c6 : Cleanup motion search speed features. * Replace max_step_search_steps with cons

    1er juillet 2014, par Alex Converse

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


     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/encoder/vp9_speed_features.h


     Modify /vp9/encoder/vp9_temporal_filter.c



    Cleanup motion search speed features.

    * Replace max_step_search_steps with constant MAX_MVSEARCH_STEPS
    * Fold (reduce_first_step_size + speed > 5) into reduce_first_step_size
    replacing uses of reduce_first_step_size that don’t add the speed
    check with zero.

    Change-Id : Iae46395dbf3eaca138bf4d18b838a9e364b5a198