Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (102)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6663)

  • Error in FFMPEG/LIBAV audio_decode example for aac decoding

    23 mai 2017, par Prashant Ravi

    I am trying to do aac decoding using the examples provided by FFMPEG/LIBAV. I modified the example as follows :-

    int main(int argc, char **argv)
    {
       .......
       /* find the MPEG audio decoder */
       codec = avcodec_find_decoder(AV_CODEC_ID_AAC);
       if (!codec) {
           fprintf(stderr, "codec not found\n");
           exit(1);
       }
       .......
       return 0;
    }

    I changed the decoder type to "AV_CODEC_ID_AAC" and recompiled the examples.

    Once I ran the example for decode audio with an example aac audio file but I am getting the following

    prashantravi@mini:/media/sf_Shared/libav/doc/examples$ ./decode_audio ../../../example.aac ../../../out.wav
    Error submitting the packet to the decoder
    err code :-1052488119

    I tried looking up the error code but it dosent match with any of the existing error codes at all.

  • How I can run cloud apps in my mobile phone [closed]

    17 mai 2022, par Deepak

    I want to create an Android application on my own. I want to run a cloud running app on my mobile phone. Here is the thing :

    


    The super application will be deployed in the Play store. I know the super app concept but the does not apply here because we can not ask anyone to create the mini framework of their application.

    


      

    1. I have a server that is running Android OS
    2. 


    3. I want to run the application on my mobile phone which is actually running on my server. I want to stream that and play with that application without any installation.
    4. 


    


    Any suggestions on what I shall use :

    


      

    1. to play the app ?
    2. 


    3. To control the cloud app from my Android mobile ?
    4. 


    


  • How to build a daemon to encode video files on S3 ?

    4 avril 2013, par Yuval Cohen

    I am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks).

    I was considering services such as Zencoder, Encoding.com, Amazon's encoding service but some lack overlaying capabilities and some are just too expensive for our (big) volumes.

    I want to build a daemon that encodes videos that are located on S3 once users upload them.

    The solution I thought of would be Python Heroku servers using Celery for a task queue to keep track of the encoded files and ffmpeg to do the actual work. However, I ran into troubles compiling ffmpeg for Heroku (with libass support, so the basic ffmpeg bins aren't enough).

    What approach/technology stack would you consider for this mini-project ?

    Thanks !
    Yuval