Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (69)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (6965)

  • Revision 3203 : Ne pas proposer le choix "sans type" si on ne l’a pas configuré

    6 avril 2010, par kent1 — Log

    Ne pas proposer le choix "sans type" si on ne l’a pas configuré

  • Revision 3112 : On ajoute le champ sur les documents de type emballe_media

    23 mars 2010, par kent1 — Log

    On ajoute le champ sur les documents de type emballe_media

  • How do I specify the HEVC codec in the HTML5 video source type attribute ?

    20 avril 2023, par nfrasser

    I'd like to load and play a smaller HEVC-encoded video on web browsers with support for it.

    



    I'm using this code on Safari 11 (macOS 10.13), which has support for the HEVC format.

    



    <video muted="muted" playsinline="playsinline" autoplay="autoplay">&#xA;    <source src="clip.webm" type="video/webm; codecs=vp9">&#xA;    <source src="clip-hevc.mp4" type="video/mp4; codecs=hevc">&#xA;    <source src="clip.mp4" type="video/mp4; codecs=avc1">&#xA;    <p>Video not supported</p>&#xA;</source></source></source></video>&#xA;

    &#xA;&#xA;

    In Web Inspector > Network Panel, I see that Safari loads both clip.mp4 and clip-hevc.mp4. If I inspect the video element, I see that clip.mp4 is playing, not clip-hevc.mp4. I see the same thing on iOS 11.

    &#xA;&#xA;

    When I call HTMLMediaElement.canPlayType() on the types I specified, I get

    &#xA;&#xA;

      &#xA;
    • maybe on video/mp4; codecs=hevc
    • &#xA;

    • probably on video/mp4; codecs=avc1
    • &#xA;

    • Nothing on variants of the HEVC codec I've seen (e.g., hvc1, hev1)
    • &#xA;

    &#xA;&#xA;

    Something else I noticed : When I remove the clip.mp4 option, clip-hevc.mp4 downloads and plays just fine !

    &#xA;&#xA;

    How can I make sure that only the best supported MP4 variant downloads and plays in the browser ?

    &#xA;