Recherche avancée

Médias (91)

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6043)

  • Default the file type to octetstream when unspecified

    26 novembre 2013
    Default the file type to octetstream when unspecified
  • cbs_h264 : Fix default value for max mv lengths

    19 septembre 2018, par Mark Thompson
    cbs_h264 : Fix default value for max mv lengths
    

    A recent version of the standard changed the max and default to 15, from
    16 in older versions. This updates the default to 15 to match, but the
    max stays as 16 so that we don't reject older streams.

    • [DH] libavcodec/cbs_h264_syntax_template.c
    • [DH] libavcodec/vaapi_encode_h264.c
  • Revert "ffmpeg : force 128k default audio bitrate if nothing is specified and there...

    1er septembre 2021, par Andreas Rheinhardt
    Revert "ffmpeg : force 128k default audio bitrate if nothing is specified and there is no specific default"
    

    This reverts commit 628a73f8f3768513fa6152c98d54842cf2ae1aad.

    At the time of said commit there was talk of removing the audio bitrate
    "ab" option to bring FFmpeg in line with what Libav has done in 2012 in
    commit 041cd5a0c55e02dd3b9a2419644b03103819c3d3. By having different
    option flags for the "ab" and the ordinay bitrate "b" option is is
    possible to have different default bitrates for audio and video. In
    order to maintain this behaviour and not break user scripts the commit
    to be reverted added code to ffmpeg.c that set the bitrate value to the
    audio default for audio codecs, but only if AVCodec.defaults didn't
    exist (as in this case the default would be codec-default and not
    affected by the "ab" removal).

    This had the downside of being an API violation, because
    AVCodec.defaults is not a public field. Given that the "ab" option
    and its audio-specific default value have never been removed,
    said API violation can be simply fixed by reverting said commit.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg.c