Recherche avancée

Médias (91)

Autres articles (75)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5315)

  • 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
  • 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.
           // ......................
       }
    }
  • tests : print errors from ffserver

    30 novembre 2016, par Andreas Cadhalpun
    tests : print errors from ffserver
    

    Not doing so makes debugging unnecessarily hard.

    Reviewed-by : Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] tests/ffserver-regression.sh