Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (59)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (6549)

  • lavd/caca : do not access deprecated codec context

    29 novembre 2020, par Anton Khirnov
    lavd/caca : do not access deprecated codec context
    

    Use the stream timebase instead.

    • [DH] libavdevice/caca.c
  • 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>