Recherche avancée

Médias (91)

Autres articles (59)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (4515)

  • how to make a queue in php with mysql

    22 novembre 2012, par robert

    hy,

    in my script i run a exec() function to make a movie file with ffmpeg.

    the problem is ffmpeg can run only 1 time on the server,

    if 2 people are online on server and first one already run ffmpeg i want the second to wait until the first end the process

    how to code this ?

    thank you

  • How to implement ffmpeg filter_complex in c++ code ?

    6 octobre 2020, par Fluffy

    I am trying to implement C++ code which uses an FFmpeg filter to merge 2 mono audio streams from input video into 1 stereo stream. The filter itself can be found easily enough in several sources :

    


    FFmpeg : How to merge all audio streams into stereo

    


    http://underpop.online.fr/f/ffmpeg/help/amerge.htm.gz

    


    My question relates to how I can implement this in code. I am using the exact same code found in the FFmpeg examples here :
https://ffmpeg.org/doxygen/trunk/filtering_audio_8c-example.html

    


    I just change the filter_descr variable to :

    


    static const char *filter_descr = "[0:1][0:2] amerge=inputs=2";


    


    When I use this I get the following exception :
Output pad "default" with type audio of the filter instance "in" of a buffer not connected to any destination
I get an Invalid Argument -22 exception when I'm configuring the filter graph

    


    if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)


    


  • FFmpeg command profiles for all devices

    5 juillet 2014, par N41TKD

    I want to build online Audio/Video Converter with PHP.

    I want to allow users to convert videos automatically without extra configuration like (Bit rate, codec, etc...) by just selecting device name [Ex : Samsung Galaxy S5].

    So, I want pre configured file. That contains video configurations of all devices...

    Please help me ? About this. Open source project.