Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (43)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7141)

  • Could not load ultrafast preset

    3 avril 2023, par coure2011

    Code :

    


    import ffmpegPath = require('@ffmpeg-installer/ffmpeg');
import ffmpeg = require('fluent-ffmpeg');

await new Promise((resolve, reject) => {
      ffmpeg(tempFilePath)
        .videoCodec('libx264')
        .audioCodec('copy')
        .preset('ultrafast')
        .output(outputFilePath)
        .on('end', resolve)
        .on('error', reject)
        .run();
    });


    


    Getting error :

    


    /presets/ultrafast could not be loaded: Cannot find module


    


  • Is there a way to convert a moviepy VideoFileClip to a binary stream in memory ?

    14 décembre 2019, par Eric Nguyen

    I am trying to convert a VideoClipFile that’s already loaded into memory and convert to a binary stream so that I can save it to a cloud storage system. However, the cloud storage system only accepts binary streams, so I can’t just use the normal save in moviepy. The other option is to write the binary stream to disk, then open it as a binary stream, but if I have thousands of videos that’s going to be too costly. Thanks for the help.

  • how can I let ffmpeg use cuda context created externally ?

    20 février 2020, par Wang

    Some libraries for example the ffmpeg are using dynamically loaded one. But our project is linked to cuda driver directly. I would like to share the same context between them. I tried the naive way to do this :

    1. initialize and create cuda context via ffmpeg’s av_hwdevice_ctx_create.
    2. then use cuCtxSetCurrent to set the obtained the context created by step one.

    This works fine. However, I want share the context in the other way around : create and manage the context in our code then share the context with ffmpeg. Is this possible ?