Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11178)

  • avcodec/libuavs3d : fix access uninitialized variable when draining

    12 mai 2022, par Zhao Zhili
    avcodec/libuavs3d : fix access uninitialized variable when draining
    

    buf_ptr is uninitialized and accessed when function return.

    • [DH] libavcodec/libuavs3d.c
  • How to access MP4 tfhd headers

    31 juillet 2017, par Ariana

    This is a follow-up question from my previous question here. It looks like our video processing software assumes there is sample_duration flag (it is set to 1).

    So my question is how to access the default_sample_duration field in the tfhd as shown below ?

    Let’s assume I’m in the traf_box, and I need to just access the Default_sample_duration (I already found the flag is located in the tfhd_flags & 0x8 from here). I just need to add a function in C++ to extract the value of this field :

    enter image description here

    void get_traf_box_index(FILE* inputFile, uint32_t traf_size, vector >&amp; moof_sample_details, vector >&amp; moof_sample_durations, vector<int>&amp; truns_sample_counts, uint32_t&amp; base_media_decode_time) {
       uint32_t read_size = 0;
       while(read_size &lt; (traf_size - 8)) {
           uint32_t box_size = read_box_size(inputFile);
           read_size += 4;

           uint32_t box_type = read_box_type(inputFile);
           read_size += 4;

           switch (box_type) {
               case TRUN_BOX_TYPE:

                   get_trun_box_index(inputFile, truns_sample_counts, moof_sample_details, moof_sample_durations);
                   read_size += (box_size-8);
                   moof_trun_count++;
                   break;

               case TFDT_BOX_TYPE:
                   get_tfdt_box_index(inputFile, base_media_decode_time);
                   read_size += (box_size-8);
                   break;

                   //TODO add tfhd
               //case TFHD_BOX_TYPE:

               default:
                   read_size += skip_n_bypes(inputFile, (box_size-8));
                   break;      
           }
       }
    }
    </int>
  • MAINTAINERS : Add Vittorio to "Developers with git write access who are currently...

    23 novembre 2016, par Michael Niedermayer
    MAINTAINERS : Add Vittorio to "Developers with git write access who are currently not maintaining any specific part"
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS