Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (86)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (17301)

  • checkasm/rv40dsp : cover more cases

    5 décembre 2024, par sunyuechi
    checkasm/rv40dsp : cover more cases
    

    Co-Authored-By : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] tests/checkasm/rv40dsp.c
  • generating a video mosaic in client-side js

    1er novembre 2020, par redbrain

    I'm writing a web app for the creation of mosaic videos, where multiple videos can tiled next to each other, like a virtual meeting or grid of surveillance cameras. I'd like the user to be able to download their creation as an video file.

    &#xA;

    I've currently been accomplishing this using a Node.js server to serve the rest of the site (which is static html/js) and then having one route execute ffmpeg and return the result. However, if this can be accomplished on the client side, the app would be easier to scale since I'd only have to serve static files, and nicer to write with only the client-side in mind.

    &#xA;

    Does anyone know of a proper or clean way to do this ? I've looked at the following methods so far :

    &#xA;

      &#xA;
    • using ffmpeg ported to webassembly - this seems to be used constantly for any sort of client-side video editing ; however it seems overkill and clunky for this purpose
    • &#xA;

    • tiling all the videos in a <canvas></canvas> and rendering its output to an mp4 via the MediaStreamAPI - could be the best way, but it's not well documented
    • &#xA;

    &#xA;

    If I'm missing something obvious, please let me know. I figured I would look further for the best method before writing further. Thanks in advance.

    &#xA;

  • Is it possible .FLV to .MP4 conversion on client side by ffmpeg-asm.js ?

    24 mars 2016, par Egor M.

    Is it possible to do .FLV to .MP4 conversion on client side by ffmpeg-asm.js ?
    The main issue lot’s of mobile video players didn’t support flash, but .FLV still popular at the internet ;(

    Have no idea how to avoid server-side conversion and storing...