
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (46)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
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 (5868)
-
How to include FFMPEG functions in android code
4 janvier 2013, par TharakaNirmanaMy aim is to build a video file by combining an audio clip and an image for android.
Using cygwin, I was able to create the video by combining an image and an audio clip as follows :
ffmpeg -i allmapeople.mp3 -i Penguins.jpg video_finale.mpg
But I want this to happen in the mobile device within my eclipse project.
Please tell me how this should be done.....
-
not able to create libffmpeg.so for android
4 janvier 2013, par susheel tickooI have tried to create a video from images and i haven done it successfully with MPEG4 codec and .m4v extension.Using this link
now i want to use H264 codec for android devices.I am able to compile the code but when i use the function avcoded_find_encoder(CODEC_ID_H264). It gives me codec not found.
I have seen the links for same on stackovrflow but they are of either no use or are not conclusive.Please help.
thanks in advance. -
How to get rid of iPhone pointer uint8_t warning ?
18 décembre 2012, par WinstonI'm using FFMPeg on my iPhone project, but I'm getting a warning when using
AVFrame *pFrame
, like this :AVFrame *pFrame
uint8_t *data[AV_NUM_DATA_POINTERS];
...
pFrame->dataThis is the warning I'm getting :
Passing 'uint8_t *[8]' to parameter of type 'const uint8_t *const *' (aka 'const unsigned char *const *') discards qualifiers in nested pointer types
How do I get rid of this warning ?
Thank you !