Recherche avancée

Médias (91)

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9901)

  • Extract motion vectors from x265 (HVEC) encoded video with ffmepg/libavcodec ?

    16 novembre 2017, par John Allard

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

    av_dict_set(&opts, "flags2", "+export_mvs", 0);

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

    sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);

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

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

    The data is the AVMotionVector struct defined in
    libavutil/motion_vector.h.

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

  • 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

    



    av_dict_set(&opts, "flags2", "+export_mvs", 0);


    



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

    



    sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);


    



    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"

    



    


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

    
 


    The data is the AVMotionVector struct defined in
 libavutil/motion_vector.h.

    


    



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

    


  • 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