Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (76)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5980)

  • Revision 81c389e790 : Make tx partition entropy coder account for block size This commit allows the e

    18 juin 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_rdopt.c



    Make tx partition entropy coder account for block size

    This commit allows the entropy coder for transform block partition
    to account for its relative position with respect to the block size.

    Change-Id : I2b5019c378bfb58c11b926fa50c0db1933f35852

  • How to draw a text with perspective using ffmpeg

    18 novembre 2022, par Facundo

    I need to add a text to a video using ffmpeg and it needs to be with perspective like in the image.

    


    img

    


    i have tried with perspective but i get perspective into the whole video not only the text.

    


    How can i do this ?

    


  • Insert text on sequence of image and create video using imagemagick or graphicsmagick with node.js

    12 décembre 2015, par Keyur Sakaria

    I am trying to create a sequence of image with dynamic text using imagemagick and then convert into video using ffmpeg. The issue I am facing right now :

    1. I was able to put text on image but now I want to move that text and sync with the character on image. Below is the link of what I have achieved

    http://tinypic.com/player.php?v=2ciic8g%3E&s=9#.VmrAZUp97Dc

    The bright white "text goes here" text should sync with the character behind

    Below is the code which I have written

    gm("original_images/moving/" + text + ".png")
       .fill("#FCF7FB")
       .fontSize(40)
       .drawText(x, moveY, "text goes here", "center")
       .font("font/BTTTRIAL_1.ttf")
       .write("newImages/demo" + i + ".png", function(err)
       {
           count++;
           console.log("success : " + err);
           console.log("i : " + i);
           console.log("moving : " + moveX);

           if(count == 72)
           {
               console.log(count);
               var date = moment().format('MMMMDDYYYYhmmssa');
               var cmd = 'ffmpeg -r 17 -i newImages/demo%d.png -c:v libx264 -r 24 -pix_fmt yuv420p output/' + date + '.mp4';

               exec(cmd, function(error, stdout, stderr)
               {
                   console.log(error)
                   console.log(stdout)
                   console.log(stderr)
               });
           }
       });

    I am trying to calculate x and y according to image and im getting the values in decimal, which graphicsmagick is not considering and rounding it thus text is not syncing with image and goes up and down

    If you have any other suggestions or ways to achieve what im trying to do please let me know.

    Thanks in advance.