Recherche avancée

Médias (91)

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5233)

  • How to add a color gradient to black and white in ffmpeg

    4 mai 2016, par Axiverse

    I’m converting a sequences of image files to video using ffmpeg. They are black and white representing a range of data. I want to apply a color gradient to the videos, something like black->white becomes black->red->orange->white.

    How do I do this with ffmpeg ?

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

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

    


    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.

    


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

    


      

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


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