
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (10087)
-
AndroidBitmap_lockPixels failing with -3 code
24 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.
-
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.