Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (83)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11319)

  • avfilter/af_headphone : Only keep one AVFrame at a time

    26 août 2020, par Andreas Rheinhardt
    avfilter/af_headphone : Only keep one AVFrame at a time
    

    Despite the headphone filter only using one AVFrame at a time, it kept
    an array each of whose entries contained a pointer to an AVFrame at all
    times ; the pointers were mostly NULL. This commit instead replaces them
    by using a single pointer to an AVFrame on the stack of the only
    function that actually uses them.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_headphone.c
  • Time of Dragonflies

    11 novembre 2011, par noreply@blogger.com (Anonymous)
  • Is it possible to capture images like time lapse using AFORGE FFMPEG ?

    4 juillet 2022, par jom12

    I am trying to make a time lapse video using AFORGE FFMPEG.

    &#xA;

    I want to capture a video frame every 10 units.

    &#xA;

            VideoFileReader reader = new VideoFileReader();&#xA;        reader.Open(@"\drive.mp4");&#xA;            for (long i = 0; i &lt; reader.FrameCount; i&#x2B;&#x2B;)&#xA;            {&#xA;                if (i % 10 == 0)&#xA;                {&#xA;                    Bitmap videoFrame = reader.ReadVideoFrame();&#xA;                    videoFrame.Save(@"test\img_" &#x2B; (i / 10).ToString() &#x2B; ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);&#xA;                }&#xA;            }&#xA;

    &#xA;

    However, this code only saved 1 frame as an image instead of 10 frames.

    &#xA;

    Is there a better way to capture images 10 frames at a time ?

    &#xA;