Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (36)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (5864)

  • Revision cb1e60fb28 : Fix bug in reference frame counting. vp8_encode_inter_macroblock() is called in

    17 juillet 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp8/encoder/encodeframe.c Fix bug in reference frame counting. vp8_encode_inter_macroblock() is called in both pick_mb_modes() as well as encode_sb(), thus the number of macroblocks in the counter were twice as big as actual numbers. This doesn't affect output. (...)

  • Revision 8697c6e454 : Merge "Fix bug in reference frame counting." into experimental

    17 juillet 2012, par Ronald S. Bultje

    Merge "Fix bug in reference frame counting." into experimental

  • grab non consecutive frame from IP camera

    16 juillet 2012, par Mel

    I'm working on project where I need to retrieve frame from IP camera every second (or two) and process it some way.
    After initialization of capture with

    CvCapture* capture = cvCaptureFromFile(ipSource);

    I'm getting the frames from a loop where I introduce one (or two) second(s) delay -

    frame = cvQueryFrame(capture);

    Problem - I only get consecutive frames (from buffer I suppose), not the frame in moment I try to get it.
    What should I do to get frame in the moment I want to ?