Recherche avancée

Médias (91)

Autres articles (89)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (8205)

  • ffmpeg : add progress speed to status line and report

    11 décembre 2015, par Moritz Barsnick
    ffmpeg : add progress speed to status line and report
    

    This adds a computation of the progress speed versus realtime ("Nx")
    to the status line and to the report log. It uses the progress time
    as already calculated for total output time as a base.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg.c
  • Speed of moving text drawtext filter - FFMPEG

    8 mai 2016, par BOB

    I’m using this command to move text from one place to another using ffmpeg

    ffmpeg -i VideoInput.mp4 \
          -vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test': \
              x='x1+(x2-x1)*(t-t1)/(t2-t1)':y='y1+(y2-y1)*(t-t1)/(t2-t1)':fontsize=65" \
          -acodec copy outputVideo.mp4

    Now I need to control the speed of moving the text. I want to speed it up.
    How do I control the speed ?

    Any suggestions ?

    Thank you

  • avcodec/mpegaudio_tablegen : speed up dynamic table creation

    25 novembre 2015, par Ganesh Ajjanagadde
    avcodec/mpegaudio_tablegen : speed up dynamic table creation
    

    This does some miscellaneous stuff mainly avoiding the usage of pow to
    achieve significant speedups. This is not speed critical, but is
    unnecessary latency and cycles wasted for a user.

    All tables tested and are identical to the old ones
    (bit-exact even in floating point case).

    Sample benchmark (x86-64, Haswell, GNU/Linux) :
    old :
    102329530 decicycles in mpegaudio_tableinit, 1 runs, 0 skips

    new :
    34111900 decicycles in mpegaudio_tableinit, 1 runs, 0 skips

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/mpegaudio_tablegen.c
    • [DH] libavcodec/mpegaudio_tablegen.h