Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (64)

  • 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

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

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

  • Evolution #2727 : forcer type=’MyISAM’ sur les tables MySQL

    5 septembre 2013, par marcimat -

    Alors du coup, ça rend les dump actuellement très problématique : dès qu’un index fulltext est présent dans une base, cett table ne se restaure pas (sur un site tout neuf) en SPIP 3.0.11. Cela indique « The used table type doesn’t support FULLTEXT indexes ». Effectivement toutes les tables recrées passent au format innoDb même si les tables d’origine de la sauvegarde étaient en myisam.

  • Unable to receive RTP payload type 96 without an SDP file describing it

    13 décembre 2017, par BanaSong

    How can I use SDP files in iOS FFmpeg ? I’ve tried this :

    char *url = "rtp://127.0.0.1:1234";
    AVFormatContext *oc = NULL;
    avformat_open_input(&amp;oc, url, NULL , NULL);

    But I get the following error :

    [rtp @ 028568e0] Unable to receive RTP payload type 96 without an SDP file
    describing it.