Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7699)

  • Use MANGLE in cavsdsp.c to save two registers using gcc.

    19 avril 2014, par Carl Eugen Hoyos
    Use MANGLE in cavsdsp.c to save two registers using gcc.
    

    Fixes compilation with !HAVE_6REGS.

    • [DH] libavcodec/x86/cavsdsp.c
  • avformat/utils : Remove redundant save+restore

    8 octobre 2019, par Andreas Rheinhardt
    avformat/utils : Remove redundant save+restore
    

    If the size of the input packet is zero, av_grow_packet() used to call
    av_new_packet() which would initialize the packet and (in particular)
    reset the pos field. This behaviour (which was never documented and
    arguably always contradicted the documented behaviour) was changed in
    2fe04630. This means that it is unnecessary to save and restore the
    packet's position in append_packet_chunked().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • how do I save the videos in an specific bitrate using ffmpeg ?

    15 mai 2022, par david

    I am trying to save some videos in specific bitrate (8000k) and for this, I used the following code :

    &#xA;

    ffmpeg  -i  input_1080p60  -c:v  libx264 -pix_fmt yuv420p  -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.264&#xA;

    &#xA;

    but after saving the videos, I find out each video has a different bitrate except 8000k ( for example 5000k, 6000k, 7500k,...). but I define the minrate 8000k. do you know what is the problem and how can I force the above code to have the specific bitrate ? Thank you.

    &#xA;