Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (63)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (9281)

  • Translate Command Line Input to Node Fluent ffmpeg

    20 mars 2016, par EladA

    I want to run the ffmpeg command line using node-fluent-ffmpeg (compile png images to a video) :

    ffmpeg -framerate 20 -i static/tmp/img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4  

    I was trying the following, but with no luck.

    var ffmpeg = require('fluent-ffmpeg');

    var proc = new ffmpeg()
       .addInputOption('-framerate 20')
       .addInputOption('static/tmp/img%03d.png')
       .addInputOption('-c:v libx264')
       .addInputOption('-r 30')
       .addInputOption('-pix_fmt yuv420p out.mp4')
       .output('outputfile.mp4')
       .output(stream);

    I looked all over the github repository and all the Q/A on stackoverflow, but with no proper answer.

    How can I format the command line to js code ?

    Thanks !

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

  • avcodec/dpx : Move need_align to act per line

    14 novembre 2015, par Michael Niedermayer
    avcodec/dpx : Move need_align to act per line
    

    Fixes out of array read
    Fixes : 61cf123c081ee2bb774d307c75bdb99e/asan_heap-oob_1224f76_5546_bee833ffae73f752b489b9eeaac52db7.dpx

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dpx.c