Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

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

  • Merge commit ’eb96505b761eb02b6a3efc76d854afa6a41941ff’

    20 mars 2017, par Clément Bœsch
    Merge commit ’eb96505b761eb02b6a3efc76d854afa6a41941ff’
    

    * commit ’eb96505b761eb02b6a3efc76d854afa6a41941ff’ :
    mov : Remove ancient heuristic hack

    This commit is a noop, see 04f8d312877ffdcb816c7ff74b94eaa06dd6e1f0

    Merged-by : Clément Bœsch <u@pkh.me>

  • Merge commit ’bd31c61cf94d01dbe1051cf65874e7b2c0ac5454’

    13 novembre 2016, par Hendrik Leppkes
    Merge commit ’bd31c61cf94d01dbe1051cf65874e7b2c0ac5454’
    

    * commit ’bd31c61cf94d01dbe1051cf65874e7b2c0ac5454’ :
    avconv : Remove hw_device_ctx output filter reinit hack

    Noop, since our hwaccel infrastructure still requires this.

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

  • Any equivalent to '-c:v copy' for changing container of webm to mp4 video client-side in JS ?

    15 mars 2020, par programmingisphun

    Exploring the Mediarecorder API and really hope to get an mp4 output instead of webm. Prefer to stay client-side to reduce server resources and ffmpeg.js at 17mb doesn’t seem viable for online use.

    Discovered that one can create (Chrome/Firefox) a webm/h.264, which converts without re-encoding to an mp4 using FFMPEG. The resulting file opens fine in Quicktime MacOS (snippet source) :
    ffmpeg -i _inputfile_.webm -c:v copy _outputfile_.mp4

    Whereas this clever hack works to display the video maybe as an mp4 in the browser, but the downloaded file won’t open in Quicktime (just VLC, same for webm) :

    new Blob(recordedBlobs, {type: 'video/mp4'});
    video.src = window.URL.createObjectURL(superBuffer);

    Therefore, wondering if there’s another JS hack to do what FFMPEG’s -c:v copy does, but to the blob bytes of the MediaRecorder’s recordedBlobs and give it the same mp4 container that’s accepted by Quicktime/etc ?

    Pastebin of current setup