
Recherche avancée
Autres articles (102)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMultilang 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. -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (10836)
-
Catch exceptions thrown when trying to access cross-domain iframe contents.
25 juin 2011, par Sebastian Tschanm jquery.iframe-transport.js Catch exceptions thrown when trying to access cross-domain iframe contents.
-
MAINTAINERS : Add Vittorio to "Developers with git write access who are currently...
23 novembre 2016, par Michael Niedermayer -
How to access MP4 tfhd headers
31 juillet 2017, par ArianaThis 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 thetfhd
as shown below ?Let’s assume I’m in the
traf_box
, and I need to just access theDefault_sample_duration
(I already found the flag is located in thetfhd_flags & 0x8
from here). I just need to add a function in C++ to extract the value of this field :void get_traf_box_index(FILE* inputFile, uint32_t traf_size, vector >& moof_sample_details, vector >& moof_sample_durations, vector<int>& truns_sample_counts, uint32_t& base_media_decode_time) {
uint32_t read_size = 0;
while(read_size < (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>