Recherche avancée

Médias (91)

Autres articles (101)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5337)

  • Move bessel_i0() from swresample/resample to avutil/mathematics

    22 mai 2023, par Michael Niedermayer
    Move bessel_i0() from swresample/resample to avutil/mathematics
    

    0th order modified bessel function of the first kind are used in multiple
    places, lets avoid having 3+ different implementations
    I picked this one as its accurate and quite fast, it can be replaced if
    a better one is found

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

    • [DH] doc/APIchanges
    • [DH] libavutil/mathematics.c
    • [DH] libavutil/mathematics.h
    • [DH] libavutil/version.h
    • [DH] libswresample/resample.c
  • lavu : Add av_gettime_relative

    22 octobre 2014, par Martin Storsjö
    lavu : Add av_gettime_relative
    

    Since av_gettime() is used in a number of places where actual
    real time clock is required, the monotonic clock introduced in
    ebef9f5a5 would have consequences that are hard to handle. Instead
    split it into a separate function that can be used in the cases
    where only relative time is desired.

    On platform where no monotonic clock is available, the difference
    between the two av_gettime functions is not clear, and one could
    mistakenly use the relative clock where an absolute one is
    required. Therefore add an offset, to make it evident that the
    time returned from av_gettime_relative never is actual current
    real time, even though it is based on av_gettime.

    Based on a patch by Olivier Langlois.

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

    • [DH] doc/APIchanges
    • [DH] libavutil/time.c
    • [DH] libavutil/time.h
    • [DH] libavutil/version.h
  • vulkan_decode : simplify and make session parameter generation more robust

    21 juin 2023, par Lynne
    vulkan_decode : simplify and make session parameter generation more robust
    

    This commit scraps a bool to signal to recreate the session parameters,
    but instead destroys them, forcing them to be recreated.

    As this can happen between start_frame and end_frame, do this
    at both places.

    • [DH] libavcodec/vulkan_av1.c
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_decode.h
    • [DH] libavcodec/vulkan_h264.c
    • [DH] libavcodec/vulkan_hevc.c