Recherche avancée

Médias (91)

Autres articles (77)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (4299)

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