Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8089)

  • Uploading the live video using NodeJS with watermark [closed]

    6 octobre 2020, par Rohit Agarwal

    I am looking to upload the live video using NodeJS with watermark. Its an online assessment application where more than 200 candidate will appear for exam at a time. Can anyone help me out for the best possible architecture or procedure to do this ?

    


    Thanks in advance.

    


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

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