Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (58)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (3223)

  • Does ffmpeg version 0.5 configured on linux support encoding using Theora codec ?

    2 août 2012, par goldenmean

    I have configured, compiled a FFmpeg source code version 0.5 with versions as below :

    FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al.
     configuration: --enable-memalign-hack
     libavutil     49.15. 0 / 49.15. 0
     libavcodec    52.20. 0 / 52.20. 0
     libavformat   52.31. 0 / 52.31. 0
     libavdevice   52. 1. 0 / 52. 1. 0

    on a linux host.

    When I try to encode a raw yuv video using this version using theora codec by giving options as :

    ffmpeg -f rawvideo -pix_fmt yuv420p -s 352x288 -r 30 -i foreman_352_x280_420.yuv -an -vcodec libtheora theora1.ogg

    It gives an error : Unknown encoder 'libtheora'

    But when i use the same command in a FFmpeg windows executable ( whose version is FFmpeg version SVN-r12665) it encoded to a theora video properly.

    1. Doesnt ffmpeg version 0.5 on linux support theora encoder ?
    2. Which version for linux setup,would support theora encoding ?
  • 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. 


    


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