Recherche avancée

Médias (91)

Autres articles (35)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6145)

  • C++ FFmpeg pick codec from system

    4 novembre 2015, par David Norgren

    I’m currently setting up my output context for creating .avi like this :

    avformat_alloc_output_context2(&outContext, NULL, NULL, "out.avi");
    if (!outContext)
       die("Could not allocate output context");

    However, the resulting video quality is very unpleasant. As such, I’d like to be able to fetch the installed codecs on the system and use one of them in avformat_alloc_output_context2. Similar to below :

    Video codec picker

    So I guess my two questions are :

    1. How do I create a list (array) containing the installed codecs (as above) ?
    2. How do I use one of them in the output container ?

    If possible, I’d also like to be able to modify output quality (0%-100%) and open the codec configuration window.

  • ffserver : warn if config uses a system port

    18 août 2014, par Reynaldo H. Verdejo Pinochet
    ffserver : warn if config uses a system port
    

    Should be harmless as far as users know what they are doing
    but an informative warning wont hurt. For details, refer to
    http://tools.ietf.org/html/rfc6335

    Signed-off-by : Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>

    • [DH] ffserver.c
  • Node Video Transcoder - File System [closed]

    12 avril 2021, par mike varela

    I'm building a node video transcode system using fluent-ffmpeg and express. I'm investigating RabbitMQ as well but in the meantime I'm trying to find out if I'm able to transcode on the LAN without having to upload a file. Basically, this express server will sit internally in our company. Users will hit this via internal IP and a browser. Ideally they could click a button to select a video and then open a path browser to choose the location of the processed file and hit go. In this scenario, they wouldn't need to upload the video to the server for processing and then download the processed version.

    &#xA;

    I'm wondering if this is possible ?

    &#xA;