
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (68)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (...)
Sur d’autres sites (4995)
-
Init improvement : Don’t fail if Flash URL is null in normal include + init case. Instead, show note in debug input and wait for soundManager.setup() with url param, then treat as delayed init case. Improved experience if including , then trying to do setup() after DOM Ready (common jQuery case)
9 septembre 2012, par Scott Schillerm script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Init improvement : Don’t fail if Flash URL is null in normal include + init case. Instead, show note in debug input and wait for soundManager.setup() with url (...)
-
Native function in Vitamio
1er août 2014, par hcleeI am now looking the code beind the Vitamio (media framework) cause I want to know what API does it use to retrieve the buffer percentage/download rate and how it interect with the android OS to retrieve other information about the streaming video.
But I realized that it does use some native functions which enable it use some code written in C/C++ language.
I try to investigate on the C++ code but I don’t know where are they.
I guessed they are stored inside the res/raw/librarm.so.
I unzipped the file but all I can find is some machine code but what I want is the implementation of the native function.For example, I want to know the implementation of the following function :
public native int getVideoTrack() ; // What is this function for ? What does it mean by the track
// number of a straming video ?or
private static native boolean loadFFmpeg_native(String ffmpegPath) ;
and when will this function be called :
private static void postEventFromNative(Object mediaplayer_ref, int what, int arg1, int arg2, Object obj)
Do anyone know where can I investigate the implementation of such native function.
It should be some C++ code but I don’t want machine code...I went to
https://www.vitamio.org/en/2013/Tutorial_0509/13.htmlbut they didn’t have the thing that I want
Thanks in advance !!!
-
x264_encoder_encode() how to watch function body ?
25 février 2016, par ULTRANjI’m working with VLC player source code (GitHub link) and I need to study how the function
x264_encoder_encode()
in codech.264
works. This function is used in filex264.c
but i couldn’t find it’s body and decloration. Where can I see it ?