
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (88)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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 (8158)
-
rtpproto : Add an option for writing return packets to the address of the last receive...
13 août 2013, par Martin Storsjörtpproto : Add an option for writing return packets to the address of the last received packets
If we’ve received packets on the same socket before, the return
packets are sent to that address. If we’ve only received packets
on the other socket, try to guess the source port for the other
one assuming the basic 1 logic.Signed-off-by : Martin Storsjö <martin@martin.st>
-
Details about the types of the filtered frame used in FFmpeg
17 décembre 2015, par sunzhidaI am new in multimedia analysis.
I am trying to extract key frames from .mp4 and .flv format videos by using FFmpeg. The problem is that I was confused by the parameters used in the command (Select only I-frames).
select='eq(pict_type\,I)'
The parameters are used to choose the types of filtered frame and It can assume one of the following values :
I P B S SI SP BI
After searching on Wikipedia, I have got some basic concepts on I, P, B frames but still cannot tell the difference among S, SI, SP and BI. How to decide which type of frame should I use in my command line ?
[Update]
I found some of the definitions of these terms in The H.264 Advanced Video Compression Standard, Second Edition.
- SI : Intra-coded slice used for switching between coded bitstreams
(H.264) - SP : Inter-coded slice used for switching between coded
bitstreams
- SI : Intra-coded slice used for switching between coded bitstreams
-
How do I actually use ffmpeg on Android ?
19 décembre 2013, par slhckI have a very basic question regarding Android and ffmpeg. I obtained ffmpeg from http://bambuser.com/opensource and was able to compile it for ARM.
The results are the binaries (
ffmpeg
) as well as severallibsomething.so
files.My question is : Is this enough to decode videos ? How do I actually use ffmpeg then ?
To load the library I have :
static {
System.load("/data/data/com.package/lib/libavcodec.so");
}It loads fine. But what then ?
More explanation : I saw other projects where people had their ffmpeg source in a JNI directory in the project. They also created some Android.mk files and some C code along with it. Would I need this as well ? Why would I create the .so files first and then copy the ffmpeg source code again ?
I know the NDK and how it should work but I've never seen an example of how one would actually call ffmpeg functions using it, because people seem to be hiding their implementations (which is sort of understandable) but not even giving useful pointers or examples.
Let's just say I wanted to decode a video file. Which kind of native methods would I need to implement ? How do I run the project ? Which data types need to be passed ? etc. There are certainly a few people here who have at least done that, I know this from searching for hours and hours.