Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (77)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

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

Sur d’autres sites (7937)

  • Calling ffmpeg from php

    7 juillet 2013, par v3ga

    I need to run ffmpeg from a php script. The ffmpeg wiki page on the same topic (http://ffmpeg.org/trac/ffmpeg/wiki/Using%20FFmpeg%20from%20PHP%20scripts) suggests using shell_exec over ffmpeg-php. Some other pages suggests using ffmpeg-php. Which method is better ? Is ffmpeg-php compatible with latest versions of php ? My only purpose is to convert any videos hosted by the user into mp4 (h.264,aac).

  • avfilter/vf_scale : set correct AVFrame SAR if reset_sar=1

    16 juin, par Niklas Haas
    avfilter/vf_scale : set correct AVFrame SAR if reset_sar=1
    

    This otherwise generates an inconsistency between the frame state and the
    link state, since the link state is set to 1:1 explicitly when `reset_sar`
    is enabled, but this line of code unconditionally overwrote the output
    frame SAR with the value that would be computed in the absence of `reset_sar`.

    cf. vf_scale_cuda, which does this correctly

    • [DH] libavfilter/vf_scale.c
  • avcodec/ppc/mpegvideo_altivec : Use correct inter scantable

    22 mars, par Andreas Rheinhardt
    avcodec/ppc/mpegvideo_altivec : Use correct inter scantable
    

    This affected the WMV1/2 encoders (but not when running FATE because
    the encoding part uses the fastint dct, so this code isn't used
    then anyway).

    It did not affect anything else, because a) only WMV1/2 use different
    scantables, b) ff_msmpeg4_decode_block() (and therefore the WMV1
    decoder) already unquantize inter macroblocks as they are parsed
    c) the WMV2 decoder does not use the unquantize functions for inter
    macroblocks at all.

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

    • [DH] libavcodec/ppc/mpegvideo_altivec.c