Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (90)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (7028)

  • FFmpeg bitstream filter that can take two inputs

    18 janvier 2018, par nsp

    I tried looking into the FFmpeg documentation, but couldn’t find any bitstream filter that could take two inputs.

    Is this not possible by design, or has such a use-case just not come up until now ?

  • Laravel ffmpeg Encoding failed in watermark filter

    21 juillet 2018, par Ghyath Darwish

    ffmpeg show error while encoding when add watermark filter :

    FFMpeg::fromDisk('public')
               ->open($path)
               ->addFilter(function ($filters) {
                   $filters->resize(new Dimension(640, 480));
                   $filters->watermark(public_path().'/storage/images/mark.png', [
                        'position' => 'relative',
                        'bottom' => 240,
                        'right' => 320
                   ]);
               })
               ->export()
               ->toDisk('public')
               ->inFormat((new \FFMpeg\Format\Video\X264('libmp3lame', 'libx264'))->setKiloBitrate(40))
               ->save('thumbnail/'.$filename);

    when i remove filter->watermark it is working,
    so what is the problem ?

  • FFmpeg Concat Filter High Memory Usage

    14 février 2020, par user2248702

    I’m using FFmpeg to join many short clips into a single long video using the concat filter. FFmpeg seems to load all clips into memory at once and quickly runs out of RAM (For 100 clips it eats over 32GB). Is there a way to limit the memory used by the concat filter ?

    The command I would use for 3 inputs is as follows :

    ffmpeg -i 0.mp4 -i 1.mp4 -i 2.mp4 -filter_complex "[0:v][0:a][1:v][1:a][2:v][2:a]concat=n=3:v=1:a=1" out.mp4

    It seems to use around 200MB per additional input, which quickly uses all the memory in my system.