Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (24)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6065)

  • FFMPEG command doesn't work in PHP. (Incompatibilty with MAMP)

    15 mars 2016, par Charlie Ryan

    I’m a bit of a beginner when it comes to PHP, and I’m trying to create a simple(ish) system where files are input, and then converted to html5 video in various resolutions.

    I’ve sorted out how to handle multiple file uploads etc, but now I’m having a problem.

    I can’t seem to get exec to execute FFMPEG in PHP.

    For example, if I type this into my command line (Terminal on Mac OSX 10.8), It converts the video correctly :

    ffmpeg -i /Users/charlieryan/Desktop/MOV01785.MPG websample.mov

    This correctly outputs the converted video file into my home directory.

    However if I run this in PHP as follows :

    exec('ffmpeg -i /Users/charlieryan/Desktop/MOV01785.MPG websample.mov');

    Absolutely nothing happens ... my stat monitor doesn’t register any change in processor use, and I can’t find the output file anywhere on my system.

    Since I’m a bit of a noob at this, I’m assuming I’m doing something wrong, but what is it ?

    Thanks,

    Charlie

  • How to make Enqueue callback run on seperate thread on OpenSL ES ?

    19 décembre 2020, par Michael

    I am a newbie start learning openSL ES.

    


    I understand I need to register a callback like :

    


    result = (*m_BufferQueue)->RegisterCallback(m_BufferQueue, AudioPlayerCallback, this);


    


    And inside my callback I simply need to call this :

    


    SLresult result = (*m_BufferQueue)->Enqueue(m_BufferQueue, audioFrame->data, (SLuint32) audioFrame->dataSize);


    


    Then, whenever the queue is empty, it will automatically call the callback function and consume stuff I feeding in the other data queue(stored decoded data).

    


    My question is, how to make this callback run on other thread ? So it won't block my main thread(I am decoding in main thread and feeding PCM data in a self defined queue).

    


  • avcodec/libvorbisenc : Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder.

    18 novembre 2014, par Peter Hall
    avcodec/libvorbisenc : Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder.
    

    The libvorbis encoder already supports a small last frame, but the layer
    above doesn’t know that because we didn’t register the small last frame
    capability.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libvorbisenc.c