Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (34)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5535)

  • ffmpeg_opt : restore documented stream selection behaviour

    28 juillet 2021, par Gyan Doshi
    ffmpeg_opt : restore documented stream selection behaviour
    

    11d3b03fcb added consideration of default stream disposition for audio
    and video when choosing the 'best' stream among all the inputs. This can
    lead to video streams with lower resolution or audio streams with fewer
    channels being selected.

    Stream disposition, however, only sets a priority for a stream
    among all other streams in the *same input*. It cannot set a priority
    for a stream across all inputs.

    This patch sets a middle-way and selects the best stream from each file
    with default disposition considered. Then it discards disposition weight
    and selects best stream as per the original criteria of highest
    resolution for video and most channels for audio.

    • [DH] fftools/ffmpeg_opt.c
  • x86 : simple_idct10_template : fix overflow in pass

    12 octobre 2015, par Christophe Gisquet
    x86 : simple_idct10_template : fix overflow in pass
    

    When the input of a pass has 15 or 16 bits of precision (in particular
    the column pass), the addition of a bias to W4 may lead to overflows
    in the input to pmaddwd.

    This requires postponing the adding of the bias to after the first
    butterfly. To do so, the fact that m15, unused although zeroed, is
    exploited. In case the pass is safe, an address can be directly used,
    and the number of xmm regs can be decreased. Otherwise, the 32bits bias
    is loaded into it.

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

    • [DH] libavcodec/x86/proresdsp.asm
    • [DH] libavcodec/x86/simple_idct10_template.asm
  • avformat/matroskadec : fix handling of recursive SeekHead elements

    6 décembre 2014, par wm4
    avformat/matroskadec : fix handling of recursive SeekHead elements
    

    When matroska_execute_seekhead() is called, it goes through the list of
    seekhead entries and attempts to read elements not read yet. When doing
    this, the parser can find further SeekHead elements, and will extend the
    matroska->seekhead list. This can lead to a (practically) infinite loop
    with certain broken files. (Maybe it can happen even with valid files.
    The demuxer doesn’t seem to check correctly whether an element has
    already been read.)

    Fix this by ignoring elements that were added to the seekhead field
    during executing seekhead entries.

    This does not fix the possible situation when multiple SeekHead elements
    after the file header (i.e. occur after the "before_pos" file position)
    point to the same elements. These elements will probably be parsed
    multiple times, likely leading to bugs.

    Fixes ticket #4162.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c