Recherche avancée

Médias (91)

Autres articles (56)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4809)

  • PARADISEC catalog for Users

    28 avril, par silvia

    This screencast shows how a user of the PARADISEC catalog logs in and explores the collections, items and files that the archive contains.

    Category : 2
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

    The post PARADISEC catalog for Users first appeared on ginger’s thoughts.

  • Révision 23678 : Bugfix dans recup_date() quand on lui passe une chaîne du type 2017-07

    20 juillet 2017, par brunobergot@gmail.com

    Sous PHP 5.5.38-1 le test `substr($jour, 0, 1) == ’0’` renvoie true quand `$jour = ’’` ce qui fait renvoyer un valeur false pour le jour au lieu d’une chaîne vide.
    r23409 ayant modifié affdate_base(), ce cas ne passait plus par `strtotime($numdate)` mais par `mktime($heures, $minutes, $secondes, $mois, $jour, $annee)` qui génère un timestamp décalé d’un jour en arrière.
    On obtenait donc 06 au lieu de 07 pour `[(#VAL2017-07|affdatem)]`

    pfiou :p

  • Browser downloads video stream instead of playing it

    25 février 2019, par ilmix

    I’m trying to stream video from IP camera to browser using ffmpeg and ffserver but if I try to open stream in any browser it starts downloading it instead of playing. I’ve tried to display video using <video></video> tag but that doesn’t work either : Here is the code I used :

    <video width="800" height="600" controls="controls">
           <source src="http://10.10.7.19:8090/cam4.mp4" type="video/mp4">
    </source></video>

    The stream works fine in vlc, it is H.264 stream. ffserver shows buffer underflow errors when I try to view it in chrome.
    When I try to open it in firefox I get No video with supported format and MIME type found error on video element.

    How do I make it work ? Also, are there any tools for debugging video streams on Chrome or Firefox (console doesn’t show any errors) ?