
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (31)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (6971)
-
ffmped encoding with java using pipelines
12 décembre 2015, par AndrásCan I send pictures from my webcam to ffmpeg which give me back the encoded images in real time ? I dont want to use xuggle because it’s not supported in my arm based linux.
-
Encoding for JMF
8 mars 2012, par stimmsI'm creating some videos from a collection of images, I subsequently wish to play this video back with java. I found JMF but I haven't been able to find an encoding which is actually playable by it. Does anybody have an ffmpeg or mencoder formulation which produces JMF playable output ? I would also take alternatives to JMF if there is something better.
-
A/libc : Fatal signal 7 (SIGBUS)
29 août 2020, par yejafotA/libc: Fatal signal 7 (SIGBUS), code 1, fault addr 0xb92df158 in tid 19864 



App crashes when app launches. How to find which line throws this error in .cpp file inside android studio using this
fault addr 0xb92df158
?

And this error not occurs everytime i select the video(small or large size video) from app but only sometimes it occurs. Is there anyway to debug the line inside .cpp file because i have so many null checks and error handling inside .cpp file. What i do is i select video from java and edit the video inside .cpp file and save back the output image inside sdcard using


char buf[1024];
snprintf(buf, sizeof(buf), "%s-%d", "/storage/emulated/0/Download/frame.png", av_codec_ctx->frame_number);
pFile = fopen(buf, "wb");
fprintf(pFile, "P5\n%d %d\n%d\n", av_frame->width, av_frame->height, 255);
for (y = 0; y < av_frame->height; y++)
 fwrite(buf + y * av_frame->linesize[0], 1 , av_frame->width, pFile);



.So while decoding or saving back as .png i think i get this sort of error.