Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (49)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • Revision 85771 : Prendre en charge la touche "Esc" pour sortir du plein ecran même si ...

    31 octobre 2014, par cedric@… — Log

    Prendre en charge la touche "Esc" pour sortir du plein ecran même si on a pas mis le focus sur le champ d’edition (Franck)

  • Revision 86140 : Résolution du second problème : on déplace tous les styles qui ...

    17 novembre 2014, par rastapopoulos@… — Log

    Résolution du second problème : on déplace tous les styles qui concernent le fullscreen dans la feuille commune. Cette fonctionnalité marche donc tout aussi bien dans le site public. Au passage on renforce certains styles, notamment l’onglet avec l’icône fullscreen, pour qu’il soit toujours à la bonne taille (en pixel toujours), et avec l’icône (car ça virait en FOCUS avec Tinytypo… hum hum).

  • cross-platform syntax for mp4 embedded in html5

    11 janvier 2015, par CodeMed

    The code below produces a properly embedded video in firefox, but does not display properly in internet explorer or in android. I have all my browsers set to automatically update, so they are all always running the most current versions.

    In `internet explorer`, the code below leaves a large blank space where the  
    video should be.  The user has to hover over the large blank space before the  
    controls become visible.  

    In `android`, the code below produces an unusable/unclickable area, and the  
    user has to greatly zoom the focus to get the small start button to become  
    big enough to click to start the video.  

    However, in `firefox`, the code below shows the first frame of the video,  
    which you can click to start the video.  

    How can I change the code below to get all three of these browsers to show the first frame when the page loads, and for the video to be start-able when the user clicks on the first frame ?

    Here is a link to the video file on a file sharing site.

    Here is the ffmeg code for processing the video :

    ffmpeg -y -i SourceFile.mp4 -s 1280x720 -c:v libx264 -b 3M -strict -2 -movflags faststart DestFile.mp4

    Thanks to offbeatmammal for getting me this far.
    Here is the html5 code for embedding the video in a web page browser :

    <video width="640" height="480" controls="controls">
       <source src="somefile.mp4" type="video/mp4">
       Your browser does not support the video tag.
    </source></video>