
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (62)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccé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 (...)
Sur d’autres sites (4810)
-
FFMPEG API : How to connect to RTSP stream using av_open_input_file ?
10 novembre 2011, par AlexI'm trying to connect to some RTSP stream using av_open_input_file() like this :
AVFormatContext* ic;
avcodec_register_all();
av_register_all();
av_open_input_file(&ic, "rtsp://login:password@xxx.xxx.xxx.xxx/videoinput_1/mjpeg/media.stm", NULL, 4096, NULL);It always returns 'file not found'. The same url, though, I can see in, say, VLC player. Do I do something wrong in my code ?
I'm using FFMPEG 0.6, shall I use the latest instead ?
-
AndroidBitmap_lockPixels always failing
20 septembre 2017, par Hadj Ali OussamaIn my
jni
module I copy images tobitmaps
, which were previously
passed from my java application.I do this using
AndroidBitmap_lockPixels/AndroidBitmap_unlockPixels
.
Basically, it renders the image correctly, but there’re strange
effects : sometimes the application gets stuck, or after some time
AndroidBitmap_lockPixels
always returns -3(ANDROID_BITMAP_RESULT_ALLOCATION_FAILED)
. I guess this is because I
update these bitmaps not from theGUI
thread, isn’t it ?If so, what would be correct way to "post" this operation to the GUI
thread ? Is it possible in
jni
?Thanks.
-
AndroidBitmap_lockPixels always failing
25 avril 2013, par user1568549In my
jni
module I copy images tobitmaps
, which were previously
passed from my java application.I do this using
AndroidBitmap_lockPixels/AndroidBitmap_unlockPixels
.
Basically, it renders the image correctly, but there're strange
effects : sometimes the application gets stuck, or after some time
AndroidBitmap_lockPixels
always returns -3(ANDROID_BITMAP_RESULT_ALLOCATION_FAILED)
. I guess this is because I
update these bitmaps not from theGUI
thread, isn't it ?If so, what would be correct way to "post" this operation to the GUI
thread ? Is it possible in
jni
?Thanks.