Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (9614)

  • create video from series of images android

    1er août 2014, par user3856223

    I am trying to create a video from series of images in android.
    I have come across these three options MediaCodec, ffmpeg using ndk and jcodec. Can someone let me know which one of them is best and easiest. I didn’t find any proper documentation so can somebody please post their working example ?

  • Revision 00d54aa331 : First pass clean up. One of a series of changes to clean up two pass allocation

    9 mai 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    First pass clean up.

    One of a series of changes to clean up two pass
    allocation as precursor to support for multiple arf
    or boosted frames per GF/ARF group.

    This change pulls out the calculation of the total bits
    allocated to a GF/ARF group into a function, to aid
    readability and reduce the line count for define_gf_group().

    This change should have no material impact on output.

    Change-Id : I716fba08e26f9ddde3257e7d9b188453791883a3

  • H264 : decode series of nal units with ffmpeg

    1er août 2014, par jsim

    I tried to decode a series of nal units with ffmpeg (libavcodec) but I get a "no frame" error. I produced the nal units with the guideline at http://stackoverflow.com/questions/2940671/how-to-encode-series-of-images-into-h264-using-x264-api-c-c. I tried the following strategy for decoding :

    avcodec_init();  
    avcodec_register_all();  
    AVCodec* pCodec;  
    pCodec=lpavcodec_find_decoder(CODEC_ID_H264);  
    AVCodecContext* pCodecContext;  
    pCodecContext=lpavcodec_alloc_context();  
    avcodec_open(pCodecContext,pCodec);  
    AVFrame *pFrame;  
    pFrame=avcodec_alloc_frame();
    //for every nal unit:    
       int frameFinished=0;  
       //nalData2 is nalData without the first 4 bytes
       avcodec_decode_video(pCodecContext,pFrame,&frameFinished,(uint8_t*) nalData2,nalLength);

    I passed all units I got to this code but frameFinished stays 0. I guess there must be something wrong with the pCodecContext setup. Can someone send me a working example ?

    Thank you