Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (33)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

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

Sur d’autres sites (5955)

  • Revision 317e07eedb : thumb : Clarify a comment about the conversions that are done The comment made i

    17 mars 2014, par Martin Storsjo

    Changed Paths :
     Modify /build/make/thumb.pm



    thumb : Clarify a comment about the conversions that are done

    The comment made it look like the condition code was dropped from
    the extra add instruction, while it actually was handled properly.

    Thus, the comment was misleading while the code itself did the right
    thing.

    Also clarify the comment indicating that we use the full three-operand
    form of the add instruction.

    Change-Id : I2c1ac6ac4fedf262d104ea30a6c005febc74de9c

  • Revision 5273 : Ne pas jouer avec les pages uniques

    8 avril 2011, par kent1 — Log

    Ne pas jouer avec les pages uniques

  • ffmpeg batch retains old filetype in name

    3 juin 2018, par InsertDisplayNameHere

    I’m using the following ffmpeg script to convert all .mp4 files in the folder to .webm.

    for %%A IN (*.mp4) DO ffmpeg -i "%%A" -c:v libvpx -crf 4 -b:v 3M -c:a libvorbis "%%A.webm"

    I am trying to make it go from "xxx.mp4" to "xxx.webm"

    However when I run the script the file name goes from "xxx.mp4" to "xxx.mp4.webm"

    Any suggestions are highly appreciated.