Recherche avancée

Médias (91)

Autres articles (105)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8458)

  • Using ffmpeg apply filters to a Video memory stream. Is it possible ?

    1er octobre 2015, par Faisal Mq

    I have a requirement where I will be downloading my Video file data present on an Azure BLOB. I will get this Video file data in the form of a MemoryStream.

    Is there any way that using ffmpeg I can process this MemoryStream e.g removing audio, blurring video etc ?

    If its not possible then I will have to download the BLOB file somewhere on my Server in the form of .mp4 and then do the processing by ffmpeg. But actually I want to avoid this step of creating file on hard disk downloaded via MemoryStream.

    Here is the sample/pseudo code :

    public void ProcessVideoFile(string containerName, string blobURI)
    {
       CloudBlockBlob blob = GetBlockBlobReference(containerName, blobURI);

       using (var memStream = new MemoryStream())
       {
           blob.DownloadToStream(memStream);

           // Process this memStream using ffmpeg for different filters e.g blurring, remove audio etc.
           // ......................
       }
    }
  • avcodec/v4l2_m2m_enc : Support changing qmin/qmax

    19 janvier 2020, par Andriy Gelman
    avcodec/v4l2_m2m_enc : Support changing qmin/qmax
    

    Hard coded parameters for qmin and qmax are currently used to initialize
    v4l2_m2m device. This commit uses values from avctx->qmin,qmax if they
    are set.

    Reviewed-by : Ming Qian <ming.qian@nxp.com>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavcodec/v4l2_m2m_enc.c
  • c# or csharp ffmpeg using way

    3 février 2017, par Asif Shariar

    I have read
    C# universal platform audio merge or input in video. As I get the solution to use composition media which makes my mp4 size too big after rendering the file but the original mp4 file size is small, for example
    video.mp4 [size 30mb] background add audio.mp4 [1.2 mb]
    after render file with profile videoencoder filesize get 400 mb.

    So I decided to use ffmpeg in my c# project. I compiled ffmpeg and added in my project all the library .dll. Now how can I use this command ?

    ffmpeg -i video -i audio -c copy output

    How can I use this command by the library ?

    I have these .dll in my csharp project

    • libavutil.dll
    • libavcodec.dll
    • libavformat.dll
    • libavdevice.dll
    • libavfilter.dll
    • libswscale.dll
    • libswresample.dll
    • libpostproc.dll

    The question is how can we use this .dll to do that works ?

    i hard it called muxxing.cs

    If anyone knows what to do, please provide details. Examples of prj sample would be great.