Recherche avancée

Médias (91)

Autres articles (57)

  • 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 v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7320)

  • avcodec/dnxhd_parser : take into account compressed frame size and skip it

    20 mars 2017, par Paul B Mahol
    avcodec/dnxhd_parser : take into account compressed frame size and skip it
    

    Fixes #6214 and vsynth1-dnxhd-720p-hr-lb.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/dnxhd_parser.c
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb
  • ffmpeg : set extra_hw_frames to account for frames held in queues

    25 février 2024, par Mark Thompson
    ffmpeg : set extra_hw_frames to account for frames held in queues
    

    Since e0da916b8f5b079a4865eef7f64863f50785463d the ffmpeg utility has
    held multiple frames output by the decoder in internal queues without
    telling the decoder that it is going to do so. When the decoder has a
    fixed-size pool of frames (common in some hardware APIs where the output
    frames must be stored as an array texture) this could lead to the pool
    being exhausted and the decoder getting stuck. Fix this by telling the
    decoder to allocate additional frames according to the queue size.

    • [DH] fftools/ffmpeg_dec.c
    • [DH] fftools/ffmpeg_sched.c
    • [DH] fftools/ffmpeg_sched.h
  • swscale : Take the destination range into account for yuv->rgb->yuv conversions

    18 février 2022, par Martin Storsjö
    swscale : Take the destination range into account for yuv->rgb->yuv conversions
    

    The range parameters need to be set up before calling
    sws_init_context (which selects which fastpaths can be used ;
    this gets called by sws_getContext) ; solely passing them via
    sws_setColorspaceDetails isn't enough.

    This fixes producing full range YUV range output when doing
    YUV->YUV conversions between different YUV color spaces.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libswscale/utils.c
    • [DH] tests/fate/libswscale.mak
    • [DH] tests/ref/fate/sws-yuv-colorspace
    • [DH] tests/ref/fate/sws-yuv-range