
Recherche avancée
Autres articles (94)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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.
Sur d’autres sites (4504)
-
Why are there multiple .m3u8 requests made by the browser ?
20 mai 2020, par 47fa0cI usually download my lectures instead of watching them on the online player provided by my university. I do this by finding requests that include .m3u8 in their url. There always seems to be two of these for each of the videos that I want to download, with one slight difference in the urls but otherwise identical. Why is that the case ?



My wild guess is that one of them is supposed act as a backup if the other failed to fetch but I am not sure.



I can't share the urls as they contain copyrighted material but it looks something like



domain/a/b/hashedvalue1/c/video.mp4/index.m3u8




and



domain/a/b/hashedvalue2/c/video.mp4/index.m3u8




Thanks for your help :)


-
avcodec/h261enc : Avoid RLTable when writing macroblock
15 juin 2024, par Andreas Rheinhardtavcodec/h261enc : Avoid RLTable when writing macroblock
The RLTable API in rl.c is not well designed for codecs with
an explicit end-of-block code. ff_h261_rl_tcoeff's vlc has
the EOB code as first element (presumably so that the decoder
can check for it via "if (level == 0)") and this implies
that the indices returned by get_rl_index() are off by one
for run == 0 which is therefore explicitly checked.This commit changes this by adding a simple LUT for the
values not requiring escaping. It is easy to directly
include the sign bit into this, so this has also been done.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Embedding pure python(Cpython) on android
13 août 2020, par KiYugadgeterI want to create movie download app for android for learn.
To make develop easily, I would like to use youtube-dl for downloader backend.


So I want to embed Cpython runtime and ffmpeg (for convert movie format) to Android app.
Is it able to do with android NDK ?


Note that I know more better ways are exist.(like use java-friend python runtime or downloader implement as online server)


But I want to try to embed python and ffmpeg in app for learn.


Can it with Android NDK ?