Recherche avancée

Médias (91)

Autres articles (46)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 2013

    Puis-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, par

    Lorsque 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 TharakaNirmana

    My 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 tickoo

    I 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 Winston

    I'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->data

    This 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 !