Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (94)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (13130)

  • lavu : add wrappers for the pthreads mutex API

    23 novembre 2014, par Anton Khirnov
    lavu : add wrappers for the pthreads mutex API
    

    Also add no-op fallbacks when threading is disabled.

    This helps keeping the code clean if Libav is compiled for targets
    without threading. Since we assume that no threads of any kind are used
    in such configurations, doing nothing is ok by definition.

    Based on a patch by wm4 <nfxjfg@googlemail.com>.

    • [DBH] libavutil/thread.h
  • avio : cosmetics, prettify AVIO_SEEKABLE_NORMAL

    27 septembre 2016, par Anton Khirnov
    avio : cosmetics, prettify AVIO_SEEKABLE_NORMAL
    

    Move the doxy above the definition, change the value itself to the
    (1 << n) pattern, which is more readable for flags.

    • [DBH] libavformat/avio.h
  • Extract motion vectors from x265 (HEVC) encoded video with ffmpeg/libavcodec ?

    3 juillet, par John Allard

    I know that one can extract the motion vectors from an h264 encoded via by first setting the flag

    &#xA;&#xA;

    av_dict_set(&amp;opts, "flags2", "&#x2B;export_mvs", 0);&#xA;

    &#xA;&#xA;

    then you can query the side-data for the motion vectors by doing this

    &#xA;&#xA;

    sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);&#xA;

    &#xA;&#xA;

    When I looked online to see if you can do something similar with HEVC encoded videos, I wasn't able to find any information. All I found was this by the definition of "AV_FRAME_DATA_MOTION_VECTORS"

    &#xA;&#xA;

    &#xA;

    Motion vectors exported by some codecs (on demand through the&#xA; export_mvs flag set in the libavcodec AVCodecContext flags2 option).

    &#xA; &#xA;

    The data is the AVMotionVector struct defined in&#xA; libavutil/motion_vector.h.

    &#xA;

    &#xA;&#xA;

    but there was no information on exactly which codecs export this motion vector information. How would I go about finding this out ?

    &#xA;